Skip to content

Commit

Permalink
Update colors in browser
Browse files Browse the repository at this point in the history
  • Loading branch information
ales-tsurko committed Dec 8, 2019
1 parent f43dc6c commit 3417961
Show file tree
Hide file tree
Showing 16 changed files with 43 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CD

env:
CELLS_VERSION: 1.0.0-beta3
CELLS_VERSION: 1.0.0-beta4
CELLS_REVISION_NUMBER: 1

on:
Expand Down
2 changes: 1 addition & 1 deletion cells/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
class ApplicationInfo:
name = "Cells"
author = "Ales Tsurko"
version = "1.0.0-beta3"
version = "1.0.0-beta4"


class Settings(Observation, dict):
Expand Down
18 changes: 12 additions & 6 deletions cells/view/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ def __init__(self):
self.style = """
QListView {
show-decoration-selected: 1;
background: #19181B;
background: #322F35;
}
QListView::item:selected {
border: none;
background: #D9EBF5;
background: #19181B;
}
QListView::item {
Expand All @@ -130,18 +130,18 @@ def __init__(self):
self.headerFont.setPixelSize(13)
self.headerFont.setWeight(QFont.DemiBold)
self.headerStyle = "margin-left: 18px; margin-right: 9px; color: #DAD6DE;"
self.headerStyleSelected = "margin-left: 18px; margin-right: 9px; color: #322F35;"
self.headerStyleSelected = "margin-left: 18px; margin-right: 9px; color: #30EDD5;"

self.commandFont = QFont("Fira Code", 11)
self.commandFont.setPixelSize(11)
self.commandFont.setWeight(QFont.Light)
self.commandStyle = "margin-left: 18px; margin-right: 9px; color: #DAD6DE;"
self.commandStyleSelected = "margin-left: 18px; margin-right: 9px; color: #322F35;"
self.commandStyleSelected = "margin-left: 18px; margin-right: 9px; color: #30EDD5;"

self.descriptionFont = QFont("Open Sans", 12)
self.descriptionFont.setPixelSize(12)
self.descriptionStyle = "margin-left: 9px; margin-right: 9px; color: #DAD6DE;"
self.descriptionStyleSelected = "margin-left: 9px; margin-right: 9px; color: #322F35;"
self.descriptionStyle = "margin-left: 9px; margin-right: 9px; color: rgba(218, 214, 222, 0.4);"
self.descriptionStyleSelected = "margin-left: 9px; margin-right: 9px; color: rgba(48, 237, 213, 0.4);"


class TemplateInfo:
Expand Down Expand Up @@ -247,6 +247,7 @@ def __init__(self):
selection-background-color: #5B00C3; \
padding: 0 18px 0 18px; \
margin: 0;"

self.nameFont = QFont("Open Sans", 12)
self.nameFont.setPixelSize(12)
self.nameHeight = 18
Expand All @@ -256,11 +257,13 @@ def __init__(self):
border: none; \
line-height: 14px; \
color: #E1F0F9;"

self.previewStyleSelected = "padding: 5px 9px 9px 9px; \
margin: 0; \
border: none; \
line-height: 14px; \
color: #343136;"

self.previewFont = QFont("Fira Code", 11)
self.previewFont.setWeight(QFont.Light)
self.previewFont.setPixelSize(11)
Expand All @@ -279,6 +282,7 @@ def __init__(self):
}
"""


class TemplateEditor:
def __init__(self):
self.style = """
Expand All @@ -296,6 +300,7 @@ def __init__(self):
border: none; \
color: #DAD6DE; \
selection-background-color: #5B00C3;"

self.inputHeight = 18
self.inputCodeFont = QFont("Fira Code", 11)
self.inputCodeFont.setPixelSize(11)
Expand All @@ -307,6 +312,7 @@ def __init__(self):
border: none; \
color: #DAD6DE; \
selection-background-color: #5B00C3;"

self.descriptionFont = QFont("Open Sans", 12)
self.descriptionFont.setPixelSize(12)

Expand Down
34 changes: 17 additions & 17 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion track_templates/resources/clojure_icon_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3417961

Please sign in to comment.