-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #228 from tkashkin/next
- Loading branch information
Showing
95 changed files
with
8,649 additions
and
7,884 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
config_USER.json | ||
.idea/ | ||
.fleet/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,89 @@ | ||
/** | ||
* Default color variables. | ||
* | ||
* libadwaita reference: | ||
* - https://gitlab.gnome.org/GNOME/libadwaita/-/blob/main/src/stylesheet/_defaults.scss | ||
* - https://gitlab.gnome.org/GNOME/libadwaita/-/blob/main/src/stylesheet/_colors.scss | ||
*/ | ||
|
||
:root { | ||
--bg: #242424FF; | ||
--fg: #FFFFFFFF; | ||
--border: #FFFFFF26; | ||
--window_bg: #242424FF; | ||
--window_bg_transparent: #24242400; | ||
--window_fg: #FFFFFFFF; | ||
--headerbar_backdrop: #242424FF; | ||
--headerbar_bg: #303030FF; | ||
--headerbar_fg: #FFFFFFFF; | ||
--headerbar_shade: #00000061; | ||
--popover_bg: #383838FF; | ||
--popover_fg: #FFFFFFFF; | ||
--toast_bg: #000000B3; | ||
--toast_fg: #FFFFFFFF; | ||
--view_bg: #1E1E1EFF; | ||
--view_fg: #FFFFFFFF; | ||
--accent: #78AEEDFF; | ||
--accent_bg: #3584E4FF; | ||
--accent_fg: #FFFFFFFF; | ||
--accent_disabled: #78AEED80; | ||
--accent_hover_bg: #78AEED12; | ||
--accent_active_bg: #78AEED29; | ||
--destructive: #FF7B63FF; | ||
--destructive_bg: #C01C28FF; | ||
--destructive_fg: #FFFFFFFF; | ||
--destructive_disabled: #FF7B6380; | ||
--destructive_hover_bg: #FF7B6312; | ||
--destructive_active_bg: #FF7B6329; | ||
--error: #FF7B63FF; | ||
--error_bg: #C01C28FF; | ||
--error_fg: #FFFFFFFF; | ||
--success: #8FF0A4FF; | ||
--success_bg: #26A269FF; | ||
--success_fg: #FFFFFFFF; | ||
--warning: #F8E45CFF; | ||
--warning_bg: #CD9309FF; | ||
--warning_fg: #FFFFFFFF; | ||
--button_fg: #FFFFFFFF; | ||
--dim_label_fg: #FFFFFF8C; | ||
--card_solid_bg: #3A3A3AFF; | ||
--focusring: #78AEED80; | ||
--scrollbar: #FFFFFF33; | ||
--scrollbar_hover: #FFFFFF66; | ||
--scrollbar_active: #FFFFFF99; | ||
} | ||
/* The main accent color and the matching text value */ | ||
--adw-accent-bg-rgb: 53, 132, 228; | ||
--adw-accent-fg-rgb: 255, 255, 255; | ||
--adw-accent-rgb: 120, 174, 237; | ||
|
||
/* destructive-action buttons */ | ||
--adw-destructive-bg-rgb: 192, 28, 40; | ||
--adw-destructive-fg-rgb: 255, 255, 255; | ||
--adw-destructive-rgb: 255, 123, 99; | ||
|
||
/* Levelbars, entries, labels and infobars. These don't need text colors */ | ||
--adw-success-bg-rgb: 38, 162, 105; | ||
--adw-success-fg-rgb: 255, 255, 255; | ||
--adw-success-rgb: 143, 240, 164; | ||
|
||
--adw-warning-bg-rgb: 205, 147, 9; | ||
--adw-warning-fg-rgb: 0, 0, 0; | ||
--adw-warning-fg-a: 0.8; | ||
--adw-warning-rgb: 248, 228, 92; | ||
|
||
--adw-error-bg-rgb: 192, 28, 40; | ||
--adw-error-fg-rgb: 255, 255, 255; | ||
--adw-error-rgb: 255, 123, 99; | ||
|
||
/* Window */ | ||
--adw-window-bg-rgb: 36, 36, 36; | ||
--adw-window-fg-rgb: 255, 255, 255; | ||
|
||
/* Views - e.g. text view or tree view */ | ||
--adw-view-bg-rgb: 30, 30, 30; | ||
--adw-view-fg-rgb: 255, 255, 255; | ||
|
||
/* Header bar, search bar, tab bar */ | ||
--adw-headerbar-bg-rgb: 48, 48, 48; | ||
--adw-headerbar-fg-rgb: 255, 255, 255; | ||
--adw-headerbar-border-rgb: 255, 255, 255; | ||
--adw-headerbar-backdrop-rgb: var(--adw-window-bg-rgb); | ||
--adw-headerbar-shade-rgb: 0, 0, 0; | ||
--adw-headerbar-shade-a: 0.36; | ||
--adw-headerbar-darker-shade-rgb: 0, 0, 0; | ||
--adw-headerbar-darker-shade-a: 0.9; | ||
|
||
/* Split pane views */ | ||
--adw-sidebar-bg-rgb: 48, 48, 48; | ||
--adw-sidebar-fg-rgb: 255, 255, 255; | ||
--adw-sidebar-backdrop-rgb: 42, 42, 42; | ||
--adw-sidebar-shade-rgb: 0, 0, 0; | ||
--adw-sidebar-shade-a: 0.36; | ||
|
||
--adw-secondary-sidebar-bg-rgb: 42, 42, 42; | ||
--adw-secondary-sidebar-fg-rgb: 255, 255, 255; | ||
--adw-secondary-sidebar-backdrop-rgb: 39, 39, 39; | ||
--adw-secondary-sidebar-shade-rgb: 0, 0, 0; | ||
--adw-secondary-sidebar-shade-a: 0.36; | ||
|
||
/* Cards, boxed lists */ | ||
--adw-card-bg-rgb: 255, 255, 255; | ||
--adw-card-bg-a: 0.08; | ||
--adw-card-fg-rgb: 255, 255, 255; | ||
--adw-card-shade-rgb: 0, 0, 0; | ||
--adw-card-shade-a: 0.36; | ||
|
||
/* Dialogs */ | ||
--adw-dialog-bg-rgb: 56, 56, 56; | ||
--adw-dialog-fg-rgb: 255, 255, 255; | ||
|
||
/* Popovers */ | ||
--adw-popover-bg-rgb: 56, 56, 56; | ||
--adw-popover-fg-rgb: 255, 255, 255; | ||
--adw-popover-shade-rgb: 0, 0, 0; | ||
--adw-popover-shade-a: 0.36; | ||
|
||
/* Thumbnails */ | ||
--adw-thumbnail-bg-rgb: 56, 56, 56; | ||
--adw-thumbnail-fg-rgb: 255, 255, 255; | ||
|
||
/* Miscellaneous */ | ||
--adw-shade-rgb: 0, 0, 0; | ||
--adw-shade-a: 0.36; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,82 @@ | ||
:root { | ||
--bg: #2A2E32FF; | ||
--fg: #FCFCFCFF; | ||
--border: #FFFFFF26; | ||
--window_bg: #2A2E32FF; | ||
--window_fg: #FCFCFCFF; | ||
--headerbar_backdrop: #31363BFF; | ||
--headerbar_bg: #31363BFF; | ||
--headerbar_fg: #FCFCFCFF; | ||
--headerbar_shade: #00000061; | ||
--popover_bg: #383838FF; | ||
--popover_fg: #FCFCFCFF; | ||
--toast_bg: #000000B3; | ||
--toast_fg: #FCFCFCFF; | ||
--view_bg: #232629FF; | ||
--view_fg: #FCFCFCFF; | ||
--accent: #3DAEE9FF; | ||
--accent_bg: #3DAEE9FF; | ||
--accent_fg: #FCFCFCFF; | ||
--accent_disabled: #3DAEE980; | ||
--accent_hover_bg: #3DAEE912; | ||
--accent_active_bg: #3DAEE929; | ||
--destructive: #E48383FF; | ||
--destructive_bg: #E48383FF; | ||
--destructive_fg: #FCFCFCFF; | ||
--destructive_disabled: #E4838380; | ||
--destructive_hover_bg: #E4838312; | ||
--destructive_active_bg: #E4838329; | ||
--error: #E48383FF; | ||
--error_bg: #E48383FF; | ||
--error_fg: #FCFCFCFF; | ||
--success: #27AE60FF; | ||
--success_bg: #27AE60FF; | ||
--success_fg: #FCFCFCFF; | ||
--warning: #FDBC4BFF; | ||
--warning_bg: #FDBC4BFF; | ||
--warning_fg: #FCFCFCFF; | ||
--button_fg: #FCFCFCFF; | ||
--dim_label_fg: #FCFCFC8C; | ||
--card_solid_bg: #393C3FFF; | ||
--focusring: #3DAEE980; | ||
--scrollbar: #3DAEE933; | ||
--scrollbar_hover: #3DAEE966; | ||
--scrollbar_active: #3DAEE999; | ||
:root | ||
{ | ||
/* The main accent color and the matching text value */ | ||
--adw-accent-bg-rgb: 61, 174, 233; | ||
--adw-accent-fg-rgb: 252, 252, 252; | ||
--adw-accent-rgb: 61, 174, 233; | ||
|
||
/* destructive-action buttons */ | ||
--adw-destructive-bg-rgb: 228, 131, 131; | ||
--adw-destructive-fg-rgb: 252, 252, 252; | ||
--adw-destructive-rgb: 228, 131, 131; | ||
|
||
/* Levelbars, entries, labels and infobars. These don't need text colors */ | ||
--adw-success-bg-rgb: 39, 174, 96; | ||
--adw-success-fg-rgb: 252, 252, 252; | ||
--adw-success-rgb: 39, 174, 96; | ||
|
||
--adw-warning-bg-rgb: 253, 188, 75; | ||
--adw-warning-fg-rgb: 252, 252, 252; | ||
--adw-warning-fg-a: 0.8; | ||
--adw-warning-rgb: 253, 188, 75; | ||
|
||
--adw-error-bg-rgb: 228, 131, 131; | ||
--adw-error-fg-rgb: 252, 252, 252; | ||
--adw-error-rgb: 228, 131, 131; | ||
|
||
/* Window */ | ||
--adw-window-bg-rgb: 42, 46, 50; | ||
--adw-window-fg-rgb: 252, 252, 252; | ||
|
||
/* Views - e.g. text view or tree view */ | ||
--adw-view-bg-rgb: 35, 38, 41; | ||
--adw-view-fg-rgb: 252, 252, 252; | ||
|
||
/* Header bar, search bar, tab bar */ | ||
--adw-headerbar-bg-rgb: 49, 54, 59; | ||
--adw-headerbar-fg-rgb: 252, 252, 252; | ||
--adw-headerbar-border-rgb: 252, 252, 252; | ||
--adw-headerbar-backdrop-rgb: 49, 54, 59; | ||
--adw-headerbar-shade-rgb: 0, 0, 0; | ||
--adw-headerbar-shade-a: 0.38; | ||
--adw-headerbar-darker-shade-rgb: 0, 0, 0; | ||
--adw-headerbar-darker-shade-a: 0.9; | ||
|
||
/* Split pane views */ | ||
--adw-sidebar-bg-rgb: 49, 54, 59; | ||
--adw-sidebar-fg-rgb: 252, 252, 252; | ||
--adw-sidebar-backdrop-rgb: 49, 54, 59; | ||
--adw-sidebar-shade-rgb: 0, 0, 0; | ||
--adw-sidebar-shade-a: 0.38; | ||
|
||
--adw-secondary-sidebar-bg-rgb: 49, 54, 59; | ||
--adw-secondary-sidebar-fg-rgb: 252, 252, 252; | ||
--adw-secondary-sidebar-backdrop-rgb: 49, 54, 59; | ||
--adw-secondary-sidebar-shade-rgb: 0, 0, 0; | ||
--adw-secondary-sidebar-shade-a: 0.38; | ||
|
||
/* Cards, boxed lists */ | ||
--adw-card-bg-rgb: 255, 255, 255; | ||
--adw-card-bg-a: 0.08; | ||
--adw-card-fg-rgb: 252, 252, 252; | ||
--adw-card-shade-rgb: 0, 0, 0; | ||
--adw-card-shade-a: 0.38; | ||
|
||
/* Dialogs */ | ||
--adw-dialog-bg-rgb: 42, 46, 50; | ||
--adw-dialog-fg-rgb: 252, 252, 252; | ||
|
||
/* Popovers */ | ||
--adw-popover-bg-rgb: 56, 56, 56; | ||
--adw-popover-fg-rgb: 252, 252, 252; | ||
--adw-popover-shade-rgb: 0, 0, 0; | ||
--adw-popover-shade-a: 0.38; | ||
|
||
/* Thumbnails */ | ||
--adw-thumbnail-bg-rgb: 56, 56, 56; | ||
--adw-thumbnail-fg-rgb: 252, 252, 252; | ||
|
||
/* Miscellaneous */ | ||
--adw-shade-rgb: 0, 0, 0; | ||
--adw-shade-a: 0.38; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,82 @@ | ||
:root { | ||
--bg: #343938FF; | ||
--fg: #FFFFFFFF; | ||
--border: #FFFFFF26; | ||
--window_bg: #343938FF; | ||
--window_bg_transparent: #3c424100; | ||
--window_fg: #FFFFFFFF; | ||
--headerbar_backdrop: #3b4342FF; | ||
--headerbar_bg: #3b4342FF; | ||
--headerbar_fg: #FFFFFFFF; | ||
--headerbar_shade: #00000061; | ||
--popover_bg: #3f4544FF; | ||
--popover_fg: #FFFFFFFF; | ||
--toast_bg: #000000B3; | ||
--toast_fg: #FFFFFFFF; | ||
--view_bg: #3c4241FF; | ||
--view_fg: #FFFFFFFF; | ||
--accent: #78AEEDFF; | ||
--accent_bg: #00ce99FF; | ||
--accent_fg: #FFFFFFFF; | ||
--accent_disabled: #78AEED80; | ||
--accent_hover_bg: #78AEED12; | ||
--accent_active_bg: #78AEED29; | ||
--destructive: #FF7B63FF; | ||
--destructive_bg: #C01C28FF; | ||
--destructive_fg: #FFFFFFFF; | ||
--destructive_disabled: #FF7B6380; | ||
--destructive_hover_bg: #FF7B6312; | ||
--destructive_active_bg: #FF7B6329; | ||
--error: #FF7B63FF; | ||
--error_bg: #C01C28FF; | ||
--error_fg: #FFFFFFFF; | ||
--success: #8FF0A4FF; | ||
--success_bg: #26A269FF; | ||
--success_fg: #FFFFFFFF; | ||
--warning: #F8E45CFF; | ||
--warning_bg: #CD9309FF; | ||
--warning_fg: #FFFFFFFF; | ||
--button_fg: #FFFFFFFF; | ||
--dim_label_fg: #FFFFFF8C; | ||
--card_solid_bg: #3A3A3AFF; | ||
--focusring: #78AEED80; | ||
--scrollbar: #FFFFFF33; | ||
--scrollbar_hover: #FFFFFF66; | ||
--scrollbar_active: #FFFFFF99; | ||
} | ||
:root | ||
{ | ||
/* The main accent color and the matching text value */ | ||
--adw-accent-bg-rgb: 0, 206, 153; | ||
--adw-accent-fg-rgb: 255, 255, 255; | ||
--adw-accent-rgb: 120, 174, 237; | ||
|
||
/* destructive-action buttons */ | ||
--adw-destructive-bg-rgb: 192, 28, 40; | ||
--adw-destructive-fg-rgb: 255, 255, 255; | ||
--adw-destructive-rgb: 255, 123, 99; | ||
|
||
/* Levelbars, entries, labels and infobars. These don't need text colors */ | ||
--adw-success-bg-rgb: 38, 162, 105; | ||
--adw-success-fg-rgb: 255, 255, 255; | ||
--adw-success-rgb: 143, 240, 164; | ||
|
||
--adw-warning-bg-rgb: 205, 147, 9; | ||
--adw-warning-fg-rgb: 0, 0, 0; | ||
--adw-warning-fg-a: 0.8; | ||
--adw-warning-rgb: 248, 228, 92; | ||
|
||
--adw-error-bg-rgb: 192, 28, 40; | ||
--adw-error-fg-rgb: 255, 255, 255; | ||
--adw-error-rgb: 255, 123, 99; | ||
|
||
/* Window */ | ||
--adw-window-bg-rgb: 52, 57, 56; | ||
--adw-window-fg-rgb: 255, 255, 255; | ||
|
||
/* Views - e.g. text view or tree view */ | ||
--adw-view-bg-rgb: 60, 66, 65; | ||
--adw-view-fg-rgb: 255, 255, 255; | ||
|
||
/* Header bar, search bar, tab bar */ | ||
--adw-headerbar-bg-rgb: 59, 67, 66; | ||
--adw-headerbar-fg-rgb: 255, 255, 255; | ||
--adw-headerbar-border-rgb: 255, 255, 255; | ||
--adw-headerbar-backdrop-rgb: 59, 67, 66; | ||
--adw-headerbar-shade-rgb: 0, 0, 0; | ||
--adw-headerbar-shade-a: 0.36; | ||
--adw-headerbar-darker-shade-rgb: 0, 0, 0; | ||
--adw-headerbar-darker-shade-a: 0.9; | ||
|
||
/* Split pane views */ | ||
--adw-sidebar-bg-rgb: 59, 67, 66; | ||
--adw-sidebar-fg-rgb: 255, 255, 255; | ||
--adw-sidebar-backdrop-rgb: 59, 67, 66; | ||
--adw-sidebar-shade-rgb: 0, 0, 0; | ||
--adw-sidebar-shade-a: 0.36; | ||
|
||
--adw-secondary-sidebar-bg-rgb: 59, 67, 66; | ||
--adw-secondary-sidebar-fg-rgb: 255, 255, 255; | ||
--adw-secondary-sidebar-backdrop-rgb: 59, 67, 66; | ||
--adw-secondary-sidebar-shade-rgb: 0, 0, 0; | ||
--adw-secondary-sidebar-shade-a: 0.36; | ||
|
||
/* Cards, boxed lists */ | ||
--adw-card-bg-rgb: 255, 255, 255; | ||
--adw-card-bg-a: 0.08; | ||
--adw-card-fg-rgb: 255, 255, 255; | ||
--adw-card-shade-rgb: 0, 0, 0; | ||
--adw-card-shade-a: 0.36; | ||
|
||
/* Dialogs */ | ||
--adw-dialog-bg-rgb: 56, 56, 56; | ||
--adw-dialog-fg-rgb: 255, 255, 255; | ||
|
||
/* Popovers */ | ||
--adw-popover-bg-rgb: 63, 69, 68; | ||
--adw-popover-fg-rgb: 255, 255, 255; | ||
--adw-popover-shade-rgb: 0, 0, 0; | ||
--adw-popover-shade-a: 0.36; | ||
|
||
/* Thumbnails */ | ||
--adw-thumbnail-bg-rgb: 56, 56, 56; | ||
--adw-thumbnail-fg-rgb: 255, 255, 255; | ||
|
||
/* Miscellaneous */ | ||
--adw-shade-rgb: 0, 0, 0; | ||
--adw-shade-a: 0.36; | ||
} |
Oops, something went wrong.