Simplify theme palette tokens

This commit is contained in:
Ryan Hughes
2026-06-11 02:08:02 -04:00
parent 4b2a15b6ea
commit 221fb296fc
48 changed files with 1053 additions and 590 deletions
+10 -10
View File
@@ -1,26 +1,26 @@
[colors.primary]
background = "{{ background }}"
foreground = "{{ foreground }}"
background = "{{ bg }}"
foreground = "{{ fg }}"
[colors.cursor]
text = "{{ background }}"
cursor = "{{ cursor }}"
text = "{{ bg }}"
cursor = "{{ bright_fg }}"
[colors.vi_mode_cursor]
text = "{{ background }}"
cursor = "{{ cursor }}"
text = "{{ bg }}"
cursor = "{{ bright_fg }}"
[colors.search.matches]
foreground = "{{ background }}"
foreground = "{{ bg }}"
background = "{{ yellow }}"
[colors.search.focused_match]
foreground = "{{ background }}"
foreground = "{{ bg }}"
background = "{{ red }}"
[colors.footer_bar]
foreground = "{{ background }}"
background = "{{ foreground }}"
foreground = "{{ bg }}"
background = "{{ fg }}"
[colors.selection]
text = "{{ selection_foreground }}"
+3 -3
View File
@@ -1,11 +1,11 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="{{ background }}"
theme[main_bg]="{{ bg }}"
# Main text color
theme[main_fg]="{{ foreground }}"
theme[main_fg]="{{ fg }}"
# Title color for boxes
theme[title]="{{ foreground }}"
theme[title]="{{ fg }}"
# Highlight color for keyboard shortcuts
theme[hi_fg]="{{ accent }}"
+1 -1
View File
@@ -1 +1 @@
{{ background_rgb }}
{{ bg_rgb }}
+3 -3
View File
@@ -1,10 +1,10 @@
[colors-dark]
foreground={{ foreground_strip }}
background={{ background_strip }}
foreground={{ fg_strip }}
background={{ bg_strip }}
selection-foreground={{ selection_foreground_strip }}
selection-background={{ selection_background_strip }}
cursor={{ background_strip }} {{ cursor_strip }}
cursor={{ bg_strip }} {{ bright_fg_strip }}
regular0={{ bg_strip }}
regular1={{ red_strip }}
+3 -3
View File
@@ -1,6 +1,6 @@
background = {{ background }}
foreground = {{ foreground }}
cursor-color = {{ cursor }}
background = {{ bg }}
foreground = {{ fg }}
cursor-color = {{ bright_fg }}
selection-background = {{ selection_background }}
selection-foreground = {{ selection_foreground }}
+78 -78
View File
@@ -1,137 +1,137 @@
-- Gum Style (generic) Variables
hl.env("FOREGROUND", "{{ foreground }}")
hl.env("BACKGROUND", "{{ background }}")
hl.env("FOREGROUND", "{{ fg }}")
hl.env("BACKGROUND", "{{ bg }}")
hl.env("BORDER_FOREGROUND", "{{ accent }}")
hl.env("BORDER_BACKGROUND", "{{ background }}")
hl.env("BORDER_BACKGROUND", "{{ bg }}")
-- Gum Confirm Style Variables
hl.env("GUM_CONFIRM_PROMPT_FOREGROUND", "{{ accent }}")
hl.env("GUM_CONFIRM_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_CONFIRM_PROMPT_BACKGROUND", "{{ bg }}")
hl.env("GUM_CONFIRM_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_CONFIRM_SELECTED_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_CONFIRM_UNSELECTED_FOREGROUND", "{{ foreground }}")
hl.env("GUM_CONFIRM_UNSELECTED_BACKGROUND", "{{ background }}")
hl.env("GUM_CONFIRM_UNSELECTED_FOREGROUND", "{{ fg }}")
hl.env("GUM_CONFIRM_UNSELECTED_BACKGROUND", "{{ bg }}")
-- Gum Input Style Variables
hl.env("GUM_INPUT_PROMPT_FOREGROUND", "{{ accent }}")
hl.env("GUM_INPUT_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_PROMPT_BACKGROUND", "{{ bg }}")
hl.env("GUM_INPUT_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_INPUT_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_CURSOR_FOREGROUND", "{{ cursor }}")
hl.env("GUM_INPUT_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_INPUT_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_PLACEHOLDER_BACKGROUND", "{{ bg }}")
hl.env("GUM_INPUT_CURSOR_FOREGROUND", "{{ bright_fg }}")
hl.env("GUM_INPUT_CURSOR_BACKGROUND", "{{ bg }}")
hl.env("GUM_INPUT_HEADER_FOREGROUND", "{{ fg }}")
hl.env("GUM_INPUT_HEADER_BACKGROUND", "{{ bg }}")
-- Gum Choose Style Variables
hl.env("GUM_CHOOSE_CURSOR_FOREGROUND", "{{ accent }}")
hl.env("GUM_CHOOSE_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_CHOOSE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_CHOOSE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_CHOOSE_ITEM_FOREGROUND", "{{ foreground }}")
hl.env("GUM_CHOOSE_ITEM_BACKGROUND", "{{ background }}")
hl.env("GUM_CHOOSE_CURSOR_BACKGROUND", "{{ bg }}")
hl.env("GUM_CHOOSE_HEADER_FOREGROUND", "{{ fg }}")
hl.env("GUM_CHOOSE_HEADER_BACKGROUND", "{{ bg }}")
hl.env("GUM_CHOOSE_ITEM_FOREGROUND", "{{ fg }}")
hl.env("GUM_CHOOSE_ITEM_BACKGROUND", "{{ bg }}")
hl.env("GUM_CHOOSE_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_CHOOSE_SELECTED_BACKGROUND", "{{ selection_background }}")
-- Gum Filter Style Variables
hl.env("GUM_FILTER_PROMPT_FOREGROUND", "{{ accent }}")
hl.env("GUM_FILTER_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_TEXT_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILTER_TEXT_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_PROMPT_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILTER_TEXT_FOREGROUND", "{{ fg }}")
hl.env("GUM_FILTER_TEXT_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILTER_MATCH_FOREGROUND", "{{ accent }}")
hl.env("GUM_FILTER_CURSOR_TEXT_FOREGROUND", "{{ cursor }}")
hl.env("GUM_FILTER_CURSOR_TEXT_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_CURSOR_TEXT_FOREGROUND", "{{ bright_fg }}")
hl.env("GUM_FILTER_CURSOR_TEXT_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILTER_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_FILTER_SELECTED_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_FILTER_INDICATOR_FOREGROUND", "{{ accent }}")
hl.env("GUM_FILTER_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILTER_MATCH_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_HEADER_FOREGROUND", "{{ fg }}")
hl.env("GUM_FILTER_MATCH_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILTER_HEADER_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILTER_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILTER_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_INDICATOR_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_PLACEHOLDER_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILTER_INDICATOR_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILTER_SELECTED_PREFIX_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_FILTER_SELECTED_PREFIX_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_FILTER_UNSELECTED_PREFIX_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILTER_UNSELECTED_PREFIX_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_UNSELECTED_PREFIX_BACKGROUND", "{{ bg }}")
-- Gum Table Style Variables
hl.env("GUM_TABLE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_TABLE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_CELL_FOREGROUND", "{{ foreground }}")
hl.env("GUM_TABLE_CELL_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_HEADER_FOREGROUND", "{{ fg }}")
hl.env("GUM_TABLE_HEADER_BACKGROUND", "{{ bg }}")
hl.env("GUM_TABLE_CELL_FOREGROUND", "{{ fg }}")
hl.env("GUM_TABLE_CELL_BACKGROUND", "{{ bg }}")
hl.env("GUM_TABLE_BORDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_TABLE_BORDER_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_BORDER_BACKGROUND", "{{ bg }}")
hl.env("GUM_TABLE_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_TABLE_SELECTED_BACKGROUND", "{{ selection_background }}")
-- Gum Spin Style Variables
hl.env("GUM_SPIN_SPINNER_FOREGROUND", "{{ accent }}")
hl.env("GUM_SPIN_SPINNER_BACKGROUND", "{{ background }}")
hl.env("GUM_SPIN_TITLE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_SPIN_TITLE_BACKGROUND", "{{ background }}")
hl.env("GUM_SPIN_SPINNER_BACKGROUND", "{{ bg }}")
hl.env("GUM_SPIN_TITLE_FOREGROUND", "{{ fg }}")
hl.env("GUM_SPIN_TITLE_BACKGROUND", "{{ bg }}")
-- Gum File Style Variables
hl.env("GUM_FILE_CURSOR_FOREGROUND", "{{ cursor }}")
hl.env("GUM_FILE_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_SYMLINK_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_SYMLINK_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_DIRECTORY_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_DIRECTORY_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_FILE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_FILE_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_CURSOR_FOREGROUND", "{{ bright_fg }}")
hl.env("GUM_FILE_CURSOR_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILE_SYMLINK_FOREGROUND", "{{ fg }}")
hl.env("GUM_FILE_SYMLINK_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILE_DIRECTORY_FOREGROUND", "{{ fg }}")
hl.env("GUM_FILE_DIRECTORY_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILE_FILE_FOREGROUND", "{{ fg }}")
hl.env("GUM_FILE_FILE_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILE_PERMISSIONS_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILE_PERMISSIONS_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_PERMISSIONS_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILE_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_FILE_SELECTED_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_FILE_FILE_SIZE_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILE_FILE_SIZE_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_FILE_SIZE_BACKGROUND", "{{ bg }}")
hl.env("GUM_FILE_HEADER_FOREGROUND", "{{ fg }}")
hl.env("GUM_FILE_HEADER_BACKGROUND", "{{ bg }}")
-- Gum Pager Style Variables
hl.env("GUM_PAGER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_PAGER_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_FOREGROUND", "{{ fg }}")
hl.env("GUM_PAGER_BACKGROUND", "{{ bg }}")
hl.env("GUM_PAGER_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_PAGER_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_LINE_NUMBER_BACKGROUND", "{{ bg }}")
hl.env("GUM_PAGER_MATCH_FOREGROUND", "{{ accent }}")
hl.env("GUM_PAGER_MATCH_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_MATCH_BACKGROUND", "{{ bg }}")
hl.env("GUM_PAGER_MATCH_HIGH_FOREGROUND", "{{ accent }}")
hl.env("GUM_PAGER_MATCH_HIGH_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_MATCH_HIGH_BACKGROUND", "{{ bg }}")
hl.env("GUM_PAGER_HELP_FOREGROUND", "{{ muted }}")
hl.env("GUM_PAGER_HELP_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_HELP_BACKGROUND", "{{ bg }}")
-- Gum Write Style Variables
hl.env("GUM_WRITE_BASE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_BASE_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_BASE_FOREGROUND", "{{ fg }}")
hl.env("GUM_WRITE_BASE_BACKGROUND", "{{ bg }}")
hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_CURSOR_LINE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_BACKGROUND", "{{ bg }}")
hl.env("GUM_WRITE_CURSOR_LINE_FOREGROUND", "{{ fg }}")
hl.env("GUM_WRITE_CURSOR_LINE_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_WRITE_CURSOR_FOREGROUND", "{{ cursor }}")
hl.env("GUM_WRITE_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_CURSOR_FOREGROUND", "{{ bright_fg }}")
hl.env("GUM_WRITE_CURSOR_BACKGROUND", "{{ bg }}")
hl.env("GUM_WRITE_END_OF_BUFFER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_END_OF_BUFFER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_END_OF_BUFFER_BACKGROUND", "{{ bg }}")
hl.env("GUM_WRITE_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_LINE_NUMBER_BACKGROUND", "{{ bg }}")
hl.env("GUM_WRITE_HEADER_FOREGROUND", "{{ fg }}")
hl.env("GUM_WRITE_HEADER_BACKGROUND", "{{ bg }}")
hl.env("GUM_WRITE_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_PROMPT_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_PLACEHOLDER_BACKGROUND", "{{ bg }}")
hl.env("GUM_WRITE_PROMPT_FOREGROUND", "{{ fg }}")
hl.env("GUM_WRITE_PROMPT_BACKGROUND", "{{ bg }}")
-- Gum Log Style Variables
hl.env("GUM_LOG_LEVEL_FOREGROUND", "{{ accent }}")
hl.env("GUM_LOG_LEVEL_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_LEVEL_BACKGROUND", "{{ bg }}")
hl.env("GUM_LOG_TIME_FOREGROUND", "{{ muted }}")
hl.env("GUM_LOG_TIME_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_PREFIX_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_PREFIX_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_MESSAGE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_MESSAGE_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_KEY_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_KEY_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_VALUE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_VALUE_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_TIME_BACKGROUND", "{{ bg }}")
hl.env("GUM_LOG_PREFIX_FOREGROUND", "{{ fg }}")
hl.env("GUM_LOG_PREFIX_BACKGROUND", "{{ bg }}")
hl.env("GUM_LOG_MESSAGE_FOREGROUND", "{{ fg }}")
hl.env("GUM_LOG_MESSAGE_BACKGROUND", "{{ bg }}")
hl.env("GUM_LOG_KEY_FOREGROUND", "{{ fg }}")
hl.env("GUM_LOG_KEY_BACKGROUND", "{{ bg }}")
hl.env("GUM_LOG_VALUE_FOREGROUND", "{{ fg }}")
hl.env("GUM_LOG_VALUE_BACKGROUND", "{{ bg }}")
hl.env("GUM_LOG_SEPARATOR_FOREGROUND", "{{ muted }}")
hl.env("GUM_LOG_SEPARATOR_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_SEPARATOR_BACKGROUND", "{{ bg }}")
+5 -5
View File
@@ -116,17 +116,17 @@ info = "color4"
hint = "color6"
[palette]
background = "{{ background }}"
foreground = "{{ foreground }}"
cursor = "{{ cursor }}"
background = "{{ bg }}"
foreground = "{{ fg }}"
cursor = "{{ bright_fg }}"
selection_background = "{{ selection_background }}"
selection_foreground = "{{ selection_foreground }}"
color0 = "{{ background }}"
color0 = "{{ bg }}"
color1 = "{{ red }}"
color2 = "{{ green }}"
color3 = "{{ yellow }}"
color4 = "{{ blue }}"
color5 = "{{ magenta }}"
color6 = "{{ cyan }}"
color7 = "{{ foreground }}"
color7 = "{{ fg }}"
color8 = "{{ muted }}"
@@ -1,12 +1,12 @@
@define-color foreground {{ foreground }};
@define-color background {{ background }};
@define-color foreground {{ fg }};
@define-color background {{ bg }};
@define-color accent {{ accent }};
@define-color muted {{ muted }};
@define-color card_bg {{ lighter_bg }};
@define-color text_dark {{ background }};
@define-color text_dark {{ bg }};
@define-color accent_hover {{ bright_blue }};
@define-color selected_tab {{ accent }};
@define-color text {{ foreground }};
@define-color text {{ fg }};
* {
all: unset;
+4 -4
View File
@@ -1,10 +1,10 @@
foreground {{ foreground }}
background {{ background }}
foreground {{ fg }}
background {{ bg }}
selection_foreground {{ selection_foreground }}
selection_background {{ selection_background }}
cursor {{ cursor }}
cursor_text_color {{ background }}
cursor {{ bright_fg }}
cursor_text_color {{ bg }}
active_border_color {{ accent }}
active_tab_background {{ accent }}
+3 -3
View File
@@ -34,9 +34,9 @@ return {
bright_magenta = "{{ bright_magenta }}",
accent = "{{ accent }}",
cursor = "{{ cursor }}",
foreground = "{{ foreground }}",
background = "{{ background }}",
cursor = "{{ bright_fg }}",
foreground = "{{ fg }}",
background = "{{ bg }}",
selection = "{{ selection }}",
selection_foreground = "{{ selection_foreground }}",
selection_background = "{{ selection_background }}",
+7 -7
View File
@@ -2,11 +2,11 @@
.theme-dark, .theme-light {
/* Core colors */
--background-primary: {{ background }};
--background-primary-alt: {{ background }};
--background-secondary: {{ background }};
--background-secondary-alt: {{ background }};
--text-normal: {{ foreground }};
--background-primary: {{ bg }};
--background-primary-alt: {{ bg }};
--background-secondary: {{ bg }};
--background-secondary-alt: {{ bg }};
--text-normal: {{ fg }};
/* Selection colors */
--text-selection: {{ selection_background }};
@@ -30,8 +30,8 @@
--interactive-accent-hover: {{ accent }};
/* Muted text */
--text-muted: color-mix(in srgb, {{ foreground }} 70%, transparent);
--text-faint: color-mix(in srgb, {{ foreground }} 55%, transparent);
--text-muted: color-mix(in srgb, {{ fg }} 70%, transparent);
--text-faint: color-mix(in srgb, {{ fg }} 55%, transparent);
/* Code */
--code-normal: {{ cyan }};
+17 -17
View File
@@ -2,20 +2,20 @@
"$schema": "https://raw.githubusercontent.com/earendil-works/pi/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
"name": "omarchy-system",
"vars": {
"background": "{{ background }}",
"foreground": "{{ foreground }}",
"background": "{{ bg }}",
"foreground": "{{ fg }}",
"accent": "{{ accent }}",
"selectionBackground": "{{ selection_background }}",
"selectionForeground": "{{ selection_foreground }}",
"selectedBackground": "{{ mix background accent 22% }}",
"color0": "{{ background }}",
"selectedBackground": "{{ mix bg accent 22% }}",
"color0": "{{ bg }}",
"color1": "{{ red }}",
"color2": "{{ green }}",
"color3": "{{ yellow }}",
"color4": "{{ blue }}",
"color5": "{{ magenta }}",
"color6": "{{ cyan }}",
"color7": "{{ foreground }}",
"color7": "{{ fg }}",
"color8": "{{ muted }}",
"color9": "{{ bright_red }}",
"color10": "{{ bright_green }}",
@@ -24,15 +24,15 @@
"color13": "{{ bright_magenta }}",
"color14": "{{ bright_cyan }}",
"color15": "{{ bright_fg }}",
"panel": "{{ mix background foreground 6% }}",
"panelAlt": "{{ mix background foreground 10% }}",
"panelPending": "{{ mix background accent 12% }}",
"panelSuccess": "{{ mix background green 12% }}",
"panelError": "{{ mix background red 12% }}",
"border": "{{ mix background foreground 30% }}",
"borderMuted": "{{ mix background foreground 20% }}",
"mutedText": "{{ mix foreground background 34% }}",
"dimText": "{{ mix foreground background 52% }}"
"panel": "{{ mix bg fg 6% }}",
"panelAlt": "{{ mix bg fg 10% }}",
"panelPending": "{{ mix bg accent 12% }}",
"panelSuccess": "{{ mix bg green 12% }}",
"panelError": "{{ mix bg red 12% }}",
"border": "{{ mix bg fg 30% }}",
"borderMuted": "{{ mix bg fg 20% }}",
"mutedText": "{{ mix fg bg 34% }}",
"dimText": "{{ mix fg bg 52% }}"
},
"colors": {
"accent": "accent",
@@ -88,8 +88,8 @@
"bashMode": "color3"
},
"export": {
"pageBg": "{{ background }}",
"cardBg": "{{ mix background foreground 6% }}",
"infoBg": "{{ mix background foreground 10% }}"
"pageBg": "{{ bg }}",
"cardBg": "{{ mix bg fg 6% }}",
"infoBg": "{{ mix bg fg 10% }}"
}
}
+34 -34
View File
@@ -4,9 +4,9 @@
[bar]
# Alpha companions (where present) range from 0 (invisible) to 1 (opaque).
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 1.0
text = "{{ foreground }}"
text = "{{ fg }}"
# Modules calling attention to themselves (recording, voxtype, alerts, updates)
active = "{{ red }}"
# Cross-axis size at font base-size 12. size-horizontal is the height of
@@ -21,7 +21,7 @@ size-vertical = 28
# lock, notifications, popups, and menu-style cards stay aligned with the
# current Hyprland active-border gradient.
active-border = "{{ shell_gradient hyprland_active_border accent }}"
active-border-foreground = "{{ shell_gradient hyprland_active_border foreground }}"
active-border-foreground = "{{ shell_gradient hyprland_active_border fg }}"
[controls]
# Shared state tokens for interactive control chrome (buttons, dropdowns,
@@ -31,32 +31,32 @@ active-border-foreground = "{{ shell_gradient hyprland_active_border foreground
# N, "Y X", "T X B", or "T R B L". Per-side keys like
# normal-border-width-left override the list. Each *-border accepts either a
# solid color or a Hyprland-style gradient, e.g. "rgba(...) rgba(...) 45deg".
normal-color = "{{ foreground }}"
normal-color = "{{ fg }}"
normal-fill-alpha = 0.04
normal-border = "{{ foreground }}"
normal-border = "{{ fg }}"
normal-border-width = 1
normal-border-alpha = 0.4
# Hover-cursor: mouse hover and the panel keyboard cursor.
hover-cursor-color = "{{ foreground }}"
hover-cursor-color = "{{ fg }}"
hover-cursor-fill-alpha = 0.08
hover-cursor-border = "{{ foreground }}"
hover-cursor-border = "{{ fg }}"
hover-cursor-border-width = 1
hover-cursor-border-alpha = 0.25
# Focus: Qt activeFocus. Mirror the hover-cursor values by default so
# mouse hover, keyboard cursor, and tab focus all read as the same state
# — themes that want focus to stand out override these four lines.
focus-color = "{{ foreground }}"
focus-color = "{{ fg }}"
focus-fill-alpha = 0.08
focus-border = "{{ foreground }}"
focus-border = "{{ fg }}"
focus-border-width = 1
focus-border-alpha = 0.25
# Selected: persistent chosen/current state.
selected-color = "{{ foreground }}"
selected-color = "{{ fg }}"
selected-fill-alpha = 0.18
selected-border = "{{ foreground }}"
selected-border = "{{ fg }}"
selected-border-width = 0
selected-border-alpha = 1.0
@@ -124,9 +124,9 @@ base-size = 12
# Border accepts either a solid color or a Hyprland-style gradient. Border
# widths accept one CSS-style scalar/list: N, "Y X", "T X B", or "T R B L";
# individual border-width-top/right/bottom/left keys override the list.
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 1.0
text = "{{ foreground }}"
text = "{{ fg }}"
border = "hyprland.active-border"
border-alpha = 1.0
# border-width = 2
@@ -134,16 +134,16 @@ border-alpha = 1.0
[tooltip]
# Hover tooltips across the bar, panels, and buttons. background-alpha of
# 0.97 mirrors the legacy hard-coded tooltip opacity.
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 0.97
text = "{{ foreground }}"
text = "{{ fg }}"
border = "hyprland.active-border-foreground"
border-alpha = 1.0
[notifications]
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 1.0
text = "{{ foreground }}"
text = "{{ fg }}"
# Conventionally matches the Hyprland active-window border. Border accepts
# either a solid color or the full active-border gradient.
border = "hyprland.active-border"
@@ -156,14 +156,14 @@ countdown = "{{ accent }}"
# companions go from 0 (invisible) to 1 (opaque). scrim is the full-screen
# dim layer behind the card; background is the card itself. Defaults
# mirror [menu] with the card at 0.95 to preserve the legacy translucency.
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 0.95
text = "{{ foreground }}"
text = "{{ fg }}"
border = "hyprland.active-border-foreground"
border-alpha = 1.0
scrim = "{{ background }}"
scrim = "{{ bg }}"
scrim-alpha = 0.5
selected-background = "{{ foreground }}"
selected-background = "{{ fg }}"
selected-background-alpha = 0.08
selected-text = "{{ accent }}"
selected-border = "hyprland.active-border-foreground"
@@ -173,14 +173,14 @@ selected-border-alpha = 0.25
# Cards, rows, and selected-row treatment. Alpha companions (where present)
# go from 0 (invisible) to 1 (opaque). scrim is the full-screen dim layer
# behind the card. Clipboard and emojis inherit these tokens.
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 1.0
text = "{{ foreground }}"
text = "{{ fg }}"
border = "hyprland.active-border-foreground"
border-alpha = 1.0
scrim = "{{ background }}"
scrim = "{{ bg }}"
scrim-alpha = 0.5
selected-background = "{{ foreground }}"
selected-background = "{{ fg }}"
selected-background-alpha = 0.08
selected-text = "{{ accent }}"
selected-border = "hyprland.active-border-foreground"
@@ -192,14 +192,14 @@ selected-border-alpha = 0.25
# text-error tints the lock icon, password text, and placeholder when
# authentication fails. border-alpha applies to both border and
# border-error (the two states are mutually exclusive in time).
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 1.0
text = "{{ foreground }}"
text = "{{ fg }}"
text-error = "{{ red }}"
border = "hyprland.active-border"
border-error = "{{ red }}"
border-alpha = 1.0
scrim = "{{ background }}"
scrim = "{{ bg }}"
scrim-alpha = 0.5
# accent is the lock-icon glyph color + text-selection tint.
accent = "{{ accent }}"
@@ -210,10 +210,10 @@ accent = "{{ accent }}"
# through idle, typing/authenticating, and wrong-password states.
# border-alpha applies to all three border states (they are mutually
# exclusive in time).
background = "{{ background }}"
background = "{{ bg }}"
background-alpha = 0.8
text = "{{ foreground }}"
placeholder = "{{ mix foreground background 34% }}"
text = "{{ fg }}"
placeholder = "{{ mix fg bg 34% }}"
text-error = "{{ red }}"
border = "hyprland.active-border"
border-active = "hyprland.active-border"
@@ -228,10 +228,10 @@ selection-alpha = 0.45
# the full-screen wash. Per-slice dim overlays and text outlines on top
# of the scrim track the foundational background color directly.
# unselected-border-alpha softens carousel slices that aren't selected.
scrim = "{{ background }}"
scrim = "{{ bg }}"
scrim-alpha = 0.5
text = "{{ foreground }}"
text = "{{ fg }}"
selected-border = "{{ accent }}"
selected-border-alpha = 1.0
unselected-border = "{{ foreground }}"
unselected-border = "{{ fg }}"
unselected-border-alpha = 0.28
+119 -119
View File
@@ -6,10 +6,10 @@
"semanticTokenColors": {
"parameter": "{{ cyan }}",
"parameter.declaration": "{{ cyan }}",
"variable": "{{ foreground }}",
"variable.declaration": "{{ foreground }}",
"variable": "{{ fg }}",
"variable.declaration": "{{ fg }}",
"variable.readonly": "{{ bright_yellow }}",
"variable.defaultLibrary": "{{ foreground }}",
"variable.defaultLibrary": "{{ fg }}",
"property": "{{ cyan }}",
"property.declaration": "{{ cyan }}",
"property.readonly": "{{ cyan }}",
@@ -27,7 +27,7 @@
"enumMember": "{{ orange }}",
"type": "{{ yellow }}",
"type.declaration": "{{ yellow }}",
"type.defaultLibrary": "{{ foreground }}",
"type.defaultLibrary": "{{ fg }}",
"typeParameter": "{{ yellow }}",
"namespace": "{{ blue }}",
"macro": "{{ cyan }}",
@@ -42,14 +42,14 @@
"comment.documentation": {"foreground": "{{ muted }}", "fontStyle": "italic"}
},
"colors": {
"foreground": "{{ foreground }}",
"foreground": "{{ fg }}",
"disabledForeground": "{{ dark_fg }}",
"focusBorder": "{{ accent }}80",
"widget.shadow": "{{ bg }}80",
"selection.background": "{{ selection_background }}80",
"descriptionForeground": "{{ muted }}",
"errorForeground": "{{ red }}",
"icon.foreground": "{{ foreground }}",
"icon.foreground": "{{ fg }}",
"sash.hoverBorder": "{{ accent }}",
"textBlockQuote.background": "{{ bg }}",
@@ -65,14 +65,14 @@
"toolbar.activeBackground": "{{ muted }}",
"button.background": "{{ accent }}",
"button.foreground": "{{ background }}",
"button.foreground": "{{ bg }}",
"button.hoverBackground": "{{ blue }}",
"button.secondaryForeground": "{{ foreground }}",
"button.secondaryForeground": "{{ fg }}",
"button.secondaryBackground": "{{ muted }}",
"button.secondaryHoverBackground": "{{ bg }}",
"button.border": "{{ accent }}20",
"checkbox.background": "{{ bg }}",
"checkbox.foreground": "{{ foreground }}",
"checkbox.foreground": "{{ fg }}",
"checkbox.border": "{{ muted }}",
"checkbox.selectBackground": "{{ accent }}",
"checkbox.selectBorder": "{{ accent }}",
@@ -80,15 +80,15 @@
"dropdown.background": "{{ bg }}",
"dropdown.listBackground": "{{ bg }}",
"dropdown.border": "{{ muted }}",
"dropdown.foreground": "{{ foreground }}",
"dropdown.foreground": "{{ fg }}",
"input.background": "{{ bg }}",
"input.border": "{{ muted }}",
"input.foreground": "{{ foreground }}",
"input.foreground": "{{ fg }}",
"input.placeholderForeground": "{{ muted }}",
"inputOption.activeBackground": "{{ accent }}40",
"inputOption.activeBorder": "{{ accent }}",
"inputOption.activeForeground": "{{ foreground }}",
"inputOption.activeForeground": "{{ fg }}",
"inputOption.hoverBackground": "{{ muted }}",
"inputValidation.errorBackground": "{{ red }}20",
"inputValidation.errorForeground": "{{ red }}",
@@ -106,22 +106,22 @@
"scrollbarSlider.hoverBackground": "{{ muted }}80",
"badge.background": "{{ accent }}",
"badge.foreground": "{{ background }}",
"badge.foreground": "{{ bg }}",
"progressBar.background": "{{ accent }}",
"list.activeSelectionBackground": "{{ accent }}30",
"list.activeSelectionForeground": "{{ foreground }}",
"list.activeSelectionIconForeground": "{{ foreground }}",
"list.activeSelectionForeground": "{{ fg }}",
"list.activeSelectionIconForeground": "{{ fg }}",
"list.dropBackground": "{{ accent }}20",
"list.focusBackground": "{{ accent }}20",
"list.focusForeground": "{{ foreground }}",
"list.focusForeground": "{{ fg }}",
"list.focusOutline": "{{ accent }}60",
"list.highlightForeground": "{{ accent }}",
"list.hoverBackground": "{{ bg }}",
"list.hoverForeground": "{{ foreground }}",
"list.hoverForeground": "{{ fg }}",
"list.inactiveSelectionBackground": "{{ muted }}40",
"list.inactiveSelectionForeground": "{{ foreground }}",
"list.inactiveSelectionForeground": "{{ fg }}",
"list.inactiveFocusBackground": "{{ muted }}40",
"list.inactiveFocusOutline": "{{ muted }}",
"list.invalidItemForeground": "{{ red }}",
@@ -137,32 +137,32 @@
"tree.tableColumnsBorder": "{{ muted }}",
"tree.tableOddRowsBackground": "{{ bg }}40",
"activityBar.background": "{{ background }}",
"activityBar.background": "{{ bg }}",
"activityBar.dropBorder": "{{ accent }}",
"activityBar.foreground": "{{ foreground }}",
"activityBar.foreground": "{{ fg }}",
"activityBar.inactiveForeground": "{{ muted }}",
"activityBar.border": "{{ bg }}",
"activityBarBadge.background": "{{ accent }}",
"activityBarBadge.foreground": "{{ background }}",
"activityBarBadge.foreground": "{{ bg }}",
"activityBar.activeBorder": "{{ accent }}",
"activityBar.activeBackground": "{{ bg }}40",
"sideBar.background": "{{ bg }}",
"sideBar.foreground": "{{ foreground }}",
"sideBar.foreground": "{{ fg }}",
"sideBar.border": "{{ bg }}",
"sideBar.dropBackground": "{{ accent }}20",
"sideBarTitle.foreground": "{{ foreground }}",
"sideBarTitle.foreground": "{{ fg }}",
"sideBarSectionHeader.background": "{{ bg }}",
"sideBarSectionHeader.foreground": "{{ foreground }}",
"sideBarSectionHeader.foreground": "{{ fg }}",
"sideBarSectionHeader.border": "{{ muted }}40",
"minimap.findMatchHighlight": "{{ accent }}80",
"minimap.selectionHighlight": "{{ accent }}60",
"minimap.errorHighlight": "{{ red }}",
"minimap.warningHighlight": "{{ yellow }}",
"minimap.background": "{{ background }}",
"minimap.background": "{{ bg }}",
"minimap.selectionOccurrenceHighlight": "{{ accent }}40",
"minimap.foregroundOpacity": "{{ background }}c0",
"minimap.foregroundOpacity": "{{ bg }}c0",
"minimapSlider.background": "{{ muted }}20",
"minimapSlider.hoverBackground": "{{ muted }}40",
"minimapSlider.activeBackground": "{{ muted }}60",
@@ -172,17 +172,17 @@
"editorGroup.border": "{{ muted }}40",
"editorGroup.dropBackground": "{{ accent }}20",
"editorGroup.dropIntoPromptForeground": "{{ foreground }}",
"editorGroup.dropIntoPromptForeground": "{{ fg }}",
"editorGroup.dropIntoPromptBackground": "{{ bg }}",
"editorGroup.dropIntoPromptBorder": "{{ accent }}",
"editorGroupHeader.noTabsBackground": "{{ bg }}",
"editorGroupHeader.tabsBackground": "{{ bg }}",
"editorGroupHeader.tabsBorder": "{{ bg }}",
"editorGroupHeader.border": "{{ bg }}",
"editorGroup.emptyBackground": "{{ background }}",
"tab.activeBackground": "{{ background }}",
"tab.unfocusedActiveBackground": "{{ background }}",
"tab.activeForeground": "{{ foreground }}",
"editorGroup.emptyBackground": "{{ bg }}",
"tab.activeBackground": "{{ bg }}",
"tab.unfocusedActiveBackground": "{{ bg }}",
"tab.activeForeground": "{{ fg }}",
"tab.activeBorder": "{{ accent }}",
"tab.activeBorderTop": "{{ accent }}",
"tab.unfocusedActiveBorder": "{{ muted }}",
@@ -194,22 +194,22 @@
"tab.unfocusedInactiveForeground": "{{ muted }}",
"tab.hoverBackground": "{{ muted }}40",
"tab.unfocusedHoverBackground": "{{ muted }}40",
"tab.hoverForeground": "{{ foreground }}",
"tab.hoverForeground": "{{ fg }}",
"tab.hoverBorder": "{{ accent }}40",
"tab.activeModifiedBorder": "{{ yellow }}",
"tab.inactiveModifiedBorder": "{{ yellow }}80",
"tab.unfocusedActiveModifiedBorder": "{{ yellow }}80",
"tab.unfocusedInactiveModifiedBorder": "{{ yellow }}60",
"tab.lastPinnedBorder": "{{ muted }}",
"editorPane.background": "{{ background }}",
"editorPane.background": "{{ bg }}",
"editor.background": "{{ background }}",
"editor.foreground": "{{ foreground }}",
"editor.background": "{{ bg }}",
"editor.foreground": "{{ fg }}",
"editorLineNumber.foreground": "{{ muted }}",
"editorLineNumber.activeForeground": "{{ foreground }}",
"editorLineNumber.activeForeground": "{{ fg }}",
"editorLineNumber.dimmedForeground": "{{ muted }}80",
"editorCursor.background": "{{ background }}",
"editorCursor.foreground": "{{ cursor }}",
"editorCursor.background": "{{ bg }}",
"editorCursor.foreground": "{{ bright_fg }}",
"editor.selectionBackground": "{{ selection_background }}60",
"editor.selectionForeground": "{{ selection_foreground }}",
"editor.inactiveSelectionBackground": "{{ selection_background }}30",
@@ -282,7 +282,7 @@
"editorBracketPairGuide.background4": "{{ cyan }}30",
"editorBracketPairGuide.background5": "{{ magenta }}30",
"editorBracketPairGuide.background6": "{{ orange }}30",
"editorOverviewRuler.background": "{{ background }}",
"editorOverviewRuler.background": "{{ bg }}",
"editorOverviewRuler.border": "{{ muted }}20",
"editorOverviewRuler.findMatchForeground": "{{ yellow }}80",
"editorOverviewRuler.rangeHighlightForeground": "{{ accent }}60",
@@ -311,9 +311,9 @@
"problemsErrorIcon.foreground": "{{ red }}",
"problemsWarningIcon.foreground": "{{ yellow }}",
"problemsInfoIcon.foreground": "{{ blue }}",
"editorUnnecessaryCode.opacity": "{{ background }}80",
"editorUnnecessaryCode.opacity": "{{ bg }}80",
"editorUnnecessaryCode.border": "{{ muted }}",
"editorGutter.background": "{{ background }}",
"editorGutter.background": "{{ bg }}",
"editorGutter.modifiedBackground": "{{ orange }}",
"editorGutter.addedBackground": "{{ green }}",
"editorGutter.deletedBackground": "{{ red }}",
@@ -343,20 +343,20 @@
"diffEditor.move.border": "{{ cyan }}80",
"diffEditor.moveActive.border": "{{ cyan }}",
"editorWidget.foreground": "{{ foreground }}",
"editorWidget.foreground": "{{ fg }}",
"editorWidget.background": "{{ bg }}",
"editorWidget.border": "{{ muted }}",
"editorWidget.resizeBorder": "{{ accent }}",
"editorSuggestWidget.background": "{{ bg }}",
"editorSuggestWidget.border": "{{ muted }}",
"editorSuggestWidget.foreground": "{{ foreground }}",
"editorSuggestWidget.foreground": "{{ fg }}",
"editorSuggestWidget.focusHighlightForeground": "{{ accent }}",
"editorSuggestWidget.highlightForeground": "{{ accent }}",
"editorSuggestWidget.selectedBackground": "{{ accent }}30",
"editorSuggestWidget.selectedForeground": "{{ foreground }}",
"editorSuggestWidget.selectedIconForeground": "{{ foreground }}",
"editorSuggestWidget.selectedForeground": "{{ fg }}",
"editorSuggestWidget.selectedIconForeground": "{{ fg }}",
"editorSuggestWidgetStatus.foreground": "{{ muted }}",
"editorHoverWidget.foreground": "{{ foreground }}",
"editorHoverWidget.foreground": "{{ fg }}",
"editorHoverWidget.background": "{{ bg }}",
"editorHoverWidget.border": "{{ muted }}",
"editorHoverWidget.highlightForeground": "{{ accent }}",
@@ -381,15 +381,15 @@
"peekViewEditorGutter.background": "{{ bg }}",
"peekViewEditor.matchHighlightBackground": "{{ yellow }}30",
"peekViewEditor.matchHighlightBorder": "{{ yellow }}",
"peekViewResult.background": "{{ background }}",
"peekViewResult.fileForeground": "{{ foreground }}",
"peekViewResult.background": "{{ bg }}",
"peekViewResult.fileForeground": "{{ fg }}",
"peekViewResult.lineForeground": "{{ muted }}",
"peekViewResult.matchHighlightBackground": "{{ yellow }}30",
"peekViewResult.selectionBackground": "{{ accent }}30",
"peekViewResult.selectionForeground": "{{ foreground }}",
"peekViewResult.selectionForeground": "{{ fg }}",
"peekViewTitle.background": "{{ bg }}",
"peekViewTitleDescription.foreground": "{{ muted }}",
"peekViewTitleLabel.foreground": "{{ foreground }}",
"peekViewTitleLabel.foreground": "{{ fg }}",
"merge.currentContentBackground": "{{ cyan }}20",
"merge.currentHeaderBackground": "{{ cyan }}40",
@@ -411,69 +411,69 @@
"mergeEditor.changeBase.background": "{{ muted }}20",
"mergeEditor.changeBase.word.background": "{{ muted }}40",
"panel.background": "{{ background }}",
"panel.background": "{{ bg }}",
"panel.border": "{{ muted }}40",
"panel.dropBorder": "{{ accent }}",
"panelTitle.activeBorder": "{{ accent }}",
"panelTitle.activeForeground": "{{ foreground }}",
"panelTitle.activeForeground": "{{ fg }}",
"panelTitle.inactiveForeground": "{{ muted }}",
"panelInput.border": "{{ muted }}",
"panelSection.border": "{{ muted }}40",
"panelSection.dropBackground": "{{ accent }}20",
"panelSectionHeader.background": "{{ bg }}",
"panelSectionHeader.foreground": "{{ foreground }}",
"panelSectionHeader.foreground": "{{ fg }}",
"panelSectionHeader.border": "{{ muted }}40",
"outputView.background": "{{ background }}",
"outputView.background": "{{ bg }}",
"outputViewStickyScroll.background": "{{ bg }}",
"statusBar.background": "{{ bg }}",
"statusBar.foreground": "{{ foreground }}",
"statusBar.foreground": "{{ fg }}",
"statusBar.border": "{{ bg }}",
"statusBar.debuggingBackground": "{{ yellow }}",
"statusBar.debuggingForeground": "{{ background }}",
"statusBar.debuggingForeground": "{{ bg }}",
"statusBar.debuggingBorder": "{{ yellow }}",
"statusBar.noFolderBackground": "{{ bg }}",
"statusBar.noFolderForeground": "{{ foreground }}",
"statusBar.noFolderForeground": "{{ fg }}",
"statusBar.noFolderBorder": "{{ bg }}",
"statusBar.focusBorder": "{{ accent }}",
"statusBarItem.activeBackground": "{{ muted }}",
"statusBarItem.hoverBackground": "{{ muted }}60",
"statusBarItem.hoverForeground": "{{ foreground }}",
"statusBarItem.prominentForeground": "{{ foreground }}",
"statusBarItem.hoverForeground": "{{ fg }}",
"statusBarItem.prominentForeground": "{{ fg }}",
"statusBarItem.prominentBackground": "{{ accent }}",
"statusBarItem.prominentHoverBackground": "{{ accent }}80",
"statusBarItem.remoteBackground": "{{ accent }}",
"statusBarItem.remoteForeground": "{{ background }}",
"statusBarItem.remoteForeground": "{{ bg }}",
"statusBarItem.remoteHoverBackground": "{{ accent }}80",
"statusBarItem.errorBackground": "{{ red }}",
"statusBarItem.errorForeground": "{{ background }}",
"statusBarItem.errorForeground": "{{ bg }}",
"statusBarItem.errorHoverBackground": "{{ red }}80",
"statusBarItem.warningBackground": "{{ yellow }}",
"statusBarItem.warningForeground": "{{ background }}",
"statusBarItem.warningForeground": "{{ bg }}",
"statusBarItem.warningHoverBackground": "{{ yellow }}80",
"statusBarItem.compactHoverBackground": "{{ muted }}",
"statusBarItem.focusBorder": "{{ accent }}",
"titleBar.activeBackground": "{{ bg }}",
"titleBar.activeForeground": "{{ foreground }}",
"titleBar.activeForeground": "{{ fg }}",
"titleBar.inactiveBackground": "{{ bg }}",
"titleBar.inactiveForeground": "{{ muted }}",
"titleBar.border": "{{ bg }}",
"menubar.selectionForeground": "{{ foreground }}",
"menubar.selectionForeground": "{{ fg }}",
"menubar.selectionBackground": "{{ accent }}30",
"menubar.selectionBorder": "{{ accent }}00",
"menu.foreground": "{{ foreground }}",
"menu.foreground": "{{ fg }}",
"menu.background": "{{ bg }}",
"menu.selectionForeground": "{{ foreground }}",
"menu.selectionForeground": "{{ fg }}",
"menu.selectionBackground": "{{ accent }}30",
"menu.selectionBorder": "{{ accent }}00",
"menu.separatorBackground": "{{ muted }}",
"menu.border": "{{ muted }}",
"commandCenter.foreground": "{{ foreground }}",
"commandCenter.activeForeground": "{{ foreground }}",
"commandCenter.foreground": "{{ fg }}",
"commandCenter.activeForeground": "{{ fg }}",
"commandCenter.background": "{{ bg }}",
"commandCenter.activeBackground": "{{ muted }}",
"commandCenter.border": "{{ muted }}",
@@ -483,10 +483,10 @@
"commandCenter.debuggingBackground": "{{ yellow }}20",
"notificationCenter.border": "{{ muted }}",
"notificationCenterHeader.foreground": "{{ foreground }}",
"notificationCenterHeader.foreground": "{{ fg }}",
"notificationCenterHeader.background": "{{ bg }}",
"notificationToast.border": "{{ muted }}",
"notifications.foreground": "{{ foreground }}",
"notifications.foreground": "{{ fg }}",
"notifications.background": "{{ bg }}",
"notifications.border": "{{ muted }}",
"notificationLink.foreground": "{{ accent }}",
@@ -495,18 +495,18 @@
"notificationsInfoIcon.foreground": "{{ blue }}",
"banner.background": "{{ accent }}20",
"banner.foreground": "{{ foreground }}",
"banner.foreground": "{{ fg }}",
"banner.iconForeground": "{{ accent }}",
"extensionButton.prominentBackground": "{{ accent }}",
"extensionButton.prominentForeground": "{{ background }}",
"extensionButton.prominentForeground": "{{ bg }}",
"extensionButton.prominentHoverBackground": "{{ accent }}80",
"extensionButton.background": "{{ muted }}",
"extensionButton.foreground": "{{ foreground }}",
"extensionButton.foreground": "{{ fg }}",
"extensionButton.hoverBackground": "{{ muted }}80",
"extensionButton.separator": "{{ background }}",
"extensionButton.separator": "{{ bg }}",
"extensionBadge.remoteBackground": "{{ accent }}",
"extensionBadge.remoteForeground": "{{ background }}",
"extensionBadge.remoteForeground": "{{ bg }}",
"extensionIcon.starForeground": "{{ yellow }}",
"extensionIcon.verifiedForeground": "{{ cyan }}",
"extensionIcon.preReleaseForeground": "{{ yellow }}",
@@ -515,21 +515,21 @@
"pickerGroup.border": "{{ muted }}",
"pickerGroup.foreground": "{{ accent }}",
"quickInput.background": "{{ bg }}",
"quickInput.foreground": "{{ foreground }}",
"quickInput.foreground": "{{ fg }}",
"quickInputList.focusBackground": "{{ accent }}30",
"quickInputList.focusForeground": "{{ foreground }}",
"quickInputList.focusIconForeground": "{{ foreground }}",
"quickInputList.focusForeground": "{{ fg }}",
"quickInputList.focusIconForeground": "{{ fg }}",
"quickInputTitle.background": "{{ bg }}",
"keybindingLabel.background": "{{ muted }}40",
"keybindingLabel.foreground": "{{ foreground }}",
"keybindingLabel.foreground": "{{ fg }}",
"keybindingLabel.border": "{{ muted }}",
"keybindingLabel.bottomBorder": "{{ muted }}",
"keybindingTable.headerBackground": "{{ bg }}",
"keybindingTable.rowsBackground": "{{ bg }}40",
"terminal.background": "{{ background }}",
"terminal.foreground": "{{ foreground }}",
"terminal.background": "{{ bg }}",
"terminal.foreground": "{{ fg }}",
"terminal.border": "{{ muted }}40",
"terminal.selectionBackground": "{{ selection_background }}60",
"terminal.selectionForeground": "{{ selection_foreground }}",
@@ -539,8 +539,8 @@
"terminal.findMatchHighlightBackground": "{{ yellow }}25",
"terminal.findMatchHighlightBorder": "{{ yellow }}60",
"terminal.hoverHighlightBackground": "{{ accent }}20",
"terminalCursor.background": "{{ background }}",
"terminalCursor.foreground": "{{ cursor }}",
"terminalCursor.background": "{{ bg }}",
"terminalCursor.foreground": "{{ bright_fg }}",
"terminal.ansiBlack": "{{ bg }}",
"terminal.ansiRed": "{{ red }}",
"terminal.ansiGreen": "{{ green }}",
@@ -561,20 +561,20 @@
"terminalCommandDecoration.defaultBackground": "{{ muted }}",
"terminalCommandDecoration.successBackground": "{{ green }}",
"terminalCommandDecoration.errorBackground": "{{ red }}",
"terminalOverviewRuler.cursorForeground": "{{ cursor }}",
"terminalOverviewRuler.cursorForeground": "{{ bright_fg }}",
"terminalOverviewRuler.findMatchForeground": "{{ yellow }}",
"terminalStickyScroll.background": "{{ bg }}",
"terminalStickyScrollHover.background": "{{ muted }}40",
"debugToolBar.background": "{{ bg }}",
"debugToolBar.border": "{{ muted }}",
"debugView.stateLabelForeground": "{{ foreground }}",
"debugView.stateLabelForeground": "{{ fg }}",
"debugView.stateLabelBackground": "{{ accent }}30",
"debugView.valueChangedHighlight": "{{ cyan }}40",
"debugView.exceptionLabelForeground": "{{ background }}",
"debugView.exceptionLabelForeground": "{{ bg }}",
"debugView.exceptionLabelBackground": "{{ red }}",
"debugTokenExpression.name": "{{ magenta }}",
"debugTokenExpression.value": "{{ foreground }}",
"debugTokenExpression.value": "{{ fg }}",
"debugTokenExpression.string": "{{ green }}",
"debugTokenExpression.boolean": "{{ orange }}",
"debugTokenExpression.number": "{{ orange }}",
@@ -594,14 +594,14 @@
"testing.message.info.decorationForeground": "{{ blue }}",
"testing.message.info.lineBackground": "{{ blue }}15",
"welcomePage.background": "{{ background }}",
"welcomePage.background": "{{ bg }}",
"welcomePage.tileBackground": "{{ bg }}",
"welcomePage.tileHoverBackground": "{{ muted }}40",
"welcomePage.tileBorder": "{{ muted }}",
"welcomePage.progress.background": "{{ muted }}",
"welcomePage.progress.foreground": "{{ accent }}",
"walkThrough.embeddedEditorBackground": "{{ bg }}",
"walkthrough.stepTitle.foreground": "{{ foreground }}",
"walkthrough.stepTitle.foreground": "{{ fg }}",
"gitDecoration.addedResourceForeground": "{{ green }}",
"gitDecoration.modifiedResourceForeground": "{{ orange }}",
@@ -614,21 +614,21 @@
"gitDecoration.conflictingResourceForeground": "{{ yellow }}",
"gitDecoration.submoduleResourceForeground": "{{ magenta }}",
"settings.headerForeground": "{{ foreground }}",
"settings.headerForeground": "{{ fg }}",
"settings.modifiedItemIndicator": "{{ accent }}",
"settings.dropdownBackground": "{{ bg }}",
"settings.dropdownForeground": "{{ foreground }}",
"settings.dropdownForeground": "{{ fg }}",
"settings.dropdownBorder": "{{ muted }}",
"settings.dropdownListBorder": "{{ muted }}",
"settings.checkboxBackground": "{{ bg }}",
"settings.checkboxForeground": "{{ foreground }}",
"settings.checkboxForeground": "{{ fg }}",
"settings.checkboxBorder": "{{ muted }}",
"settings.rowHoverBackground": "{{ bg }}",
"settings.textInputBackground": "{{ bg }}",
"settings.textInputForeground": "{{ foreground }}",
"settings.textInputForeground": "{{ fg }}",
"settings.textInputBorder": "{{ muted }}",
"settings.numberInputBackground": "{{ bg }}",
"settings.numberInputForeground": "{{ foreground }}",
"settings.numberInputForeground": "{{ fg }}",
"settings.numberInputBorder": "{{ muted }}",
"settings.focusedRowBackground": "{{ accent }}10",
"settings.focusedRowBorder": "{{ accent }}40",
@@ -637,9 +637,9 @@
"settings.settingsHeaderHoverForeground": "{{ accent }}",
"breadcrumb.foreground": "{{ muted }}",
"breadcrumb.background": "{{ background }}",
"breadcrumb.focusForeground": "{{ foreground }}",
"breadcrumb.activeSelectionForeground": "{{ foreground }}",
"breadcrumb.background": "{{ bg }}",
"breadcrumb.focusForeground": "{{ fg }}",
"breadcrumb.activeSelectionForeground": "{{ fg }}",
"breadcrumbPicker.background": "{{ bg }}",
"editor.snippetTabstopHighlightBackground": "{{ accent }}20",
@@ -656,9 +656,9 @@
"symbolIcon.enumeratorForeground": "{{ yellow }}",
"symbolIcon.enumeratorMemberForeground": "{{ orange }}",
"symbolIcon.eventForeground": "{{ yellow }}",
"symbolIcon.fieldForeground": "{{ foreground }}",
"symbolIcon.fileForeground": "{{ foreground }}",
"symbolIcon.folderForeground": "{{ foreground }}",
"symbolIcon.fieldForeground": "{{ fg }}",
"symbolIcon.fileForeground": "{{ fg }}",
"symbolIcon.folderForeground": "{{ fg }}",
"symbolIcon.functionForeground": "{{ blue }}",
"symbolIcon.interfaceForeground": "{{ yellow }}",
"symbolIcon.keyForeground": "{{ bright_magenta }}",
@@ -671,12 +671,12 @@
"symbolIcon.objectForeground": "{{ yellow }}",
"symbolIcon.operatorForeground": "{{ bright_blue }}",
"symbolIcon.packageForeground": "{{ yellow }}",
"symbolIcon.propertyForeground": "{{ foreground }}",
"symbolIcon.propertyForeground": "{{ fg }}",
"symbolIcon.referenceForeground": "{{ bright_magenta }}",
"symbolIcon.snippetForeground": "{{ green }}",
"symbolIcon.stringForeground": "{{ green }}",
"symbolIcon.structForeground": "{{ yellow }}",
"symbolIcon.textForeground": "{{ foreground }}",
"symbolIcon.textForeground": "{{ fg }}",
"symbolIcon.typeParameterForeground": "{{ yellow }}",
"symbolIcon.unitForeground": "{{ orange }}",
"symbolIcon.variableForeground": "{{ bright_magenta }}",
@@ -699,10 +699,10 @@
"debugConsole.infoForeground": "{{ blue }}",
"debugConsole.warningForeground": "{{ yellow }}",
"debugConsole.errorForeground": "{{ red }}",
"debugConsole.sourceForeground": "{{ foreground }}",
"debugConsole.sourceForeground": "{{ fg }}",
"debugConsoleInputIcon.foreground": "{{ accent }}",
"notebook.editorBackground": "{{ background }}",
"notebook.editorBackground": "{{ bg }}",
"notebook.cellBorderColor": "{{ muted }}40",
"notebook.cellHoverBackground": "{{ bg }}40",
"notebook.cellInsertionIndicator": "{{ accent }}",
@@ -724,7 +724,7 @@
"notebookStatusSuccessIcon.foreground": "{{ green }}",
"notebookEditorOverviewRuler.runningCellForeground": "{{ accent }}",
"charts.foreground": "{{ foreground }}",
"charts.foreground": "{{ fg }}",
"charts.lines": "{{ muted }}",
"charts.red": "{{ red }}",
"charts.blue": "{{ blue }}",
@@ -746,7 +746,7 @@
"inlineChatInput.border": "{{ muted }}",
"inlineChatInput.focusBorder": "{{ accent }}",
"inlineChatInput.placeholderForeground": "{{ muted }}",
"inlineChatInput.background": "{{ background }}",
"inlineChatInput.background": "{{ bg }}",
"inlineChatDiff.inserted": "{{ green }}20",
"inlineChatDiff.removed": "{{ red }}20",
@@ -766,7 +766,7 @@
"name": "Variable",
"scope": ["variable", "string constant.other.placeholder"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -867,7 +867,7 @@
"name": "Type Builtin",
"scope": ["storage.type.primitive", "support.type"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -1016,7 +1016,7 @@
"name": "Tag Attribute",
"scope": ["entity.other.attribute-name"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -1030,7 +1030,7 @@
"name": "CSS Value",
"scope": ["support.constant.property-value.css", "meta.property-value.css"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -1109,7 +1109,7 @@
"name": "Markdown Bold",
"scope": ["markup.bold", "punctuation.definition.bold.markdown"],
"settings": {
"foreground": "{{ foreground }}",
"foreground": "{{ fg }}",
"fontStyle": "bold"
}
},
@@ -1117,7 +1117,7 @@
"name": "Markdown Italic",
"scope": ["markup.italic", "punctuation.definition.italic.markdown"],
"settings": {
"foreground": "{{ foreground }}",
"foreground": "{{ fg }}",
"fontStyle": "italic"
}
},
@@ -1175,7 +1175,7 @@
"name": "This/Self",
"scope": ["variable.language.this", "variable.language.self", "variable.language.special.self"],
"settings": {
"foreground": "{{ foreground }}",
"foreground": "{{ fg }}",
"fontStyle": "italic"
}
},
@@ -1183,7 +1183,7 @@
"name": "Object Keys",
"scope": ["meta.object-literal.key", "string.unquoted.label.js"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -1205,7 +1205,7 @@
"name": "Shell Variable",
"scope": ["variable.other.normal.shell", "variable.other.positional.shell", "variable.other.bracket.shell"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -1268,7 +1268,7 @@
"name": "Make Variable",
"scope": ["variable.other.makefile"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -1282,7 +1282,7 @@
"name": "Python Self",
"scope": ["variable.parameter.function.language.special.self.python"],
"settings": {
"foreground": "{{ foreground }}",
"foreground": "{{ fg }}",
"fontStyle": "italic"
}
},
@@ -1298,7 +1298,7 @@
"name": "PHP Variable",
"scope": ["variable.other.php", "punctuation.definition.variable.php"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
},
{
@@ -1333,7 +1333,7 @@
"name": "GraphQL Field",
"scope": ["variable.graphql", "variable.other.graphql"],
"settings": {
"foreground": "{{ foreground }}"
"foreground": "{{ fg }}"
}
}
]
+2 -2
View File
@@ -1,2 +1,2 @@
@define-color foreground {{ foreground }};
@define-color background {{ background }};
@define-color foreground {{ fg }};
@define-color background {{ bg }};