Rename bg/fg palette keys to background/foreground

The canonical colors.toml keys are now background/foreground, including
all permutations (dark_background, darker_background, lighter_background,
dark_foreground, light_foreground, bright_foreground). The old short
names are gone entirely, not kept as aliases; legacy alacritty-generated
themes still resolve through the ANSI color0/color7 fallback.

Theme files are also regrouped: accent/selection/muted first, then the
backgrounds, then the foregrounds, then the named colors.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
David Heinemeier Hansson
2026-07-18 16:24:51 -07:00
co-authored by Claude Fable 5
parent 72d7646c64
commit afa2839a5a
46 changed files with 747 additions and 718 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ Exceptions are allowed for migration and package-helper scripts where the helper
- `config/` - default configs copied to `~/.config/` - `config/` - default configs copied to `~/.config/`
- `default/themed/*.tpl` - templates with `{{ variable }}` placeholders for theme colors - `default/themed/*.tpl` - templates with `{{ variable }}` placeholders for theme colors
- `themes/*/colors.toml` - theme color definitions (accent, bg, fg, red/green/yellow/blue/magenta/cyan and bright_* variants) - `themes/*/colors.toml` - theme color definitions (accent, background, foreground, red/green/yellow/blue/magenta/cyan and bright_* variants)
# Tests # Tests
+17 -17
View File
@@ -111,7 +111,7 @@ load_colors() {
# Plus the core slots every theme resolves, so sparse and legacy themes # Plus the core slots every theme resolves, so sparse and legacy themes
# still render a complete preview. # still render a complete preview.
for key in mode bg fg light_fg bright_fg selection_background selection_foreground dark_bg darker_bg; do for key in mode background foreground light_foreground bright_foreground selection_background selection_foreground dark_background darker_background; do
[[ -n ${resolved[$key]:-} ]] && COLORS[$key]="${resolved[$key]}" [[ -n ${resolved[$key]:-} ]] && COLORS[$key]="${resolved[$key]}"
done done
@@ -220,7 +220,7 @@ print_color_row() {
paint_segment() { paint_segment() {
local text="$1" local text="$1"
local fg="$2" local fg="$2"
local bg="${3:-${COLORS[bg]}}" local bg="${3:-${COLORS[background]}}"
if (( COLOR_OUTPUT )) && hex_valid "$fg" && hex_valid "$bg"; then if (( COLOR_OUTPUT )) && hex_valid "$fg" && hex_valid "$bg"; then
ansi_bg "$bg" ansi_bg "$bg"
@@ -244,8 +244,8 @@ print_group() {
} }
print_selection_sample() { print_selection_sample() {
local bg="${COLORS[bg]}" local bg="${COLORS[background]}"
local fg="${COLORS[fg]}" local fg="${COLORS[foreground]}"
local selection_bg="${COLORS[selection_background]}" local selection_bg="${COLORS[selection_background]}"
local selection_fg="${COLORS[selection_foreground]}" local selection_fg="${COLORS[selection_foreground]}"
@@ -272,7 +272,7 @@ print_selection_sample() {
print_practical_samples() { print_practical_samples() {
printf '\nTerminal/UI samples\n' printf '\nTerminal/UI samples\n'
printf ' ' printf ' '
paint_segment ' normal text ' "${COLORS[fg]}" paint_segment ' normal text ' "${COLORS[foreground]}"
paint_segment ' muted/comment ' "${COLORS[muted]}" paint_segment ' muted/comment ' "${COLORS[muted]}"
paint_segment ' accent/link ' "${COLORS[accent]}" paint_segment ' accent/link ' "${COLORS[accent]}"
paint_segment ' error ' "${COLORS[red]}" paint_segment ' error ' "${COLORS[red]}"
@@ -285,13 +285,13 @@ print_practical_samples() {
paint_segment ' function() ' "${COLORS[blue]}" paint_segment ' function() ' "${COLORS[blue]}"
paint_segment ' --flag ' "${COLORS[magenta]}" paint_segment ' --flag ' "${COLORS[magenta]}"
printf '\n ' printf '\n '
paint_segment ' unselected menu row ' "${COLORS[fg]}" paint_segment ' unselected menu row ' "${COLORS[foreground]}"
printf '\n ' printf '\n '
paint_segment ' selected menu row ' "${COLORS[selection_foreground]}" "${COLORS[selection_background]}" paint_segment ' selected menu row ' "${COLORS[selection_foreground]}" "${COLORS[selection_background]}"
printf '\n ' printf '\n '
paint_segment ' status/inverse ' "${COLORS[bg]}" "${COLORS[fg]}" paint_segment ' status/inverse ' "${COLORS[background]}" "${COLORS[foreground]}"
paint_segment ' inactive surface ' "${COLORS[fg]}" "${COLORS[lighter_bg]}" paint_segment ' inactive surface ' "${COLORS[foreground]}" "${COLORS[lighter_background]}"
paint_segment ' urgent ' "${COLORS[bg]}" "${COLORS[red]}" paint_segment ' urgent ' "${COLORS[background]}" "${COLORS[red]}"
printf '\n' printf '\n'
} }
@@ -313,8 +313,8 @@ print_palette_strip() {
print_ansi_palette() { print_ansi_palette() {
printf '\nANSI palette strips\n' printf '\nANSI palette strips\n'
print_palette_strip normal bg red green yellow blue magenta cyan fg print_palette_strip normal background red green yellow blue magenta cyan foreground
print_palette_strip bright muted bright_red bright_green bright_yellow bright_blue bright_magenta bright_cyan bright_fg print_palette_strip bright muted bright_red bright_green bright_yellow bright_blue bright_magenta bright_cyan bright_foreground
} }
mix_hex() { mix_hex() {
@@ -369,7 +369,7 @@ print_neutral_ramp() {
local direction sort_flag key hex score entry local direction sort_flag key hex score entry
local -a keys entries sorted local -a keys entries sorted
keys=(darker_bg dark_bg bg lighter_bg selection muted dark_fg fg light_fg bright_fg) keys=(darker_background dark_background background lighter_background selection muted dark_foreground foreground light_foreground bright_foreground)
if [[ $mode == "light" ]]; then if [[ $mode == "light" ]]; then
direction="lightest -> darkest" direction="lightest -> darkest"
sort_flag="-rn" sort_flag="-rn"
@@ -425,15 +425,15 @@ apply_terminal_osc
printf 'Theme: %s\n' "$theme_label" printf 'Theme: %s\n' "$theme_label"
printf 'File: %s\n' "$colors_file" printf 'File: %s\n' "$colors_file"
printf 'Mode: %s\n' "$mode" printf 'Mode: %s\n' "$mode"
if [[ ${COLORS[fg]} =~ ^#[0-9A-Fa-f]{6}$ && ${COLORS[bg]} =~ ^#[0-9A-Fa-f]{6}$ ]]; then if [[ ${COLORS[foreground]} =~ ^#[0-9A-Fa-f]{6}$ && ${COLORS[background]} =~ ^#[0-9A-Fa-f]{6}$ ]]; then
printf 'fg/bg contrast: %s:1\n' "$(contrast_ratio "${COLORS[fg]}" "${COLORS[bg]}")" printf 'foreground/background contrast: %s:1\n' "$(contrast_ratio "${COLORS[foreground]}" "${COLORS[background]}")"
fi fi
print_gradient bg bright_fg print_gradient background bright_foreground
print_neutral_ramp "$mode" print_neutral_ramp "$mode"
print_group "Foundation" bg fg accent selection print_group "Foundation" background foreground accent selection
print_selection_sample print_selection_sample
print_practical_samples print_practical_samples
print_ansi_palette print_ansi_palette
print_group "Normal colors" red yellow orange green cyan blue magenta brown print_group "Normal colors" red yellow orange green cyan blue magenta brown
print_group "Bright colors" bright_red bright_yellow bright_green bright_cyan bright_blue bright_magenta bright_fg print_group "Bright colors" bright_red bright_yellow bright_green bright_cyan bright_blue bright_magenta bright_foreground
+2 -2
View File
@@ -51,7 +51,7 @@ theme_color() {
' "$theme_dir/colors.toml" ' "$theme_dir/colors.toml"
} }
bg=$(theme_color background bg) bg=$(theme_color background)
text=$(theme_color foreground fg) text=$(theme_color foreground)
exec omarchy-plymouth-set "$bg" "$text" "$theme_dir/unlock.png" exec omarchy-plymouth-set "$bg" "$text" "$theme_dir/unlock.png"
+21 -26
View File
@@ -125,8 +125,8 @@ resolve_theme_mode() {
if [[ -f $COLORS_DIR/light.mode ]]; then if [[ -f $COLORS_DIR/light.mode ]]; then
THEME_COLORS[mode]="light" THEME_COLORS[mode]="light"
elif [[ ${THEME_COLORS[bg]} =~ ^#[0-9A-Fa-f]{6}$ ]]; then elif [[ ${THEME_COLORS[background]} =~ ^#[0-9A-Fa-f]{6}$ ]]; then
bg_hex="${THEME_COLORS[bg]#\#}" bg_hex="${THEME_COLORS[background]#\#}"
lum=$(( $(printf "%d" "0x${bg_hex:0:2}") + $(printf "%d" "0x${bg_hex:2:2}") + $(printf "%d" "0x${bg_hex:4:2}") )) lum=$(( $(printf "%d" "0x${bg_hex:0:2}") + $(printf "%d" "0x${bg_hex:2:2}") + $(printf "%d" "0x${bg_hex:4:2}") ))
(( lum > 382 )) && THEME_COLORS[mode]="light" || THEME_COLORS[mode]="dark" (( lum > 382 )) && THEME_COLORS[mode]="light" || THEME_COLORS[mode]="dark"
else else
@@ -161,17 +161,12 @@ parse_colors_file() {
resolve_theme_colors() { resolve_theme_colors() {
local key local key
# Canonical palette keys are bg/fg. Preserve older themes that still define # Canonical palette keys are background/foreground. Themes generated before
# background/foreground by treating those semantic values as the source of # the semantic palette existed may only define the ANSI names.
# truth, then expose the old names as aliases for legacy consumers. [[ ${THEME_COLORS[background]} ]] || THEME_COLORS[background]="${THEME_COLORS[color0]}"
[[ ${THEME_COLORS[background]} ]] && THEME_COLORS[bg]="${THEME_COLORS[background]}" [[ ${THEME_COLORS[foreground]} ]] || THEME_COLORS[foreground]="${THEME_COLORS[color7]}"
[[ ${THEME_COLORS[foreground]} ]] && THEME_COLORS[fg]="${THEME_COLORS[foreground]}" [[ ${THEME_COLORS[background]} ]] && THEME_COLORS[color0]="${THEME_COLORS[background]}"
[[ ${THEME_COLORS[bg]} ]] || THEME_COLORS[bg]="${THEME_COLORS[color0]}" [[ ${THEME_COLORS[foreground]} ]] && THEME_COLORS[color7]="${THEME_COLORS[foreground]}"
[[ ${THEME_COLORS[fg]} ]] || THEME_COLORS[fg]="${THEME_COLORS[color7]}"
[[ ${THEME_COLORS[bg]} ]] && THEME_COLORS[background]="${THEME_COLORS[bg]}"
[[ ${THEME_COLORS[fg]} ]] && THEME_COLORS[foreground]="${THEME_COLORS[fg]}"
[[ ${THEME_COLORS[bg]} ]] && THEME_COLORS[color0]="${THEME_COLORS[bg]}"
[[ ${THEME_COLORS[fg]} ]] && THEME_COLORS[color7]="${THEME_COLORS[fg]}"
# Legacy compatibility: map ANSI color0..color15 to semantic names. # Legacy compatibility: map ANSI color0..color15 to semantic names.
declare -A legacy_alias=( declare -A legacy_alias=(
@@ -194,21 +189,21 @@ resolve_theme_colors() {
alias_theme_color magenta purple alias_theme_color magenta purple
alias_theme_color bright_magenta bright_purple alias_theme_color bright_magenta bright_purple
[[ ${THEME_COLORS[light_fg]} ]] || THEME_COLORS[light_fg]="${THEME_COLORS[color7]:-${THEME_COLORS[fg]}}" [[ ${THEME_COLORS[light_foreground]} ]] || THEME_COLORS[light_foreground]="${THEME_COLORS[color7]:-${THEME_COLORS[foreground]}}"
[[ ${THEME_COLORS[bright_fg]} ]] || THEME_COLORS[bright_fg]="${THEME_COLORS[color15]:-${THEME_COLORS[fg]}}" [[ ${THEME_COLORS[bright_foreground]} ]] || THEME_COLORS[bright_foreground]="${THEME_COLORS[color15]:-${THEME_COLORS[foreground]}}"
THEME_COLORS[cursor]="${THEME_COLORS[bright_fg]}" THEME_COLORS[cursor]="${THEME_COLORS[bright_foreground]}"
[[ ${THEME_COLORS[lighter_bg]} ]] || THEME_COLORS[lighter_bg]="${THEME_COLORS[color0]:-${THEME_COLORS[bg]}}" [[ ${THEME_COLORS[lighter_background]} ]] || THEME_COLORS[lighter_background]="${THEME_COLORS[color0]:-${THEME_COLORS[background]}}"
[[ ${THEME_COLORS[dark_fg]} ]] || THEME_COLORS[dark_fg]="${THEME_COLORS[color8]:-${THEME_COLORS[fg]}}" [[ ${THEME_COLORS[dark_foreground]} ]] || THEME_COLORS[dark_foreground]="${THEME_COLORS[color8]:-${THEME_COLORS[foreground]}}"
[[ ${THEME_COLORS[muted]} ]] || THEME_COLORS[muted]="${THEME_COLORS[color8]:-${THEME_COLORS[dark_fg]}}" [[ ${THEME_COLORS[muted]} ]] || THEME_COLORS[muted]="${THEME_COLORS[color8]:-${THEME_COLORS[dark_foreground]}}"
[[ ${THEME_COLORS[selection]} ]] || THEME_COLORS[selection]="${THEME_COLORS[selection_background]:-${THEME_COLORS[color8]:-${THEME_COLORS[color0]:-${THEME_COLORS[bg]}}}}" [[ ${THEME_COLORS[selection]} ]] || THEME_COLORS[selection]="${THEME_COLORS[selection_background]:-${THEME_COLORS[color8]:-${THEME_COLORS[color0]:-${THEME_COLORS[background]}}}}"
[[ ${THEME_COLORS[selection_background]} ]] || THEME_COLORS[selection_background]="${THEME_COLORS[selection]}" [[ ${THEME_COLORS[selection_background]} ]] || THEME_COLORS[selection_background]="${THEME_COLORS[selection]}"
[[ ${THEME_COLORS[selection_foreground]} ]] || THEME_COLORS[selection_foreground]="${THEME_COLORS[bright_fg]}" [[ ${THEME_COLORS[selection_foreground]} ]] || THEME_COLORS[selection_foreground]="${THEME_COLORS[bright_foreground]}"
[[ ${THEME_COLORS[orange]} ]] || THEME_COLORS[orange]="${THEME_COLORS[yellow]}" [[ ${THEME_COLORS[orange]} ]] || THEME_COLORS[orange]="${THEME_COLORS[yellow]}"
[[ ${THEME_COLORS[brown]} ]] || THEME_COLORS[brown]=$(mix_color "${THEME_COLORS[orange]}" "#000000" 50%) [[ ${THEME_COLORS[brown]} ]] || THEME_COLORS[brown]=$(mix_color "${THEME_COLORS[orange]}" "#000000" 50%)
# Auto-derive shades from base accents when not defined and not aliased from colorN # Auto-derive shades from base accents when not defined and not aliased from colorN
[[ ${THEME_COLORS[dark_bg]} ]] || THEME_COLORS[dark_bg]=$(mix_color "${THEME_COLORS[bg]}" "#000000" 25%) [[ ${THEME_COLORS[dark_background]} ]] || THEME_COLORS[dark_background]=$(mix_color "${THEME_COLORS[background]}" "#000000" 25%)
[[ ${THEME_COLORS[darker_bg]} ]] || THEME_COLORS[darker_bg]=$(mix_color "${THEME_COLORS[bg]}" "#000000" 50%) [[ ${THEME_COLORS[darker_background]} ]] || THEME_COLORS[darker_background]=$(mix_color "${THEME_COLORS[background]}" "#000000" 50%)
[[ ${THEME_COLORS[bright_red]} ]] || THEME_COLORS[bright_red]=$(mix_color "${THEME_COLORS[red]}" "#ffffff" 20%) [[ ${THEME_COLORS[bright_red]} ]] || THEME_COLORS[bright_red]=$(mix_color "${THEME_COLORS[red]}" "#ffffff" 20%)
[[ ${THEME_COLORS[bright_yellow]} ]] || THEME_COLORS[bright_yellow]=$(mix_color "${THEME_COLORS[yellow]}" "#ffffff" 20%) [[ ${THEME_COLORS[bright_yellow]} ]] || THEME_COLORS[bright_yellow]=$(mix_color "${THEME_COLORS[yellow]}" "#ffffff" 20%)
[[ ${THEME_COLORS[bright_green]} ]] || THEME_COLORS[bright_green]=$(mix_color "${THEME_COLORS[green]}" "#ffffff" 20%) [[ ${THEME_COLORS[bright_green]} ]] || THEME_COLORS[bright_green]=$(mix_color "${THEME_COLORS[green]}" "#ffffff" 20%)
@@ -221,14 +216,14 @@ resolve_theme_colors() {
# Keep semantic themes compatible with consumers that still reference the # Keep semantic themes compatible with consumers that still reference the
# legacy ANSI names directly. # legacy ANSI names directly.
declare -A ansi_alias=( declare -A ansi_alias=(
[color0]=bg [color0]=background
[color1]=red [color1]=red
[color2]=green [color2]=green
[color3]=yellow [color3]=yellow
[color4]=blue [color4]=blue
[color5]=magenta [color5]=magenta
[color6]=cyan [color6]=cyan
[color7]=fg [color7]=foreground
[color8]=muted [color8]=muted
[color9]=bright_red [color9]=bright_red
[color10]=bright_green [color10]=bright_green
@@ -236,7 +231,7 @@ resolve_theme_colors() {
[color12]=bright_blue [color12]=bright_blue
[color13]=bright_magenta [color13]=bright_magenta
[color14]=bright_cyan [color14]=bright_cyan
[color15]=bright_fg [color15]=bright_foreground
) )
for key in "${!ansi_alias[@]}"; do for key in "${!ansi_alias[@]}"; do
alias_theme_color "$key" "${ansi_alias[$key]}" alias_theme_color "$key" "${ansi_alias[$key]}"
+2 -2
View File
@@ -129,8 +129,8 @@ cat > "$COLORS_OUTPUT" <<EOF
accent = "$accent" accent = "$accent"
selection = "$selection_background" selection = "$selection_background"
bg = "$background" background = "$background"
fg = "$foreground" foreground = "$foreground"
color0 = "$color0" color0 = "$color0"
color1 = "$color1" color1 = "$color1"
+21 -21
View File
@@ -15,18 +15,18 @@
# by default. # by default.
# #
# AVAILABLE VARIABLES: # AVAILABLE VARIABLES:
# {{ bg }} - Main background color (e.g., "#1a1b26") # {{ background }} - Main background color (e.g., "#1a1b26")
# {{ fg }} - Main foreground/text color # {{ foreground }} - Main foreground/text color
# {{ bright_fg }} - Bright foreground / cursor color # {{ bright_foreground }} - Bright foreground / cursor color
# {{ accent }} - Theme accent color # {{ accent }} - Theme accent color
# {{ selection }} - Selection highlight background # {{ selection }} - Selection highlight background
# {{ selection_background }} - Selection highlight background alias # {{ selection_background }} - Selection highlight background alias
# {{ selection_foreground }} - Selection highlight foreground (derived from bright_fg) # {{ selection_foreground }} - Selection highlight foreground (derived from bright_foreground)
# #
# {{ color0 }} through {{ color15 }} - Standard 16-color terminal palette # {{ color0 }} through {{ color15 }} - Standard 16-color terminal palette
# color0-7: Normal colors (black, red, green, yellow, blue, magenta, cyan, white) # color0-7: Normal colors (black, red, green, yellow, blue, magenta, cyan, white)
# color8-15: Bright variants # color8-15: Bright variants
# Semantic aliases are also available: {{ bg }}, {{ fg }}, {{ red }}, {{ green }}, # Semantic aliases are also available: {{ background }}, {{ foreground }}, {{ red }}, {{ green }},
# {{ yellow }}, {{ blue }}, {{ magenta }}, {{ cyan }}, {{ muted }} and the # {{ yellow }}, {{ blue }}, {{ magenta }}, {{ cyan }}, {{ muted }} and the
# {{ bright_* }} variants. The two forms are kept in sync by # {{ bright_* }} variants. The two forms are kept in sync by
# bin/omarchy-theme-set-templates. # bin/omarchy-theme-set-templates.
@@ -36,49 +36,49 @@
# {{ variable_rgb }} - Decimal RGB values (e.g., "26,27,38") # {{ variable_rgb }} - Decimal RGB values (e.g., "26,27,38")
# #
# Example using modifiers: # Example using modifiers:
# background = "{{ bg }}" -> background = "#1a1b26" # background = "{{ background }}" -> background = "#1a1b26"
# background = "{{ bg_strip }}" -> background = "1a1b26" # background = "{{ background_strip }}" -> background = "1a1b26"
# background = "rgb({{ bg_rgb }})" -> background = "rgb(26,27,38)" # background = "rgb({{ background_rgb }})" -> background = "rgb(26,27,38)"
# #
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
[colors.primary] [colors.primary]
background = "{{ bg }}" background = "{{ background }}"
foreground = "{{ fg }}" foreground = "{{ foreground }}"
[colors.cursor] [colors.cursor]
text = "{{ bg }}" text = "{{ background }}"
cursor = "{{ bright_fg }}" cursor = "{{ bright_foreground }}"
[colors.vi_mode_cursor] [colors.vi_mode_cursor]
text = "{{ bg }}" text = "{{ background }}"
cursor = "{{ bright_fg }}" cursor = "{{ bright_foreground }}"
[colors.search.matches] [colors.search.matches]
foreground = "{{ bg }}" foreground = "{{ background }}"
background = "{{ yellow }}" background = "{{ yellow }}"
[colors.search.focused_match] [colors.search.focused_match]
foreground = "{{ bg }}" foreground = "{{ background }}"
background = "{{ red }}" background = "{{ red }}"
[colors.footer_bar] [colors.footer_bar]
foreground = "{{ bg }}" foreground = "{{ background }}"
background = "{{ fg }}" background = "{{ foreground }}"
[colors.selection] [colors.selection]
text = "{{ selection_foreground }}" text = "{{ selection_foreground }}"
background = "{{ selection_background }}" background = "{{ selection_background }}"
[colors.normal] [colors.normal]
black = "{{ bg }}" black = "{{ background }}"
red = "{{ red }}" red = "{{ red }}"
green = "{{ green }}" green = "{{ green }}"
yellow = "{{ yellow }}" yellow = "{{ yellow }}"
blue = "{{ blue }}" blue = "{{ blue }}"
magenta = "{{ magenta }}" magenta = "{{ magenta }}"
cyan = "{{ cyan }}" cyan = "{{ cyan }}"
white = "{{ fg }}" white = "{{ foreground }}"
[colors.bright] [colors.bright]
black = "{{ muted }}" black = "{{ muted }}"
@@ -88,4 +88,4 @@ yellow = "{{ bright_yellow }}"
blue = "{{ bright_blue }}" blue = "{{ bright_blue }}"
magenta = "{{ bright_magenta }}" magenta = "{{ bright_magenta }}"
cyan = "{{ bright_cyan }}" cyan = "{{ bright_cyan }}"
white = "{{ bright_fg }}" white = "{{ bright_foreground }}"
+13 -13
View File
@@ -1,40 +1,40 @@
[colors.primary] [colors.primary]
background = "{{ bg }}" background = "{{ background }}"
foreground = "{{ fg }}" foreground = "{{ foreground }}"
[colors.cursor] [colors.cursor]
text = "{{ bg }}" text = "{{ background }}"
cursor = "{{ bright_fg }}" cursor = "{{ bright_foreground }}"
[colors.vi_mode_cursor] [colors.vi_mode_cursor]
text = "{{ bg }}" text = "{{ background }}"
cursor = "{{ bright_fg }}" cursor = "{{ bright_foreground }}"
[colors.search.matches] [colors.search.matches]
foreground = "{{ bg }}" foreground = "{{ background }}"
background = "{{ yellow }}" background = "{{ yellow }}"
[colors.search.focused_match] [colors.search.focused_match]
foreground = "{{ bg }}" foreground = "{{ background }}"
background = "{{ red }}" background = "{{ red }}"
[colors.footer_bar] [colors.footer_bar]
foreground = "{{ bg }}" foreground = "{{ background }}"
background = "{{ fg }}" background = "{{ foreground }}"
[colors.selection] [colors.selection]
text = "{{ selection_foreground }}" text = "{{ selection_foreground }}"
background = "{{ selection_background }}" background = "{{ selection_background }}"
[colors.normal] [colors.normal]
black = "{{ bg }}" black = "{{ background }}"
red = "{{ red }}" red = "{{ red }}"
green = "{{ green }}" green = "{{ green }}"
yellow = "{{ yellow }}" yellow = "{{ yellow }}"
blue = "{{ blue }}" blue = "{{ blue }}"
magenta = "{{ magenta }}" magenta = "{{ magenta }}"
cyan = "{{ cyan }}" cyan = "{{ cyan }}"
white = "{{ fg }}" white = "{{ foreground }}"
[colors.bright] [colors.bright]
black = "{{ muted }}" black = "{{ muted }}"
@@ -44,4 +44,4 @@ yellow = "{{ bright_yellow }}"
blue = "{{ bright_blue }}" blue = "{{ bright_blue }}"
magenta = "{{ bright_magenta }}" magenta = "{{ bright_magenta }}"
cyan = "{{ bright_cyan }}" cyan = "{{ bright_cyan }}"
white = "{{ bright_fg }}" white = "{{ bright_foreground }}"
+11 -11
View File
@@ -1,11 +1,11 @@
# Main background, empty for terminal default, need to be empty if you want transparent background # Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="{{ bg }}" theme[main_bg]="{{ background }}"
# Main text color # Main text color
theme[main_fg]="{{ fg }}" theme[main_fg]="{{ foreground }}"
# Title color for boxes # Title color for boxes
theme[title]="{{ fg }}" theme[title]="{{ foreground }}"
# Highlight color for keyboard shortcuts # Highlight color for keyboard shortcuts
theme[hi_fg]="{{ accent }}" theme[hi_fg]="{{ accent }}"
@@ -20,13 +20,13 @@ theme[selected_fg]="{{ accent }}"
theme[inactive_fg]="{{ muted }}" theme[inactive_fg]="{{ muted }}"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling # Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="{{ light_fg }}" theme[graph_text]="{{ light_foreground }}"
# Background color of the percentage meters # Background color of the percentage meters
theme[meter_bg]="{{ selection }}" theme[meter_bg]="{{ selection }}"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text # Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="{{ light_fg }}" theme[proc_misc]="{{ light_foreground }}"
# CPU, Memory, Network, Proc box outline colors # CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="{{ magenta }}" theme[cpu_box]="{{ magenta }}"
@@ -83,11 +83,11 @@ theme[process_mid]="{{ blue }}"
theme[process_end]="{{ magenta }}" theme[process_end]="{{ magenta }}"
# Graph gradient colors (spectrum shades from background to foreground) # Graph gradient colors (spectrum shades from background to foreground)
theme[gradient_color_0]="{{ bg }}" theme[gradient_color_0]="{{ background }}"
theme[gradient_color_1]="{{ lighter_bg }}" theme[gradient_color_1]="{{ lighter_background }}"
theme[gradient_color_2]="{{ selection }}" theme[gradient_color_2]="{{ selection }}"
theme[gradient_color_3]="{{ muted }}" theme[gradient_color_3]="{{ muted }}"
theme[gradient_color_4]="{{ dark_fg }}" theme[gradient_color_4]="{{ dark_foreground }}"
theme[gradient_color_5]="{{ fg }}" theme[gradient_color_5]="{{ foreground }}"
theme[gradient_color_6]="{{ light_fg }}" theme[gradient_color_6]="{{ light_foreground }}"
theme[gradient_color_7]="{{ bright_fg }}" theme[gradient_color_7]="{{ bright_foreground }}"
+1 -1
View File
@@ -1 +1 @@
{{ bg_rgb }} {{ background_rgb }}
+6 -6
View File
@@ -1,19 +1,19 @@
[colors-dark] [colors-dark]
foreground={{ fg_strip }} foreground={{ foreground_strip }}
background={{ bg_strip }} background={{ background_strip }}
selection-foreground={{ selection_foreground_strip }} selection-foreground={{ selection_foreground_strip }}
selection-background={{ selection_background_strip }} selection-background={{ selection_background_strip }}
cursor={{ bg_strip }} {{ bright_fg_strip }} cursor={{ background_strip }} {{ bright_foreground_strip }}
regular0={{ bg_strip }} regular0={{ background_strip }}
regular1={{ red_strip }} regular1={{ red_strip }}
regular2={{ green_strip }} regular2={{ green_strip }}
regular3={{ yellow_strip }} regular3={{ yellow_strip }}
regular4={{ blue_strip }} regular4={{ blue_strip }}
regular5={{ purple_strip }} regular5={{ purple_strip }}
regular6={{ cyan_strip }} regular6={{ cyan_strip }}
regular7={{ fg_strip }} regular7={{ foreground_strip }}
bright0={{ muted_strip }} bright0={{ muted_strip }}
bright1={{ bright_red_strip }} bright1={{ bright_red_strip }}
@@ -22,4 +22,4 @@ bright3={{ bright_yellow_strip }}
bright4={{ bright_blue_strip }} bright4={{ bright_blue_strip }}
bright5={{ bright_magenta_strip }} bright5={{ bright_magenta_strip }}
bright6={{ bright_cyan_strip }} bright6={{ bright_cyan_strip }}
bright7={{ bright_fg_strip }} bright7={{ bright_foreground_strip }}
+6 -6
View File
@@ -1,17 +1,17 @@
background = {{ bg }} background = {{ background }}
foreground = {{ fg }} foreground = {{ foreground }}
cursor-color = {{ bright_fg }} cursor-color = {{ bright_foreground }}
selection-background = {{ selection_background }} selection-background = {{ selection_background }}
selection-foreground = {{ selection_foreground }} selection-foreground = {{ selection_foreground }}
palette = 0={{ bg }} palette = 0={{ background }}
palette = 1={{ red }} palette = 1={{ red }}
palette = 2={{ green }} palette = 2={{ green }}
palette = 3={{ yellow }} palette = 3={{ yellow }}
palette = 4={{ blue }} palette = 4={{ blue }}
palette = 5={{ magenta }} palette = 5={{ magenta }}
palette = 6={{ cyan }} palette = 6={{ cyan }}
palette = 7={{ fg }} palette = 7={{ foreground }}
palette = 8={{ muted }} palette = 8={{ muted }}
palette = 9={{ bright_red }} palette = 9={{ bright_red }}
palette = 10={{ bright_green }} palette = 10={{ bright_green }}
@@ -19,4 +19,4 @@ palette = 11={{ bright_yellow }}
palette = 12={{ bright_blue }} palette = 12={{ bright_blue }}
palette = 13={{ bright_magenta }} palette = 13={{ bright_magenta }}
palette = 14={{ bright_cyan }} palette = 14={{ bright_cyan }}
palette = 15={{ bright_fg }} palette = 15={{ bright_foreground }}
+78 -78
View File
@@ -1,137 +1,137 @@
-- Gum Style (generic) Variables -- Gum Style (generic) Variables
hl.env("FOREGROUND", "{{ fg }}") hl.env("FOREGROUND", "{{ foreground }}")
hl.env("BACKGROUND", "{{ bg }}") hl.env("BACKGROUND", "{{ background }}")
hl.env("BORDER_FOREGROUND", "{{ accent }}") hl.env("BORDER_FOREGROUND", "{{ accent }}")
hl.env("BORDER_BACKGROUND", "{{ bg }}") hl.env("BORDER_BACKGROUND", "{{ background }}")
-- Gum Confirm Style Variables -- Gum Confirm Style Variables
hl.env("GUM_CONFIRM_PROMPT_FOREGROUND", "{{ accent }}") hl.env("GUM_CONFIRM_PROMPT_FOREGROUND", "{{ accent }}")
hl.env("GUM_CONFIRM_PROMPT_BACKGROUND", "{{ bg }}") hl.env("GUM_CONFIRM_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_CONFIRM_SELECTED_FOREGROUND", "{{ selection_foreground }}") hl.env("GUM_CONFIRM_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_CONFIRM_SELECTED_BACKGROUND", "{{ selection_background }}") hl.env("GUM_CONFIRM_SELECTED_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_CONFIRM_UNSELECTED_FOREGROUND", "{{ fg }}") hl.env("GUM_CONFIRM_UNSELECTED_FOREGROUND", "{{ foreground }}")
hl.env("GUM_CONFIRM_UNSELECTED_BACKGROUND", "{{ bg }}") hl.env("GUM_CONFIRM_UNSELECTED_BACKGROUND", "{{ background }}")
-- Gum Input Style Variables -- Gum Input Style Variables
hl.env("GUM_INPUT_PROMPT_FOREGROUND", "{{ accent }}") hl.env("GUM_INPUT_PROMPT_FOREGROUND", "{{ accent }}")
hl.env("GUM_INPUT_PROMPT_BACKGROUND", "{{ bg }}") hl.env("GUM_INPUT_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_PLACEHOLDER_FOREGROUND", "{{ muted }}") hl.env("GUM_INPUT_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_INPUT_PLACEHOLDER_BACKGROUND", "{{ bg }}") hl.env("GUM_INPUT_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_CURSOR_FOREGROUND", "{{ bright_fg }}") hl.env("GUM_INPUT_CURSOR_FOREGROUND", "{{ bright_foreground }}")
hl.env("GUM_INPUT_CURSOR_BACKGROUND", "{{ bg }}") hl.env("GUM_INPUT_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_HEADER_FOREGROUND", "{{ fg }}") hl.env("GUM_INPUT_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_INPUT_HEADER_BACKGROUND", "{{ bg }}") hl.env("GUM_INPUT_HEADER_BACKGROUND", "{{ background }}")
-- Gum Choose Style Variables -- Gum Choose Style Variables
hl.env("GUM_CHOOSE_CURSOR_FOREGROUND", "{{ accent }}") hl.env("GUM_CHOOSE_CURSOR_FOREGROUND", "{{ accent }}")
hl.env("GUM_CHOOSE_CURSOR_BACKGROUND", "{{ bg }}") hl.env("GUM_CHOOSE_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_CHOOSE_HEADER_FOREGROUND", "{{ fg }}") hl.env("GUM_CHOOSE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_CHOOSE_HEADER_BACKGROUND", "{{ bg }}") hl.env("GUM_CHOOSE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_CHOOSE_ITEM_FOREGROUND", "{{ fg }}") hl.env("GUM_CHOOSE_ITEM_FOREGROUND", "{{ foreground }}")
hl.env("GUM_CHOOSE_ITEM_BACKGROUND", "{{ bg }}") hl.env("GUM_CHOOSE_ITEM_BACKGROUND", "{{ background }}")
hl.env("GUM_CHOOSE_SELECTED_FOREGROUND", "{{ selection_foreground }}") hl.env("GUM_CHOOSE_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_CHOOSE_SELECTED_BACKGROUND", "{{ selection_background }}") hl.env("GUM_CHOOSE_SELECTED_BACKGROUND", "{{ selection_background }}")
-- Gum Filter Style Variables -- Gum Filter Style Variables
hl.env("GUM_FILTER_PROMPT_FOREGROUND", "{{ accent }}") hl.env("GUM_FILTER_PROMPT_FOREGROUND", "{{ accent }}")
hl.env("GUM_FILTER_PROMPT_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_TEXT_FOREGROUND", "{{ fg }}") hl.env("GUM_FILTER_TEXT_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILTER_TEXT_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_TEXT_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_MATCH_FOREGROUND", "{{ accent }}") hl.env("GUM_FILTER_MATCH_FOREGROUND", "{{ accent }}")
hl.env("GUM_FILTER_CURSOR_TEXT_FOREGROUND", "{{ bright_fg }}") hl.env("GUM_FILTER_CURSOR_TEXT_FOREGROUND", "{{ bright_foreground }}")
hl.env("GUM_FILTER_CURSOR_TEXT_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_CURSOR_TEXT_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_SELECTED_FOREGROUND", "{{ selection_foreground }}") hl.env("GUM_FILTER_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_FILTER_SELECTED_BACKGROUND", "{{ selection_background }}") hl.env("GUM_FILTER_SELECTED_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_FILTER_INDICATOR_FOREGROUND", "{{ accent }}") hl.env("GUM_FILTER_INDICATOR_FOREGROUND", "{{ accent }}")
hl.env("GUM_FILTER_HEADER_FOREGROUND", "{{ fg }}") hl.env("GUM_FILTER_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILTER_MATCH_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_MATCH_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_HEADER_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_PLACEHOLDER_FOREGROUND", "{{ muted }}") hl.env("GUM_FILTER_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILTER_PLACEHOLDER_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_INDICATOR_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_INDICATOR_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_SELECTED_PREFIX_FOREGROUND", "{{ selection_foreground }}") hl.env("GUM_FILTER_SELECTED_PREFIX_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_FILTER_SELECTED_PREFIX_BACKGROUND", "{{ selection_background }}") hl.env("GUM_FILTER_SELECTED_PREFIX_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_FILTER_UNSELECTED_PREFIX_FOREGROUND", "{{ muted }}") hl.env("GUM_FILTER_UNSELECTED_PREFIX_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILTER_UNSELECTED_PREFIX_BACKGROUND", "{{ bg }}") hl.env("GUM_FILTER_UNSELECTED_PREFIX_BACKGROUND", "{{ background }}")
-- Gum Table Style Variables -- Gum Table Style Variables
hl.env("GUM_TABLE_HEADER_FOREGROUND", "{{ fg }}") hl.env("GUM_TABLE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_TABLE_HEADER_BACKGROUND", "{{ bg }}") hl.env("GUM_TABLE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_CELL_FOREGROUND", "{{ fg }}") hl.env("GUM_TABLE_CELL_FOREGROUND", "{{ foreground }}")
hl.env("GUM_TABLE_CELL_BACKGROUND", "{{ bg }}") hl.env("GUM_TABLE_CELL_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_BORDER_FOREGROUND", "{{ muted }}") hl.env("GUM_TABLE_BORDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_TABLE_BORDER_BACKGROUND", "{{ bg }}") hl.env("GUM_TABLE_BORDER_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_SELECTED_FOREGROUND", "{{ selection_foreground }}") hl.env("GUM_TABLE_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_TABLE_SELECTED_BACKGROUND", "{{ selection_background }}") hl.env("GUM_TABLE_SELECTED_BACKGROUND", "{{ selection_background }}")
-- Gum Spin Style Variables -- Gum Spin Style Variables
hl.env("GUM_SPIN_SPINNER_FOREGROUND", "{{ accent }}") hl.env("GUM_SPIN_SPINNER_FOREGROUND", "{{ accent }}")
hl.env("GUM_SPIN_SPINNER_BACKGROUND", "{{ bg }}") hl.env("GUM_SPIN_SPINNER_BACKGROUND", "{{ background }}")
hl.env("GUM_SPIN_TITLE_FOREGROUND", "{{ fg }}") hl.env("GUM_SPIN_TITLE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_SPIN_TITLE_BACKGROUND", "{{ bg }}") hl.env("GUM_SPIN_TITLE_BACKGROUND", "{{ background }}")
-- Gum File Style Variables -- Gum File Style Variables
hl.env("GUM_FILE_CURSOR_FOREGROUND", "{{ bright_fg }}") hl.env("GUM_FILE_CURSOR_FOREGROUND", "{{ bright_foreground }}")
hl.env("GUM_FILE_CURSOR_BACKGROUND", "{{ bg }}") hl.env("GUM_FILE_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_SYMLINK_FOREGROUND", "{{ fg }}") hl.env("GUM_FILE_SYMLINK_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_SYMLINK_BACKGROUND", "{{ bg }}") hl.env("GUM_FILE_SYMLINK_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_DIRECTORY_FOREGROUND", "{{ fg }}") hl.env("GUM_FILE_DIRECTORY_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_DIRECTORY_BACKGROUND", "{{ bg }}") hl.env("GUM_FILE_DIRECTORY_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_FILE_FOREGROUND", "{{ fg }}") hl.env("GUM_FILE_FILE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_FILE_BACKGROUND", "{{ bg }}") hl.env("GUM_FILE_FILE_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_PERMISSIONS_FOREGROUND", "{{ muted }}") hl.env("GUM_FILE_PERMISSIONS_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILE_PERMISSIONS_BACKGROUND", "{{ bg }}") hl.env("GUM_FILE_PERMISSIONS_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_SELECTED_FOREGROUND", "{{ selection_foreground }}") hl.env("GUM_FILE_SELECTED_FOREGROUND", "{{ selection_foreground }}")
hl.env("GUM_FILE_SELECTED_BACKGROUND", "{{ selection_background }}") hl.env("GUM_FILE_SELECTED_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_FILE_FILE_SIZE_FOREGROUND", "{{ muted }}") hl.env("GUM_FILE_FILE_SIZE_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILE_FILE_SIZE_BACKGROUND", "{{ bg }}") hl.env("GUM_FILE_FILE_SIZE_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_HEADER_FOREGROUND", "{{ fg }}") hl.env("GUM_FILE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_HEADER_BACKGROUND", "{{ bg }}") hl.env("GUM_FILE_HEADER_BACKGROUND", "{{ background }}")
-- Gum Pager Style Variables -- Gum Pager Style Variables
hl.env("GUM_PAGER_FOREGROUND", "{{ fg }}") hl.env("GUM_PAGER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_PAGER_BACKGROUND", "{{ bg }}") hl.env("GUM_PAGER_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_LINE_NUMBER_FOREGROUND", "{{ muted }}") hl.env("GUM_PAGER_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_PAGER_LINE_NUMBER_BACKGROUND", "{{ bg }}") hl.env("GUM_PAGER_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_MATCH_FOREGROUND", "{{ accent }}") hl.env("GUM_PAGER_MATCH_FOREGROUND", "{{ accent }}")
hl.env("GUM_PAGER_MATCH_BACKGROUND", "{{ bg }}") hl.env("GUM_PAGER_MATCH_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_MATCH_HIGH_FOREGROUND", "{{ accent }}") hl.env("GUM_PAGER_MATCH_HIGH_FOREGROUND", "{{ accent }}")
hl.env("GUM_PAGER_MATCH_HIGH_BACKGROUND", "{{ bg }}") hl.env("GUM_PAGER_MATCH_HIGH_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_HELP_FOREGROUND", "{{ muted }}") hl.env("GUM_PAGER_HELP_FOREGROUND", "{{ muted }}")
hl.env("GUM_PAGER_HELP_BACKGROUND", "{{ bg }}") hl.env("GUM_PAGER_HELP_BACKGROUND", "{{ background }}")
-- Gum Write Style Variables -- Gum Write Style Variables
hl.env("GUM_WRITE_BASE_FOREGROUND", "{{ fg }}") hl.env("GUM_WRITE_BASE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_BASE_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_BASE_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_FOREGROUND", "{{ muted }}") hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_CURSOR_LINE_FOREGROUND", "{{ fg }}") hl.env("GUM_WRITE_CURSOR_LINE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_CURSOR_LINE_BACKGROUND", "{{ selection_background }}") hl.env("GUM_WRITE_CURSOR_LINE_BACKGROUND", "{{ selection_background }}")
hl.env("GUM_WRITE_CURSOR_FOREGROUND", "{{ bright_fg }}") hl.env("GUM_WRITE_CURSOR_FOREGROUND", "{{ bright_foreground }}")
hl.env("GUM_WRITE_CURSOR_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_END_OF_BUFFER_FOREGROUND", "{{ muted }}") hl.env("GUM_WRITE_END_OF_BUFFER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_END_OF_BUFFER_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_END_OF_BUFFER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_LINE_NUMBER_FOREGROUND", "{{ muted }}") hl.env("GUM_WRITE_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_LINE_NUMBER_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_HEADER_FOREGROUND", "{{ fg }}") hl.env("GUM_WRITE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_HEADER_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_PLACEHOLDER_FOREGROUND", "{{ muted }}") hl.env("GUM_WRITE_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_PLACEHOLDER_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_PROMPT_FOREGROUND", "{{ fg }}") hl.env("GUM_WRITE_PROMPT_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_PROMPT_BACKGROUND", "{{ bg }}") hl.env("GUM_WRITE_PROMPT_BACKGROUND", "{{ background }}")
-- Gum Log Style Variables -- Gum Log Style Variables
hl.env("GUM_LOG_LEVEL_FOREGROUND", "{{ accent }}") hl.env("GUM_LOG_LEVEL_FOREGROUND", "{{ accent }}")
hl.env("GUM_LOG_LEVEL_BACKGROUND", "{{ bg }}") hl.env("GUM_LOG_LEVEL_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_TIME_FOREGROUND", "{{ muted }}") hl.env("GUM_LOG_TIME_FOREGROUND", "{{ muted }}")
hl.env("GUM_LOG_TIME_BACKGROUND", "{{ bg }}") hl.env("GUM_LOG_TIME_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_PREFIX_FOREGROUND", "{{ fg }}") hl.env("GUM_LOG_PREFIX_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_PREFIX_BACKGROUND", "{{ bg }}") hl.env("GUM_LOG_PREFIX_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_MESSAGE_FOREGROUND", "{{ fg }}") hl.env("GUM_LOG_MESSAGE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_MESSAGE_BACKGROUND", "{{ bg }}") hl.env("GUM_LOG_MESSAGE_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_KEY_FOREGROUND", "{{ fg }}") hl.env("GUM_LOG_KEY_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_KEY_BACKGROUND", "{{ bg }}") hl.env("GUM_LOG_KEY_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_VALUE_FOREGROUND", "{{ fg }}") hl.env("GUM_LOG_VALUE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_VALUE_BACKGROUND", "{{ bg }}") hl.env("GUM_LOG_VALUE_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_SEPARATOR_FOREGROUND", "{{ muted }}") hl.env("GUM_LOG_SEPARATOR_FOREGROUND", "{{ muted }}")
hl.env("GUM_LOG_SEPARATOR_BACKGROUND", "{{ bg }}") hl.env("GUM_LOG_SEPARATOR_BACKGROUND", "{{ background }}")
+5 -5
View File
@@ -116,17 +116,17 @@ info = "color4"
hint = "color6" hint = "color6"
[palette] [palette]
background = "{{ bg }}" background = "{{ background }}"
foreground = "{{ fg }}" foreground = "{{ foreground }}"
cursor = "{{ bright_fg }}" cursor = "{{ bright_foreground }}"
selection_background = "{{ selection_background }}" selection_background = "{{ selection_background }}"
selection_foreground = "{{ selection_foreground }}" selection_foreground = "{{ selection_foreground }}"
color0 = "{{ bg }}" color0 = "{{ background }}"
color1 = "{{ red }}" color1 = "{{ red }}"
color2 = "{{ green }}" color2 = "{{ green }}"
color3 = "{{ yellow }}" color3 = "{{ yellow }}"
color4 = "{{ blue }}" color4 = "{{ blue }}"
color5 = "{{ magenta }}" color5 = "{{ magenta }}"
color6 = "{{ cyan }}" color6 = "{{ cyan }}"
color7 = "{{ fg }}" color7 = "{{ foreground }}"
color8 = "{{ muted }}" color8 = "{{ muted }}"
@@ -1,12 +1,12 @@
@define-color foreground {{ fg }}; @define-color foreground {{ foreground }};
@define-color background {{ bg }}; @define-color background {{ background }};
@define-color accent {{ accent }}; @define-color accent {{ accent }};
@define-color muted {{ muted }}; @define-color muted {{ muted }};
@define-color card_bg {{ lighter_bg }}; @define-color card_bg {{ lighter_background }};
@define-color text_dark {{ bg }}; @define-color text_dark {{ background }};
@define-color accent_hover {{ bright_blue }}; @define-color accent_hover {{ bright_blue }};
@define-color selected_tab {{ accent }}; @define-color selected_tab {{ accent }};
@define-color text {{ fg }}; @define-color text {{ foreground }};
* { * {
all: unset; all: unset;
+7 -7
View File
@@ -1,22 +1,22 @@
foreground {{ fg }} foreground {{ foreground }}
background {{ bg }} background {{ background }}
selection_foreground {{ selection_foreground }} selection_foreground {{ selection_foreground }}
selection_background {{ selection_background }} selection_background {{ selection_background }}
cursor {{ bright_fg }} cursor {{ bright_foreground }}
cursor_text_color {{ bg }} cursor_text_color {{ background }}
active_border_color {{ accent }} active_border_color {{ accent }}
active_tab_background {{ accent }} active_tab_background {{ accent }}
color0 {{ bg }} color0 {{ background }}
color1 {{ red }} color1 {{ red }}
color2 {{ green }} color2 {{ green }}
color3 {{ yellow }} color3 {{ yellow }}
color4 {{ blue }} color4 {{ blue }}
color5 {{ magenta }} color5 {{ magenta }}
color6 {{ cyan }} color6 {{ cyan }}
color7 {{ fg }} color7 {{ foreground }}
color8 {{ muted }} color8 {{ muted }}
color9 {{ bright_red }} color9 {{ bright_red }}
color10 {{ bright_green }} color10 {{ bright_green }}
@@ -24,4 +24,4 @@ color11 {{ bright_yellow }}
color12 {{ bright_blue }} color12 {{ bright_blue }}
color13 {{ bright_magenta }} color13 {{ bright_magenta }}
color14 {{ bright_cyan }} color14 {{ bright_cyan }}
color15 {{ bright_fg }} color15 {{ bright_foreground }}
+11 -11
View File
@@ -6,15 +6,15 @@ return {
priority = 1000, priority = 1000,
opts = { opts = {
colors = { colors = {
bg = "{{ bg }}", bg = "{{ background }}",
dark_bg = "{{ dark_bg }}", dark_bg = "{{ dark_background }}",
darker_bg = "{{ darker_bg }}", darker_bg = "{{ darker_background }}",
lighter_bg = "{{ lighter_bg }}", lighter_bg = "{{ lighter_background }}",
fg = "{{ fg }}", fg = "{{ foreground }}",
dark_fg = "{{ dark_fg }}", dark_fg = "{{ dark_foreground }}",
light_fg = "{{ light_fg }}", light_fg = "{{ light_foreground }}",
bright_fg = "{{ bright_fg }}", bright_fg = "{{ bright_foreground }}",
muted = "{{ muted }}", muted = "{{ muted }}",
red = "{{ red }}", red = "{{ red }}",
@@ -34,9 +34,9 @@ return {
bright_magenta = "{{ bright_magenta }}", bright_magenta = "{{ bright_magenta }}",
accent = "{{ accent }}", accent = "{{ accent }}",
cursor = "{{ bright_fg }}", cursor = "{{ bright_foreground }}",
foreground = "{{ fg }}", foreground = "{{ foreground }}",
background = "{{ bg }}", background = "{{ background }}",
selection = "{{ selection }}", selection = "{{ selection }}",
selection_foreground = "{{ selection_foreground }}", selection_foreground = "{{ selection_foreground }}",
selection_background = "{{ selection_background }}", selection_background = "{{ selection_background }}",
+7 -7
View File
@@ -2,11 +2,11 @@
.theme-dark, .theme-light { .theme-dark, .theme-light {
/* Core colors */ /* Core colors */
--background-primary: {{ bg }}; --background-primary: {{ background }};
--background-primary-alt: {{ bg }}; --background-primary-alt: {{ background }};
--background-secondary: {{ bg }}; --background-secondary: {{ background }};
--background-secondary-alt: {{ bg }}; --background-secondary-alt: {{ background }};
--text-normal: {{ fg }}; --text-normal: {{ foreground }};
/* Selection colors */ /* Selection colors */
--text-selection: {{ selection_background }}; --text-selection: {{ selection_background }};
@@ -30,8 +30,8 @@
--interactive-accent-hover: {{ accent }}; --interactive-accent-hover: {{ accent }};
/* Muted text */ /* Muted text */
--text-muted: color-mix(in srgb, {{ fg }} 70%, transparent); --text-muted: color-mix(in srgb, {{ foreground }} 70%, transparent);
--text-faint: color-mix(in srgb, {{ fg }} 55%, transparent); --text-faint: color-mix(in srgb, {{ foreground }} 55%, transparent);
/* Code */ /* Code */
--code-normal: {{ cyan }}; --code-normal: {{ cyan }};
+18 -18
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", "$schema": "https://raw.githubusercontent.com/earendil-works/pi/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
"name": "omarchy-system", "name": "omarchy-system",
"vars": { "vars": {
"background": "{{ bg }}", "background": "{{ background }}",
"foreground": "{{ fg }}", "foreground": "{{ foreground }}",
"accent": "{{ accent }}", "accent": "{{ accent }}",
"selectionBackground": "{{ selection_background }}", "selectionBackground": "{{ selection_background }}",
"selectionForeground": "{{ selection_foreground }}", "selectionForeground": "{{ selection_foreground }}",
"selectedBackground": "{{ mix bg accent 22% }}", "selectedBackground": "{{ mix background accent 22% }}",
"color0": "{{ bg }}", "color0": "{{ background }}",
"color1": "{{ red }}", "color1": "{{ red }}",
"color2": "{{ green }}", "color2": "{{ green }}",
"color3": "{{ yellow }}", "color3": "{{ yellow }}",
"color4": "{{ blue }}", "color4": "{{ blue }}",
"color5": "{{ magenta }}", "color5": "{{ magenta }}",
"color6": "{{ cyan }}", "color6": "{{ cyan }}",
"color7": "{{ fg }}", "color7": "{{ foreground }}",
"color8": "{{ muted }}", "color8": "{{ muted }}",
"color9": "{{ bright_red }}", "color9": "{{ bright_red }}",
"color10": "{{ bright_green }}", "color10": "{{ bright_green }}",
@@ -23,16 +23,16 @@
"color12": "{{ bright_blue }}", "color12": "{{ bright_blue }}",
"color13": "{{ bright_magenta }}", "color13": "{{ bright_magenta }}",
"color14": "{{ bright_cyan }}", "color14": "{{ bright_cyan }}",
"color15": "{{ bright_fg }}", "color15": "{{ bright_foreground }}",
"panel": "{{ mix bg fg 6% }}", "panel": "{{ mix background foreground 6% }}",
"panelAlt": "{{ mix bg fg 10% }}", "panelAlt": "{{ mix background foreground 10% }}",
"panelPending": "{{ mix bg accent 12% }}", "panelPending": "{{ mix background accent 12% }}",
"panelSuccess": "{{ mix bg green 12% }}", "panelSuccess": "{{ mix background green 12% }}",
"panelError": "{{ mix bg red 12% }}", "panelError": "{{ mix background red 12% }}",
"border": "{{ mix bg fg 30% }}", "border": "{{ mix background foreground 30% }}",
"borderMuted": "{{ mix bg fg 20% }}", "borderMuted": "{{ mix background foreground 20% }}",
"mutedText": "{{ mix fg bg 34% }}", "mutedText": "{{ mix foreground background 34% }}",
"dimText": "{{ mix fg bg 52% }}" "dimText": "{{ mix foreground background 52% }}"
}, },
"colors": { "colors": {
"accent": "accent", "accent": "accent",
@@ -88,8 +88,8 @@
"bashMode": "color3" "bashMode": "color3"
}, },
"export": { "export": {
"pageBg": "{{ bg }}", "pageBg": "{{ background }}",
"cardBg": "{{ mix bg fg 6% }}", "cardBg": "{{ mix background foreground 6% }}",
"infoBg": "{{ mix bg fg 10% }}" "infoBg": "{{ mix background foreground 10% }}"
} }
} }
+34 -34
View File
@@ -4,9 +4,9 @@
[bar] [bar]
# Alpha companions (where present) range from 0 (invisible) to 1 (opaque). # Alpha companions (where present) range from 0 (invisible) to 1 (opaque).
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 1.0 background-alpha = 1.0
text = "{{ fg }}" text = "{{ foreground }}"
# Modules calling attention to themselves (recording, voxtype, alerts, updates) # Modules calling attention to themselves (recording, voxtype, alerts, updates)
active = "{{ red }}" active = "{{ red }}"
# Cross-axis size at font base-size 12. size-horizontal is the height of # 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 # lock, notifications, popups, and menu-style cards stay aligned with the
# current Hyprland active-border gradient. # current Hyprland active-border gradient.
active-border = "{{ shell_gradient hyprland_active_border accent }}" active-border = "{{ shell_gradient hyprland_active_border accent }}"
active-border-foreground = "{{ shell_gradient hyprland_active_border fg }}" active-border-foreground = "{{ shell_gradient hyprland_active_border foreground }}"
[controls] [controls]
# Shared state tokens for interactive control chrome (buttons, dropdowns, # Shared state tokens for interactive control chrome (buttons, dropdowns,
@@ -31,32 +31,32 @@ active-border-foreground = "{{ shell_gradient hyprland_active_border fg }}"
# N, "Y X", "T X B", or "T R B L". Per-side keys like # 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 # normal-border-width-left override the list. Each *-border accepts either a
# solid color or a Hyprland-style gradient, e.g. "rgba(...) rgba(...) 45deg". # solid color or a Hyprland-style gradient, e.g. "rgba(...) rgba(...) 45deg".
normal-color = "{{ fg }}" normal-color = "{{ foreground }}"
normal-fill-alpha = 0.04 normal-fill-alpha = 0.04
normal-border = "{{ fg }}" normal-border = "{{ foreground }}"
normal-border-width = 1 normal-border-width = 1
normal-border-alpha = 0.4 normal-border-alpha = 0.4
# Hover-cursor: mouse hover and the panel keyboard cursor. # Hover-cursor: mouse hover and the panel keyboard cursor.
hover-cursor-color = "{{ fg }}" hover-cursor-color = "{{ foreground }}"
hover-cursor-fill-alpha = 0.08 hover-cursor-fill-alpha = 0.08
hover-cursor-border = "{{ fg }}" hover-cursor-border = "{{ foreground }}"
hover-cursor-border-width = 1 hover-cursor-border-width = 1
hover-cursor-border-alpha = 0.25 hover-cursor-border-alpha = 0.25
# Focus: Qt activeFocus. Mirror the hover-cursor values by default so # Focus: Qt activeFocus. Mirror the hover-cursor values by default so
# mouse hover, keyboard cursor, and tab focus all read as the same state # mouse hover, keyboard cursor, and tab focus all read as the same state
# — themes that want focus to stand out override these four lines. # — themes that want focus to stand out override these four lines.
focus-color = "{{ fg }}" focus-color = "{{ foreground }}"
focus-fill-alpha = 0.08 focus-fill-alpha = 0.08
focus-border = "{{ fg }}" focus-border = "{{ foreground }}"
focus-border-width = 1 focus-border-width = 1
focus-border-alpha = 0.25 focus-border-alpha = 0.25
# Selected: persistent chosen/current state. # Selected: persistent chosen/current state.
selected-color = "{{ fg }}" selected-color = "{{ foreground }}"
selected-fill-alpha = 0.18 selected-fill-alpha = 0.18
selected-border = "{{ fg }}" selected-border = "{{ foreground }}"
selected-border-width = 0 selected-border-width = 0
selected-border-alpha = 1.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 # 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"; # 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. # individual border-width-top/right/bottom/left keys override the list.
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 1.0 background-alpha = 1.0
text = "{{ fg }}" text = "{{ foreground }}"
border = "hyprland.active-border" border = "hyprland.active-border"
border-alpha = 1.0 border-alpha = 1.0
# border-width = 2 # border-width = 2
@@ -134,16 +134,16 @@ border-alpha = 1.0
[tooltip] [tooltip]
# Hover tooltips across the bar, panels, and buttons. background-alpha of # Hover tooltips across the bar, panels, and buttons. background-alpha of
# 0.97 mirrors the legacy hard-coded tooltip opacity. # 0.97 mirrors the legacy hard-coded tooltip opacity.
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 0.97 background-alpha = 0.97
text = "{{ fg }}" text = "{{ foreground }}"
border = "hyprland.active-border-foreground" border = "hyprland.active-border-foreground"
border-alpha = 1.0 border-alpha = 1.0
[notifications] [notifications]
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 1.0 background-alpha = 1.0
text = "{{ fg }}" text = "{{ foreground }}"
# Conventionally matches the Hyprland active-window border. Border accepts # Conventionally matches the Hyprland active-window border. Border accepts
# either a solid color or the full active-border gradient. # either a solid color or the full active-border gradient.
border = "hyprland.active-border" border = "hyprland.active-border"
@@ -156,14 +156,14 @@ countdown = "{{ accent }}"
# companions go from 0 (invisible) to 1 (opaque). scrim is the full-screen # companions go from 0 (invisible) to 1 (opaque). scrim is the full-screen
# dim layer behind the card; background is the card itself. Defaults # dim layer behind the card; background is the card itself. Defaults
# mirror [menu] with the card at 0.95 to preserve the legacy translucency. # mirror [menu] with the card at 0.95 to preserve the legacy translucency.
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 0.95 background-alpha = 0.95
text = "{{ fg }}" text = "{{ foreground }}"
border = "hyprland.active-border-foreground" border = "hyprland.active-border-foreground"
border-alpha = 1.0 border-alpha = 1.0
scrim = "{{ bg }}" scrim = "{{ background }}"
scrim-alpha = 0.5 scrim-alpha = 0.5
selected-background = "{{ fg }}" selected-background = "{{ foreground }}"
selected-background-alpha = 0.08 selected-background-alpha = 0.08
selected-text = "{{ accent }}" selected-text = "{{ accent }}"
selected-border = "hyprland.active-border-foreground" 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) # Cards, rows, and selected-row treatment. Alpha companions (where present)
# go from 0 (invisible) to 1 (opaque). scrim is the full-screen dim layer # go from 0 (invisible) to 1 (opaque). scrim is the full-screen dim layer
# behind the card. Clipboard and emojis inherit these tokens. # behind the card. Clipboard and emojis inherit these tokens.
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 1.0 background-alpha = 1.0
text = "{{ fg }}" text = "{{ foreground }}"
border = "hyprland.active-border-foreground" border = "hyprland.active-border-foreground"
border-alpha = 1.0 border-alpha = 1.0
scrim = "{{ bg }}" scrim = "{{ background }}"
scrim-alpha = 0.5 scrim-alpha = 0.5
selected-background = "{{ fg }}" selected-background = "{{ foreground }}"
selected-background-alpha = 0.08 selected-background-alpha = 0.08
selected-text = "{{ accent }}" selected-text = "{{ accent }}"
selected-border = "hyprland.active-border-foreground" 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 # text-error tints the lock icon, password text, and placeholder when
# authentication fails. border-alpha applies to both border and # authentication fails. border-alpha applies to both border and
# border-error (the two states are mutually exclusive in time). # border-error (the two states are mutually exclusive in time).
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 1.0 background-alpha = 1.0
text = "{{ fg }}" text = "{{ foreground }}"
text-error = "{{ red }}" text-error = "{{ red }}"
border = "hyprland.active-border" border = "hyprland.active-border"
border-error = "{{ red }}" border-error = "{{ red }}"
border-alpha = 1.0 border-alpha = 1.0
scrim = "{{ bg }}" scrim = "{{ background }}"
scrim-alpha = 0.5 scrim-alpha = 0.5
# accent is the lock-icon glyph color + text-selection tint. # accent is the lock-icon glyph color + text-selection tint.
accent = "{{ accent }}" accent = "{{ accent }}"
@@ -210,10 +210,10 @@ accent = "{{ accent }}"
# through idle, typing/authenticating, and wrong-password states. # through idle, typing/authenticating, and wrong-password states.
# border-alpha applies to all three border states (they are mutually # border-alpha applies to all three border states (they are mutually
# exclusive in time). # exclusive in time).
background = "{{ bg }}" background = "{{ background }}"
background-alpha = 0.8 background-alpha = 0.8
text = "{{ fg }}" text = "{{ foreground }}"
placeholder = "{{ mix fg bg 34% }}" placeholder = "{{ mix foreground background 34% }}"
text-error = "{{ red }}" text-error = "{{ red }}"
border = "hyprland.active-border" border = "hyprland.active-border"
border-active = "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 # the full-screen wash. Per-slice dim overlays and text outlines on top
# of the scrim track the foundational background color directly. # of the scrim track the foundational background color directly.
# unselected-border-alpha softens carousel slices that aren't selected. # unselected-border-alpha softens carousel slices that aren't selected.
scrim = "{{ bg }}" scrim = "{{ background }}"
scrim-alpha = 0.5 scrim-alpha = 0.5
text = "{{ fg }}" text = "{{ foreground }}"
selected-border = "{{ accent }}" selected-border = "{{ accent }}"
selected-border-alpha = 1.0 selected-border-alpha = 1.0
unselected-border = "{{ fg }}" unselected-border = "{{ foreground }}"
unselected-border-alpha = 0.28 unselected-border-alpha = 0.28
+198 -198
View File
@@ -6,10 +6,10 @@
"semanticTokenColors": { "semanticTokenColors": {
"parameter": "{{ cyan }}", "parameter": "{{ cyan }}",
"parameter.declaration": "{{ cyan }}", "parameter.declaration": "{{ cyan }}",
"variable": "{{ fg }}", "variable": "{{ foreground }}",
"variable.declaration": "{{ fg }}", "variable.declaration": "{{ foreground }}",
"variable.readonly": "{{ bright_yellow }}", "variable.readonly": "{{ bright_yellow }}",
"variable.defaultLibrary": "{{ fg }}", "variable.defaultLibrary": "{{ foreground }}",
"property": "{{ cyan }}", "property": "{{ cyan }}",
"property.declaration": "{{ cyan }}", "property.declaration": "{{ cyan }}",
"property.readonly": "{{ cyan }}", "property.readonly": "{{ cyan }}",
@@ -27,7 +27,7 @@
"enumMember": "{{ orange }}", "enumMember": "{{ orange }}",
"type": "{{ yellow }}", "type": "{{ yellow }}",
"type.declaration": "{{ yellow }}", "type.declaration": "{{ yellow }}",
"type.defaultLibrary": "{{ fg }}", "type.defaultLibrary": "{{ foreground }}",
"typeParameter": "{{ yellow }}", "typeParameter": "{{ yellow }}",
"namespace": "{{ blue }}", "namespace": "{{ blue }}",
"macro": "{{ cyan }}", "macro": "{{ cyan }}",
@@ -42,53 +42,53 @@
"comment.documentation": {"foreground": "{{ muted }}", "fontStyle": "italic"} "comment.documentation": {"foreground": "{{ muted }}", "fontStyle": "italic"}
}, },
"colors": { "colors": {
"foreground": "{{ fg }}", "foreground": "{{ foreground }}",
"disabledForeground": "{{ dark_fg }}", "disabledForeground": "{{ dark_foreground }}",
"focusBorder": "{{ accent }}80", "focusBorder": "{{ accent }}80",
"widget.shadow": "{{ bg }}80", "widget.shadow": "{{ background }}80",
"selection.background": "{{ selection_background }}80", "selection.background": "{{ selection_background }}80",
"descriptionForeground": "{{ muted }}", "descriptionForeground": "{{ muted }}",
"errorForeground": "{{ red }}", "errorForeground": "{{ red }}",
"icon.foreground": "{{ fg }}", "icon.foreground": "{{ foreground }}",
"sash.hoverBorder": "{{ accent }}", "sash.hoverBorder": "{{ accent }}",
"textBlockQuote.background": "{{ bg }}", "textBlockQuote.background": "{{ background }}",
"textBlockQuote.border": "{{ accent }}", "textBlockQuote.border": "{{ accent }}",
"textCodeBlock.background": "{{ bg }}", "textCodeBlock.background": "{{ background }}",
"textLink.activeForeground": "{{ bright_blue }}", "textLink.activeForeground": "{{ bright_blue }}",
"textLink.foreground": "{{ blue }}", "textLink.foreground": "{{ blue }}",
"textPreformat.foreground": "{{ cyan }}", "textPreformat.foreground": "{{ cyan }}",
"textPreformat.background": "{{ bg }}", "textPreformat.background": "{{ background }}",
"textSeparator.foreground": "{{ muted }}", "textSeparator.foreground": "{{ muted }}",
"toolbar.hoverBackground": "{{ bg }}", "toolbar.hoverBackground": "{{ background }}",
"toolbar.activeBackground": "{{ muted }}", "toolbar.activeBackground": "{{ muted }}",
"button.background": "{{ accent }}", "button.background": "{{ accent }}",
"button.foreground": "{{ bg }}", "button.foreground": "{{ background }}",
"button.hoverBackground": "{{ blue }}", "button.hoverBackground": "{{ blue }}",
"button.secondaryForeground": "{{ fg }}", "button.secondaryForeground": "{{ foreground }}",
"button.secondaryBackground": "{{ muted }}", "button.secondaryBackground": "{{ muted }}",
"button.secondaryHoverBackground": "{{ bg }}", "button.secondaryHoverBackground": "{{ background }}",
"button.border": "{{ accent }}20", "button.border": "{{ accent }}20",
"checkbox.background": "{{ bg }}", "checkbox.background": "{{ background }}",
"checkbox.foreground": "{{ fg }}", "checkbox.foreground": "{{ foreground }}",
"checkbox.border": "{{ muted }}", "checkbox.border": "{{ muted }}",
"checkbox.selectBackground": "{{ accent }}", "checkbox.selectBackground": "{{ accent }}",
"checkbox.selectBorder": "{{ accent }}", "checkbox.selectBorder": "{{ accent }}",
"dropdown.background": "{{ bg }}", "dropdown.background": "{{ background }}",
"dropdown.listBackground": "{{ bg }}", "dropdown.listBackground": "{{ background }}",
"dropdown.border": "{{ muted }}", "dropdown.border": "{{ muted }}",
"dropdown.foreground": "{{ fg }}", "dropdown.foreground": "{{ foreground }}",
"input.background": "{{ bg }}", "input.background": "{{ background }}",
"input.border": "{{ muted }}", "input.border": "{{ muted }}",
"input.foreground": "{{ fg }}", "input.foreground": "{{ foreground }}",
"input.placeholderForeground": "{{ muted }}", "input.placeholderForeground": "{{ muted }}",
"inputOption.activeBackground": "{{ accent }}40", "inputOption.activeBackground": "{{ accent }}40",
"inputOption.activeBorder": "{{ accent }}", "inputOption.activeBorder": "{{ accent }}",
"inputOption.activeForeground": "{{ fg }}", "inputOption.activeForeground": "{{ foreground }}",
"inputOption.hoverBackground": "{{ muted }}", "inputOption.hoverBackground": "{{ muted }}",
"inputValidation.errorBackground": "{{ red }}20", "inputValidation.errorBackground": "{{ red }}20",
"inputValidation.errorForeground": "{{ red }}", "inputValidation.errorForeground": "{{ red }}",
@@ -100,34 +100,34 @@
"inputValidation.warningForeground": "{{ yellow }}", "inputValidation.warningForeground": "{{ yellow }}",
"inputValidation.warningBorder": "{{ yellow }}", "inputValidation.warningBorder": "{{ yellow }}",
"scrollbar.shadow": "{{ bg }}", "scrollbar.shadow": "{{ background }}",
"scrollbarSlider.activeBackground": "{{ accent }}80", "scrollbarSlider.activeBackground": "{{ accent }}80",
"scrollbarSlider.background": "{{ muted }}40", "scrollbarSlider.background": "{{ muted }}40",
"scrollbarSlider.hoverBackground": "{{ muted }}80", "scrollbarSlider.hoverBackground": "{{ muted }}80",
"badge.background": "{{ accent }}", "badge.background": "{{ accent }}",
"badge.foreground": "{{ bg }}", "badge.foreground": "{{ background }}",
"progressBar.background": "{{ accent }}", "progressBar.background": "{{ accent }}",
"list.activeSelectionBackground": "{{ accent }}30", "list.activeSelectionBackground": "{{ accent }}30",
"list.activeSelectionForeground": "{{ fg }}", "list.activeSelectionForeground": "{{ foreground }}",
"list.activeSelectionIconForeground": "{{ fg }}", "list.activeSelectionIconForeground": "{{ foreground }}",
"list.dropBackground": "{{ accent }}20", "list.dropBackground": "{{ accent }}20",
"list.focusBackground": "{{ accent }}20", "list.focusBackground": "{{ accent }}20",
"list.focusForeground": "{{ fg }}", "list.focusForeground": "{{ foreground }}",
"list.focusOutline": "{{ accent }}60", "list.focusOutline": "{{ accent }}60",
"list.highlightForeground": "{{ accent }}", "list.highlightForeground": "{{ accent }}",
"list.hoverBackground": "{{ bg }}", "list.hoverBackground": "{{ background }}",
"list.hoverForeground": "{{ fg }}", "list.hoverForeground": "{{ foreground }}",
"list.inactiveSelectionBackground": "{{ muted }}40", "list.inactiveSelectionBackground": "{{ muted }}40",
"list.inactiveSelectionForeground": "{{ fg }}", "list.inactiveSelectionForeground": "{{ foreground }}",
"list.inactiveFocusBackground": "{{ muted }}40", "list.inactiveFocusBackground": "{{ muted }}40",
"list.inactiveFocusOutline": "{{ muted }}", "list.inactiveFocusOutline": "{{ muted }}",
"list.invalidItemForeground": "{{ red }}", "list.invalidItemForeground": "{{ red }}",
"list.errorForeground": "{{ red }}", "list.errorForeground": "{{ red }}",
"list.warningForeground": "{{ yellow }}", "list.warningForeground": "{{ yellow }}",
"listFilterWidget.background": "{{ bg }}", "listFilterWidget.background": "{{ background }}",
"listFilterWidget.outline": "{{ accent }}", "listFilterWidget.outline": "{{ accent }}",
"listFilterWidget.noMatchesOutline": "{{ red }}", "listFilterWidget.noMatchesOutline": "{{ red }}",
"list.filterMatchBackground": "{{ accent }}30", "list.filterMatchBackground": "{{ accent }}30",
@@ -135,34 +135,34 @@
"tree.indentGuidesStroke": "{{ muted }}", "tree.indentGuidesStroke": "{{ muted }}",
"tree.inactiveIndentGuidesStroke": "{{ muted }}60", "tree.inactiveIndentGuidesStroke": "{{ muted }}60",
"tree.tableColumnsBorder": "{{ muted }}", "tree.tableColumnsBorder": "{{ muted }}",
"tree.tableOddRowsBackground": "{{ bg }}40", "tree.tableOddRowsBackground": "{{ background }}40",
"activityBar.background": "{{ bg }}", "activityBar.background": "{{ background }}",
"activityBar.dropBorder": "{{ accent }}", "activityBar.dropBorder": "{{ accent }}",
"activityBar.foreground": "{{ fg }}", "activityBar.foreground": "{{ foreground }}",
"activityBar.inactiveForeground": "{{ muted }}", "activityBar.inactiveForeground": "{{ muted }}",
"activityBar.border": "{{ bg }}", "activityBar.border": "{{ background }}",
"activityBarBadge.background": "{{ accent }}", "activityBarBadge.background": "{{ accent }}",
"activityBarBadge.foreground": "{{ bg }}", "activityBarBadge.foreground": "{{ background }}",
"activityBar.activeBorder": "{{ accent }}", "activityBar.activeBorder": "{{ accent }}",
"activityBar.activeBackground": "{{ bg }}40", "activityBar.activeBackground": "{{ background }}40",
"sideBar.background": "{{ bg }}", "sideBar.background": "{{ background }}",
"sideBar.foreground": "{{ fg }}", "sideBar.foreground": "{{ foreground }}",
"sideBar.border": "{{ bg }}", "sideBar.border": "{{ background }}",
"sideBar.dropBackground": "{{ accent }}20", "sideBar.dropBackground": "{{ accent }}20",
"sideBarTitle.foreground": "{{ fg }}", "sideBarTitle.foreground": "{{ foreground }}",
"sideBarSectionHeader.background": "{{ bg }}", "sideBarSectionHeader.background": "{{ background }}",
"sideBarSectionHeader.foreground": "{{ fg }}", "sideBarSectionHeader.foreground": "{{ foreground }}",
"sideBarSectionHeader.border": "{{ muted }}40", "sideBarSectionHeader.border": "{{ muted }}40",
"minimap.findMatchHighlight": "{{ accent }}80", "minimap.findMatchHighlight": "{{ accent }}80",
"minimap.selectionHighlight": "{{ accent }}60", "minimap.selectionHighlight": "{{ accent }}60",
"minimap.errorHighlight": "{{ red }}", "minimap.errorHighlight": "{{ red }}",
"minimap.warningHighlight": "{{ yellow }}", "minimap.warningHighlight": "{{ yellow }}",
"minimap.background": "{{ bg }}", "minimap.background": "{{ background }}",
"minimap.selectionOccurrenceHighlight": "{{ accent }}40", "minimap.selectionOccurrenceHighlight": "{{ accent }}40",
"minimap.foregroundOpacity": "{{ bg }}c0", "minimap.foregroundOpacity": "{{ background }}c0",
"minimapSlider.background": "{{ muted }}20", "minimapSlider.background": "{{ muted }}20",
"minimapSlider.hoverBackground": "{{ muted }}40", "minimapSlider.hoverBackground": "{{ muted }}40",
"minimapSlider.activeBackground": "{{ muted }}60", "minimapSlider.activeBackground": "{{ muted }}60",
@@ -172,44 +172,44 @@
"editorGroup.border": "{{ muted }}40", "editorGroup.border": "{{ muted }}40",
"editorGroup.dropBackground": "{{ accent }}20", "editorGroup.dropBackground": "{{ accent }}20",
"editorGroup.dropIntoPromptForeground": "{{ fg }}", "editorGroup.dropIntoPromptForeground": "{{ foreground }}",
"editorGroup.dropIntoPromptBackground": "{{ bg }}", "editorGroup.dropIntoPromptBackground": "{{ background }}",
"editorGroup.dropIntoPromptBorder": "{{ accent }}", "editorGroup.dropIntoPromptBorder": "{{ accent }}",
"editorGroupHeader.noTabsBackground": "{{ bg }}", "editorGroupHeader.noTabsBackground": "{{ background }}",
"editorGroupHeader.tabsBackground": "{{ bg }}", "editorGroupHeader.tabsBackground": "{{ background }}",
"editorGroupHeader.tabsBorder": "{{ bg }}", "editorGroupHeader.tabsBorder": "{{ background }}",
"editorGroupHeader.border": "{{ bg }}", "editorGroupHeader.border": "{{ background }}",
"editorGroup.emptyBackground": "{{ bg }}", "editorGroup.emptyBackground": "{{ background }}",
"tab.activeBackground": "{{ bg }}", "tab.activeBackground": "{{ background }}",
"tab.unfocusedActiveBackground": "{{ bg }}", "tab.unfocusedActiveBackground": "{{ background }}",
"tab.activeForeground": "{{ fg }}", "tab.activeForeground": "{{ foreground }}",
"tab.activeBorder": "{{ accent }}", "tab.activeBorder": "{{ accent }}",
"tab.activeBorderTop": "{{ accent }}", "tab.activeBorderTop": "{{ accent }}",
"tab.unfocusedActiveBorder": "{{ muted }}", "tab.unfocusedActiveBorder": "{{ muted }}",
"tab.unfocusedActiveBorderTop": "{{ muted }}", "tab.unfocusedActiveBorderTop": "{{ muted }}",
"tab.border": "{{ bg }}", "tab.border": "{{ background }}",
"tab.inactiveBackground": "{{ bg }}", "tab.inactiveBackground": "{{ background }}",
"tab.inactiveForeground": "{{ muted }}", "tab.inactiveForeground": "{{ muted }}",
"tab.unfocusedActiveForeground": "{{ fg }}", "tab.unfocusedActiveForeground": "{{ foreground }}",
"tab.unfocusedInactiveForeground": "{{ muted }}", "tab.unfocusedInactiveForeground": "{{ muted }}",
"tab.hoverBackground": "{{ muted }}40", "tab.hoverBackground": "{{ muted }}40",
"tab.unfocusedHoverBackground": "{{ muted }}40", "tab.unfocusedHoverBackground": "{{ muted }}40",
"tab.hoverForeground": "{{ fg }}", "tab.hoverForeground": "{{ foreground }}",
"tab.hoverBorder": "{{ accent }}40", "tab.hoverBorder": "{{ accent }}40",
"tab.activeModifiedBorder": "{{ yellow }}", "tab.activeModifiedBorder": "{{ yellow }}",
"tab.inactiveModifiedBorder": "{{ yellow }}80", "tab.inactiveModifiedBorder": "{{ yellow }}80",
"tab.unfocusedActiveModifiedBorder": "{{ yellow }}80", "tab.unfocusedActiveModifiedBorder": "{{ yellow }}80",
"tab.unfocusedInactiveModifiedBorder": "{{ yellow }}60", "tab.unfocusedInactiveModifiedBorder": "{{ yellow }}60",
"tab.lastPinnedBorder": "{{ muted }}", "tab.lastPinnedBorder": "{{ muted }}",
"editorPane.background": "{{ bg }}", "editorPane.background": "{{ background }}",
"editor.background": "{{ bg }}", "editor.background": "{{ background }}",
"editor.foreground": "{{ fg }}", "editor.foreground": "{{ foreground }}",
"editorLineNumber.foreground": "{{ muted }}", "editorLineNumber.foreground": "{{ muted }}",
"editorLineNumber.activeForeground": "{{ fg }}", "editorLineNumber.activeForeground": "{{ foreground }}",
"editorLineNumber.dimmedForeground": "{{ muted }}80", "editorLineNumber.dimmedForeground": "{{ muted }}80",
"editorCursor.background": "{{ bg }}", "editorCursor.background": "{{ background }}",
"editorCursor.foreground": "{{ bright_fg }}", "editorCursor.foreground": "{{ bright_foreground }}",
"editor.selectionBackground": "{{ selection_background }}60", "editor.selectionBackground": "{{ selection_background }}60",
"editor.selectionForeground": "{{ selection_foreground }}", "editor.selectionForeground": "{{ selection_foreground }}",
"editor.inactiveSelectionBackground": "{{ selection_background }}30", "editor.inactiveSelectionBackground": "{{ selection_background }}30",
@@ -230,8 +230,8 @@
"searchEditor.findMatchBackground": "{{ yellow }}40", "searchEditor.findMatchBackground": "{{ yellow }}40",
"searchEditor.findMatchBorder": "{{ yellow }}", "searchEditor.findMatchBorder": "{{ yellow }}",
"editor.hoverHighlightBackground": "{{ accent }}20", "editor.hoverHighlightBackground": "{{ accent }}20",
"editor.lineHighlightBackground": "{{ bg }}60", "editor.lineHighlightBackground": "{{ background }}60",
"editor.lineHighlightBorder": "{{ bg }}00", "editor.lineHighlightBorder": "{{ background }}00",
"editorLink.activeForeground": "{{ blue }}", "editorLink.activeForeground": "{{ blue }}",
"editor.rangeHighlightBackground": "{{ accent }}10", "editor.rangeHighlightBackground": "{{ accent }}10",
"editor.rangeHighlightBorder": "{{ accent }}20", "editor.rangeHighlightBorder": "{{ accent }}20",
@@ -282,7 +282,7 @@
"editorBracketPairGuide.background4": "{{ cyan }}30", "editorBracketPairGuide.background4": "{{ cyan }}30",
"editorBracketPairGuide.background5": "{{ magenta }}30", "editorBracketPairGuide.background5": "{{ magenta }}30",
"editorBracketPairGuide.background6": "{{ orange }}30", "editorBracketPairGuide.background6": "{{ orange }}30",
"editorOverviewRuler.background": "{{ bg }}", "editorOverviewRuler.background": "{{ background }}",
"editorOverviewRuler.border": "{{ muted }}20", "editorOverviewRuler.border": "{{ muted }}20",
"editorOverviewRuler.findMatchForeground": "{{ yellow }}80", "editorOverviewRuler.findMatchForeground": "{{ yellow }}80",
"editorOverviewRuler.rangeHighlightForeground": "{{ accent }}60", "editorOverviewRuler.rangeHighlightForeground": "{{ accent }}60",
@@ -311,9 +311,9 @@
"problemsErrorIcon.foreground": "{{ red }}", "problemsErrorIcon.foreground": "{{ red }}",
"problemsWarningIcon.foreground": "{{ yellow }}", "problemsWarningIcon.foreground": "{{ yellow }}",
"problemsInfoIcon.foreground": "{{ blue }}", "problemsInfoIcon.foreground": "{{ blue }}",
"editorUnnecessaryCode.opacity": "{{ bg }}80", "editorUnnecessaryCode.opacity": "{{ background }}80",
"editorUnnecessaryCode.border": "{{ muted }}", "editorUnnecessaryCode.border": "{{ muted }}",
"editorGutter.background": "{{ bg }}", "editorGutter.background": "{{ background }}",
"editorGutter.modifiedBackground": "{{ orange }}", "editorGutter.modifiedBackground": "{{ orange }}",
"editorGutter.addedBackground": "{{ green }}", "editorGutter.addedBackground": "{{ green }}",
"editorGutter.deletedBackground": "{{ red }}", "editorGutter.deletedBackground": "{{ red }}",
@@ -337,38 +337,38 @@
"diffEditorOverview.insertedForeground": "{{ green }}80", "diffEditorOverview.insertedForeground": "{{ green }}80",
"diffEditorOverview.removedForeground": "{{ red }}80", "diffEditorOverview.removedForeground": "{{ red }}80",
"diffEditor.diagonalFill": "{{ muted }}30", "diffEditor.diagonalFill": "{{ muted }}30",
"diffEditor.unchangedRegionBackground": "{{ bg }}", "diffEditor.unchangedRegionBackground": "{{ background }}",
"diffEditor.unchangedRegionForeground": "{{ muted }}", "diffEditor.unchangedRegionForeground": "{{ muted }}",
"diffEditor.unchangedCodeBackground": "{{ bg }}40", "diffEditor.unchangedCodeBackground": "{{ background }}40",
"diffEditor.move.border": "{{ cyan }}80", "diffEditor.move.border": "{{ cyan }}80",
"diffEditor.moveActive.border": "{{ cyan }}", "diffEditor.moveActive.border": "{{ cyan }}",
"editorWidget.foreground": "{{ fg }}", "editorWidget.foreground": "{{ foreground }}",
"editorWidget.background": "{{ bg }}", "editorWidget.background": "{{ background }}",
"editorWidget.border": "{{ muted }}", "editorWidget.border": "{{ muted }}",
"editorWidget.resizeBorder": "{{ accent }}", "editorWidget.resizeBorder": "{{ accent }}",
"editorSuggestWidget.background": "{{ bg }}", "editorSuggestWidget.background": "{{ background }}",
"editorSuggestWidget.border": "{{ muted }}", "editorSuggestWidget.border": "{{ muted }}",
"editorSuggestWidget.foreground": "{{ fg }}", "editorSuggestWidget.foreground": "{{ foreground }}",
"editorSuggestWidget.focusHighlightForeground": "{{ accent }}", "editorSuggestWidget.focusHighlightForeground": "{{ accent }}",
"editorSuggestWidget.highlightForeground": "{{ accent }}", "editorSuggestWidget.highlightForeground": "{{ accent }}",
"editorSuggestWidget.selectedBackground": "{{ accent }}30", "editorSuggestWidget.selectedBackground": "{{ accent }}30",
"editorSuggestWidget.selectedForeground": "{{ fg }}", "editorSuggestWidget.selectedForeground": "{{ foreground }}",
"editorSuggestWidget.selectedIconForeground": "{{ fg }}", "editorSuggestWidget.selectedIconForeground": "{{ foreground }}",
"editorSuggestWidgetStatus.foreground": "{{ muted }}", "editorSuggestWidgetStatus.foreground": "{{ muted }}",
"editorHoverWidget.foreground": "{{ fg }}", "editorHoverWidget.foreground": "{{ foreground }}",
"editorHoverWidget.background": "{{ bg }}", "editorHoverWidget.background": "{{ background }}",
"editorHoverWidget.border": "{{ muted }}", "editorHoverWidget.border": "{{ muted }}",
"editorHoverWidget.highlightForeground": "{{ accent }}", "editorHoverWidget.highlightForeground": "{{ accent }}",
"editorHoverWidget.statusBarBackground": "{{ muted }}30", "editorHoverWidget.statusBarBackground": "{{ muted }}30",
"editorGhostText.foreground": "{{ muted }}", "editorGhostText.foreground": "{{ muted }}",
"editorGhostText.background": "{{ muted }}10", "editorGhostText.background": "{{ muted }}10",
"editorGhostText.border": "{{ muted }}00", "editorGhostText.border": "{{ muted }}00",
"editorStickyScroll.background": "{{ bg }}", "editorStickyScroll.background": "{{ background }}",
"editorStickyScrollHover.background": "{{ muted }}40", "editorStickyScrollHover.background": "{{ muted }}40",
"debugExceptionWidget.background": "{{ red }}20", "debugExceptionWidget.background": "{{ red }}20",
"debugExceptionWidget.border": "{{ red }}", "debugExceptionWidget.border": "{{ red }}",
"editorMarkerNavigation.background": "{{ bg }}", "editorMarkerNavigation.background": "{{ background }}",
"editorMarkerNavigationError.background": "{{ red }}20", "editorMarkerNavigationError.background": "{{ red }}20",
"editorMarkerNavigationError.headerBackground": "{{ red }}15", "editorMarkerNavigationError.headerBackground": "{{ red }}15",
"editorMarkerNavigationWarning.background": "{{ yellow }}20", "editorMarkerNavigationWarning.background": "{{ yellow }}20",
@@ -377,19 +377,19 @@
"editorMarkerNavigationInfo.headerBackground": "{{ blue }}15", "editorMarkerNavigationInfo.headerBackground": "{{ blue }}15",
"peekView.border": "{{ accent }}", "peekView.border": "{{ accent }}",
"peekViewEditor.background": "{{ bg }}", "peekViewEditor.background": "{{ background }}",
"peekViewEditorGutter.background": "{{ bg }}", "peekViewEditorGutter.background": "{{ background }}",
"peekViewEditor.matchHighlightBackground": "{{ yellow }}30", "peekViewEditor.matchHighlightBackground": "{{ yellow }}30",
"peekViewEditor.matchHighlightBorder": "{{ yellow }}", "peekViewEditor.matchHighlightBorder": "{{ yellow }}",
"peekViewResult.background": "{{ bg }}", "peekViewResult.background": "{{ background }}",
"peekViewResult.fileForeground": "{{ fg }}", "peekViewResult.fileForeground": "{{ foreground }}",
"peekViewResult.lineForeground": "{{ muted }}", "peekViewResult.lineForeground": "{{ muted }}",
"peekViewResult.matchHighlightBackground": "{{ yellow }}30", "peekViewResult.matchHighlightBackground": "{{ yellow }}30",
"peekViewResult.selectionBackground": "{{ accent }}30", "peekViewResult.selectionBackground": "{{ accent }}30",
"peekViewResult.selectionForeground": "{{ fg }}", "peekViewResult.selectionForeground": "{{ foreground }}",
"peekViewTitle.background": "{{ bg }}", "peekViewTitle.background": "{{ background }}",
"peekViewTitleDescription.foreground": "{{ muted }}", "peekViewTitleDescription.foreground": "{{ muted }}",
"peekViewTitleLabel.foreground": "{{ fg }}", "peekViewTitleLabel.foreground": "{{ foreground }}",
"merge.currentContentBackground": "{{ cyan }}20", "merge.currentContentBackground": "{{ cyan }}20",
"merge.currentHeaderBackground": "{{ cyan }}40", "merge.currentHeaderBackground": "{{ cyan }}40",
@@ -411,70 +411,70 @@
"mergeEditor.changeBase.background": "{{ muted }}20", "mergeEditor.changeBase.background": "{{ muted }}20",
"mergeEditor.changeBase.word.background": "{{ muted }}40", "mergeEditor.changeBase.word.background": "{{ muted }}40",
"panel.background": "{{ bg }}", "panel.background": "{{ background }}",
"panel.border": "{{ muted }}40", "panel.border": "{{ muted }}40",
"panel.dropBorder": "{{ accent }}", "panel.dropBorder": "{{ accent }}",
"panelTitle.activeBorder": "{{ accent }}", "panelTitle.activeBorder": "{{ accent }}",
"panelTitle.activeForeground": "{{ fg }}", "panelTitle.activeForeground": "{{ foreground }}",
"panelTitle.inactiveForeground": "{{ muted }}", "panelTitle.inactiveForeground": "{{ muted }}",
"panelInput.border": "{{ muted }}", "panelInput.border": "{{ muted }}",
"panelSection.border": "{{ muted }}40", "panelSection.border": "{{ muted }}40",
"panelSection.dropBackground": "{{ accent }}20", "panelSection.dropBackground": "{{ accent }}20",
"panelSectionHeader.background": "{{ bg }}", "panelSectionHeader.background": "{{ background }}",
"panelSectionHeader.foreground": "{{ fg }}", "panelSectionHeader.foreground": "{{ foreground }}",
"panelSectionHeader.border": "{{ muted }}40", "panelSectionHeader.border": "{{ muted }}40",
"outputView.background": "{{ bg }}", "outputView.background": "{{ background }}",
"outputViewStickyScroll.background": "{{ bg }}", "outputViewStickyScroll.background": "{{ background }}",
"statusBar.background": "{{ bg }}", "statusBar.background": "{{ background }}",
"statusBar.foreground": "{{ fg }}", "statusBar.foreground": "{{ foreground }}",
"statusBar.border": "{{ bg }}", "statusBar.border": "{{ background }}",
"statusBar.debuggingBackground": "{{ yellow }}", "statusBar.debuggingBackground": "{{ yellow }}",
"statusBar.debuggingForeground": "{{ bg }}", "statusBar.debuggingForeground": "{{ background }}",
"statusBar.debuggingBorder": "{{ yellow }}", "statusBar.debuggingBorder": "{{ yellow }}",
"statusBar.noFolderBackground": "{{ bg }}", "statusBar.noFolderBackground": "{{ background }}",
"statusBar.noFolderForeground": "{{ fg }}", "statusBar.noFolderForeground": "{{ foreground }}",
"statusBar.noFolderBorder": "{{ bg }}", "statusBar.noFolderBorder": "{{ background }}",
"statusBar.focusBorder": "{{ accent }}", "statusBar.focusBorder": "{{ accent }}",
"statusBarItem.activeBackground": "{{ muted }}", "statusBarItem.activeBackground": "{{ muted }}",
"statusBarItem.hoverBackground": "{{ muted }}60", "statusBarItem.hoverBackground": "{{ muted }}60",
"statusBarItem.hoverForeground": "{{ fg }}", "statusBarItem.hoverForeground": "{{ foreground }}",
"statusBarItem.prominentForeground": "{{ fg }}", "statusBarItem.prominentForeground": "{{ foreground }}",
"statusBarItem.prominentBackground": "{{ accent }}", "statusBarItem.prominentBackground": "{{ accent }}",
"statusBarItem.prominentHoverBackground": "{{ accent }}80", "statusBarItem.prominentHoverBackground": "{{ accent }}80",
"statusBarItem.remoteBackground": "{{ accent }}", "statusBarItem.remoteBackground": "{{ accent }}",
"statusBarItem.remoteForeground": "{{ bg }}", "statusBarItem.remoteForeground": "{{ background }}",
"statusBarItem.remoteHoverBackground": "{{ accent }}80", "statusBarItem.remoteHoverBackground": "{{ accent }}80",
"statusBarItem.errorBackground": "{{ red }}", "statusBarItem.errorBackground": "{{ red }}",
"statusBarItem.errorForeground": "{{ bg }}", "statusBarItem.errorForeground": "{{ background }}",
"statusBarItem.errorHoverBackground": "{{ red }}80", "statusBarItem.errorHoverBackground": "{{ red }}80",
"statusBarItem.warningBackground": "{{ yellow }}", "statusBarItem.warningBackground": "{{ yellow }}",
"statusBarItem.warningForeground": "{{ bg }}", "statusBarItem.warningForeground": "{{ background }}",
"statusBarItem.warningHoverBackground": "{{ yellow }}80", "statusBarItem.warningHoverBackground": "{{ yellow }}80",
"statusBarItem.compactHoverBackground": "{{ muted }}", "statusBarItem.compactHoverBackground": "{{ muted }}",
"statusBarItem.focusBorder": "{{ accent }}", "statusBarItem.focusBorder": "{{ accent }}",
"titleBar.activeBackground": "{{ bg }}", "titleBar.activeBackground": "{{ background }}",
"titleBar.activeForeground": "{{ fg }}", "titleBar.activeForeground": "{{ foreground }}",
"titleBar.inactiveBackground": "{{ bg }}", "titleBar.inactiveBackground": "{{ background }}",
"titleBar.inactiveForeground": "{{ muted }}", "titleBar.inactiveForeground": "{{ muted }}",
"titleBar.border": "{{ bg }}", "titleBar.border": "{{ background }}",
"menubar.selectionForeground": "{{ fg }}", "menubar.selectionForeground": "{{ foreground }}",
"menubar.selectionBackground": "{{ accent }}30", "menubar.selectionBackground": "{{ accent }}30",
"menubar.selectionBorder": "{{ accent }}00", "menubar.selectionBorder": "{{ accent }}00",
"menu.foreground": "{{ fg }}", "menu.foreground": "{{ foreground }}",
"menu.background": "{{ bg }}", "menu.background": "{{ background }}",
"menu.selectionForeground": "{{ fg }}", "menu.selectionForeground": "{{ foreground }}",
"menu.selectionBackground": "{{ accent }}30", "menu.selectionBackground": "{{ accent }}30",
"menu.selectionBorder": "{{ accent }}00", "menu.selectionBorder": "{{ accent }}00",
"menu.separatorBackground": "{{ muted }}", "menu.separatorBackground": "{{ muted }}",
"menu.border": "{{ muted }}", "menu.border": "{{ muted }}",
"commandCenter.foreground": "{{ fg }}", "commandCenter.foreground": "{{ foreground }}",
"commandCenter.activeForeground": "{{ fg }}", "commandCenter.activeForeground": "{{ foreground }}",
"commandCenter.background": "{{ bg }}", "commandCenter.background": "{{ background }}",
"commandCenter.activeBackground": "{{ muted }}", "commandCenter.activeBackground": "{{ muted }}",
"commandCenter.border": "{{ muted }}", "commandCenter.border": "{{ muted }}",
"commandCenter.inactiveForeground": "{{ muted }}", "commandCenter.inactiveForeground": "{{ muted }}",
@@ -483,11 +483,11 @@
"commandCenter.debuggingBackground": "{{ yellow }}20", "commandCenter.debuggingBackground": "{{ yellow }}20",
"notificationCenter.border": "{{ muted }}", "notificationCenter.border": "{{ muted }}",
"notificationCenterHeader.foreground": "{{ fg }}", "notificationCenterHeader.foreground": "{{ foreground }}",
"notificationCenterHeader.background": "{{ bg }}", "notificationCenterHeader.background": "{{ background }}",
"notificationToast.border": "{{ muted }}", "notificationToast.border": "{{ muted }}",
"notifications.foreground": "{{ fg }}", "notifications.foreground": "{{ foreground }}",
"notifications.background": "{{ bg }}", "notifications.background": "{{ background }}",
"notifications.border": "{{ muted }}", "notifications.border": "{{ muted }}",
"notificationLink.foreground": "{{ accent }}", "notificationLink.foreground": "{{ accent }}",
"notificationsErrorIcon.foreground": "{{ red }}", "notificationsErrorIcon.foreground": "{{ red }}",
@@ -495,18 +495,18 @@
"notificationsInfoIcon.foreground": "{{ blue }}", "notificationsInfoIcon.foreground": "{{ blue }}",
"banner.background": "{{ accent }}20", "banner.background": "{{ accent }}20",
"banner.foreground": "{{ fg }}", "banner.foreground": "{{ foreground }}",
"banner.iconForeground": "{{ accent }}", "banner.iconForeground": "{{ accent }}",
"extensionButton.prominentBackground": "{{ accent }}", "extensionButton.prominentBackground": "{{ accent }}",
"extensionButton.prominentForeground": "{{ bg }}", "extensionButton.prominentForeground": "{{ background }}",
"extensionButton.prominentHoverBackground": "{{ accent }}80", "extensionButton.prominentHoverBackground": "{{ accent }}80",
"extensionButton.background": "{{ muted }}", "extensionButton.background": "{{ muted }}",
"extensionButton.foreground": "{{ fg }}", "extensionButton.foreground": "{{ foreground }}",
"extensionButton.hoverBackground": "{{ muted }}80", "extensionButton.hoverBackground": "{{ muted }}80",
"extensionButton.separator": "{{ bg }}", "extensionButton.separator": "{{ background }}",
"extensionBadge.remoteBackground": "{{ accent }}", "extensionBadge.remoteBackground": "{{ accent }}",
"extensionBadge.remoteForeground": "{{ bg }}", "extensionBadge.remoteForeground": "{{ background }}",
"extensionIcon.starForeground": "{{ yellow }}", "extensionIcon.starForeground": "{{ yellow }}",
"extensionIcon.verifiedForeground": "{{ cyan }}", "extensionIcon.verifiedForeground": "{{ cyan }}",
"extensionIcon.preReleaseForeground": "{{ yellow }}", "extensionIcon.preReleaseForeground": "{{ yellow }}",
@@ -514,22 +514,22 @@
"pickerGroup.border": "{{ muted }}", "pickerGroup.border": "{{ muted }}",
"pickerGroup.foreground": "{{ accent }}", "pickerGroup.foreground": "{{ accent }}",
"quickInput.background": "{{ bg }}", "quickInput.background": "{{ background }}",
"quickInput.foreground": "{{ fg }}", "quickInput.foreground": "{{ foreground }}",
"quickInputList.focusBackground": "{{ accent }}30", "quickInputList.focusBackground": "{{ accent }}30",
"quickInputList.focusForeground": "{{ fg }}", "quickInputList.focusForeground": "{{ foreground }}",
"quickInputList.focusIconForeground": "{{ fg }}", "quickInputList.focusIconForeground": "{{ foreground }}",
"quickInputTitle.background": "{{ bg }}", "quickInputTitle.background": "{{ background }}",
"keybindingLabel.background": "{{ muted }}40", "keybindingLabel.background": "{{ muted }}40",
"keybindingLabel.foreground": "{{ fg }}", "keybindingLabel.foreground": "{{ foreground }}",
"keybindingLabel.border": "{{ muted }}", "keybindingLabel.border": "{{ muted }}",
"keybindingLabel.bottomBorder": "{{ muted }}", "keybindingLabel.bottomBorder": "{{ muted }}",
"keybindingTable.headerBackground": "{{ bg }}", "keybindingTable.headerBackground": "{{ background }}",
"keybindingTable.rowsBackground": "{{ bg }}40", "keybindingTable.rowsBackground": "{{ background }}40",
"terminal.background": "{{ bg }}", "terminal.background": "{{ background }}",
"terminal.foreground": "{{ fg }}", "terminal.foreground": "{{ foreground }}",
"terminal.border": "{{ muted }}40", "terminal.border": "{{ muted }}40",
"terminal.selectionBackground": "{{ selection_background }}60", "terminal.selectionBackground": "{{ selection_background }}60",
"terminal.selectionForeground": "{{ selection_foreground }}", "terminal.selectionForeground": "{{ selection_foreground }}",
@@ -539,16 +539,16 @@
"terminal.findMatchHighlightBackground": "{{ yellow }}25", "terminal.findMatchHighlightBackground": "{{ yellow }}25",
"terminal.findMatchHighlightBorder": "{{ yellow }}60", "terminal.findMatchHighlightBorder": "{{ yellow }}60",
"terminal.hoverHighlightBackground": "{{ accent }}20", "terminal.hoverHighlightBackground": "{{ accent }}20",
"terminalCursor.background": "{{ bg }}", "terminalCursor.background": "{{ background }}",
"terminalCursor.foreground": "{{ bright_fg }}", "terminalCursor.foreground": "{{ bright_foreground }}",
"terminal.ansiBlack": "{{ bg }}", "terminal.ansiBlack": "{{ background }}",
"terminal.ansiRed": "{{ red }}", "terminal.ansiRed": "{{ red }}",
"terminal.ansiGreen": "{{ green }}", "terminal.ansiGreen": "{{ green }}",
"terminal.ansiYellow": "{{ yellow }}", "terminal.ansiYellow": "{{ yellow }}",
"terminal.ansiBlue": "{{ blue }}", "terminal.ansiBlue": "{{ blue }}",
"terminal.ansiMagenta": "{{ magenta }}", "terminal.ansiMagenta": "{{ magenta }}",
"terminal.ansiCyan": "{{ cyan }}", "terminal.ansiCyan": "{{ cyan }}",
"terminal.ansiWhite": "{{ fg }}", "terminal.ansiWhite": "{{ foreground }}",
"terminal.ansiBrightBlack": "{{ muted }}", "terminal.ansiBrightBlack": "{{ muted }}",
"terminal.ansiBrightRed": "{{ bright_red }}", "terminal.ansiBrightRed": "{{ bright_red }}",
"terminal.ansiBrightGreen": "{{ bright_green }}", "terminal.ansiBrightGreen": "{{ bright_green }}",
@@ -556,25 +556,25 @@
"terminal.ansiBrightBlue": "{{ bright_blue }}", "terminal.ansiBrightBlue": "{{ bright_blue }}",
"terminal.ansiBrightMagenta": "{{ bright_magenta }}", "terminal.ansiBrightMagenta": "{{ bright_magenta }}",
"terminal.ansiBrightCyan": "{{ bright_cyan }}", "terminal.ansiBrightCyan": "{{ bright_cyan }}",
"terminal.ansiBrightWhite": "{{ bright_fg }}", "terminal.ansiBrightWhite": "{{ bright_foreground }}",
"terminal.tab.activeBorder": "{{ accent }}", "terminal.tab.activeBorder": "{{ accent }}",
"terminalCommandDecoration.defaultBackground": "{{ muted }}", "terminalCommandDecoration.defaultBackground": "{{ muted }}",
"terminalCommandDecoration.successBackground": "{{ green }}", "terminalCommandDecoration.successBackground": "{{ green }}",
"terminalCommandDecoration.errorBackground": "{{ red }}", "terminalCommandDecoration.errorBackground": "{{ red }}",
"terminalOverviewRuler.cursorForeground": "{{ bright_fg }}", "terminalOverviewRuler.cursorForeground": "{{ bright_foreground }}",
"terminalOverviewRuler.findMatchForeground": "{{ yellow }}", "terminalOverviewRuler.findMatchForeground": "{{ yellow }}",
"terminalStickyScroll.background": "{{ bg }}", "terminalStickyScroll.background": "{{ background }}",
"terminalStickyScrollHover.background": "{{ muted }}40", "terminalStickyScrollHover.background": "{{ muted }}40",
"debugToolBar.background": "{{ bg }}", "debugToolBar.background": "{{ background }}",
"debugToolBar.border": "{{ muted }}", "debugToolBar.border": "{{ muted }}",
"debugView.stateLabelForeground": "{{ fg }}", "debugView.stateLabelForeground": "{{ foreground }}",
"debugView.stateLabelBackground": "{{ accent }}30", "debugView.stateLabelBackground": "{{ accent }}30",
"debugView.valueChangedHighlight": "{{ cyan }}40", "debugView.valueChangedHighlight": "{{ cyan }}40",
"debugView.exceptionLabelForeground": "{{ bg }}", "debugView.exceptionLabelForeground": "{{ background }}",
"debugView.exceptionLabelBackground": "{{ red }}", "debugView.exceptionLabelBackground": "{{ red }}",
"debugTokenExpression.name": "{{ magenta }}", "debugTokenExpression.name": "{{ magenta }}",
"debugTokenExpression.value": "{{ fg }}", "debugTokenExpression.value": "{{ foreground }}",
"debugTokenExpression.string": "{{ green }}", "debugTokenExpression.string": "{{ green }}",
"debugTokenExpression.boolean": "{{ orange }}", "debugTokenExpression.boolean": "{{ orange }}",
"debugTokenExpression.number": "{{ orange }}", "debugTokenExpression.number": "{{ orange }}",
@@ -588,20 +588,20 @@
"testing.iconUnset": "{{ muted }}", "testing.iconUnset": "{{ muted }}",
"testing.iconSkipped": "{{ yellow }}", "testing.iconSkipped": "{{ yellow }}",
"testing.peekBorder": "{{ accent }}", "testing.peekBorder": "{{ accent }}",
"testing.peekHeaderBackground": "{{ bg }}", "testing.peekHeaderBackground": "{{ background }}",
"testing.message.error.decorationForeground": "{{ red }}", "testing.message.error.decorationForeground": "{{ red }}",
"testing.message.error.lineBackground": "{{ red }}15", "testing.message.error.lineBackground": "{{ red }}15",
"testing.message.info.decorationForeground": "{{ blue }}", "testing.message.info.decorationForeground": "{{ blue }}",
"testing.message.info.lineBackground": "{{ blue }}15", "testing.message.info.lineBackground": "{{ blue }}15",
"welcomePage.background": "{{ bg }}", "welcomePage.background": "{{ background }}",
"welcomePage.tileBackground": "{{ bg }}", "welcomePage.tileBackground": "{{ background }}",
"welcomePage.tileHoverBackground": "{{ muted }}40", "welcomePage.tileHoverBackground": "{{ muted }}40",
"welcomePage.tileBorder": "{{ muted }}", "welcomePage.tileBorder": "{{ muted }}",
"welcomePage.progress.background": "{{ muted }}", "welcomePage.progress.background": "{{ muted }}",
"welcomePage.progress.foreground": "{{ accent }}", "welcomePage.progress.foreground": "{{ accent }}",
"walkThrough.embeddedEditorBackground": "{{ bg }}", "walkThrough.embeddedEditorBackground": "{{ background }}",
"walkthrough.stepTitle.foreground": "{{ fg }}", "walkthrough.stepTitle.foreground": "{{ foreground }}",
"gitDecoration.addedResourceForeground": "{{ green }}", "gitDecoration.addedResourceForeground": "{{ green }}",
"gitDecoration.modifiedResourceForeground": "{{ orange }}", "gitDecoration.modifiedResourceForeground": "{{ orange }}",
@@ -614,21 +614,21 @@
"gitDecoration.conflictingResourceForeground": "{{ yellow }}", "gitDecoration.conflictingResourceForeground": "{{ yellow }}",
"gitDecoration.submoduleResourceForeground": "{{ magenta }}", "gitDecoration.submoduleResourceForeground": "{{ magenta }}",
"settings.headerForeground": "{{ fg }}", "settings.headerForeground": "{{ foreground }}",
"settings.modifiedItemIndicator": "{{ accent }}", "settings.modifiedItemIndicator": "{{ accent }}",
"settings.dropdownBackground": "{{ bg }}", "settings.dropdownBackground": "{{ background }}",
"settings.dropdownForeground": "{{ fg }}", "settings.dropdownForeground": "{{ foreground }}",
"settings.dropdownBorder": "{{ muted }}", "settings.dropdownBorder": "{{ muted }}",
"settings.dropdownListBorder": "{{ muted }}", "settings.dropdownListBorder": "{{ muted }}",
"settings.checkboxBackground": "{{ bg }}", "settings.checkboxBackground": "{{ background }}",
"settings.checkboxForeground": "{{ fg }}", "settings.checkboxForeground": "{{ foreground }}",
"settings.checkboxBorder": "{{ muted }}", "settings.checkboxBorder": "{{ muted }}",
"settings.rowHoverBackground": "{{ bg }}", "settings.rowHoverBackground": "{{ background }}",
"settings.textInputBackground": "{{ bg }}", "settings.textInputBackground": "{{ background }}",
"settings.textInputForeground": "{{ fg }}", "settings.textInputForeground": "{{ foreground }}",
"settings.textInputBorder": "{{ muted }}", "settings.textInputBorder": "{{ muted }}",
"settings.numberInputBackground": "{{ bg }}", "settings.numberInputBackground": "{{ background }}",
"settings.numberInputForeground": "{{ fg }}", "settings.numberInputForeground": "{{ foreground }}",
"settings.numberInputBorder": "{{ muted }}", "settings.numberInputBorder": "{{ muted }}",
"settings.focusedRowBackground": "{{ accent }}10", "settings.focusedRowBackground": "{{ accent }}10",
"settings.focusedRowBorder": "{{ accent }}40", "settings.focusedRowBorder": "{{ accent }}40",
@@ -637,10 +637,10 @@
"settings.settingsHeaderHoverForeground": "{{ accent }}", "settings.settingsHeaderHoverForeground": "{{ accent }}",
"breadcrumb.foreground": "{{ muted }}", "breadcrumb.foreground": "{{ muted }}",
"breadcrumb.background": "{{ bg }}", "breadcrumb.background": "{{ background }}",
"breadcrumb.focusForeground": "{{ fg }}", "breadcrumb.focusForeground": "{{ foreground }}",
"breadcrumb.activeSelectionForeground": "{{ fg }}", "breadcrumb.activeSelectionForeground": "{{ foreground }}",
"breadcrumbPicker.background": "{{ bg }}", "breadcrumbPicker.background": "{{ background }}",
"editor.snippetTabstopHighlightBackground": "{{ accent }}20", "editor.snippetTabstopHighlightBackground": "{{ accent }}20",
"editor.snippetTabstopHighlightBorder": "{{ accent }}40", "editor.snippetTabstopHighlightBorder": "{{ accent }}40",
@@ -656,9 +656,9 @@
"symbolIcon.enumeratorForeground": "{{ yellow }}", "symbolIcon.enumeratorForeground": "{{ yellow }}",
"symbolIcon.enumeratorMemberForeground": "{{ orange }}", "symbolIcon.enumeratorMemberForeground": "{{ orange }}",
"symbolIcon.eventForeground": "{{ yellow }}", "symbolIcon.eventForeground": "{{ yellow }}",
"symbolIcon.fieldForeground": "{{ fg }}", "symbolIcon.fieldForeground": "{{ foreground }}",
"symbolIcon.fileForeground": "{{ fg }}", "symbolIcon.fileForeground": "{{ foreground }}",
"symbolIcon.folderForeground": "{{ fg }}", "symbolIcon.folderForeground": "{{ foreground }}",
"symbolIcon.functionForeground": "{{ blue }}", "symbolIcon.functionForeground": "{{ blue }}",
"symbolIcon.interfaceForeground": "{{ yellow }}", "symbolIcon.interfaceForeground": "{{ yellow }}",
"symbolIcon.keyForeground": "{{ bright_magenta }}", "symbolIcon.keyForeground": "{{ bright_magenta }}",
@@ -671,12 +671,12 @@
"symbolIcon.objectForeground": "{{ yellow }}", "symbolIcon.objectForeground": "{{ yellow }}",
"symbolIcon.operatorForeground": "{{ bright_blue }}", "symbolIcon.operatorForeground": "{{ bright_blue }}",
"symbolIcon.packageForeground": "{{ yellow }}", "symbolIcon.packageForeground": "{{ yellow }}",
"symbolIcon.propertyForeground": "{{ fg }}", "symbolIcon.propertyForeground": "{{ foreground }}",
"symbolIcon.referenceForeground": "{{ bright_magenta }}", "symbolIcon.referenceForeground": "{{ bright_magenta }}",
"symbolIcon.snippetForeground": "{{ green }}", "symbolIcon.snippetForeground": "{{ green }}",
"symbolIcon.stringForeground": "{{ green }}", "symbolIcon.stringForeground": "{{ green }}",
"symbolIcon.structForeground": "{{ yellow }}", "symbolIcon.structForeground": "{{ yellow }}",
"symbolIcon.textForeground": "{{ fg }}", "symbolIcon.textForeground": "{{ foreground }}",
"symbolIcon.typeParameterForeground": "{{ yellow }}", "symbolIcon.typeParameterForeground": "{{ yellow }}",
"symbolIcon.unitForeground": "{{ orange }}", "symbolIcon.unitForeground": "{{ orange }}",
"symbolIcon.variableForeground": "{{ bright_magenta }}", "symbolIcon.variableForeground": "{{ bright_magenta }}",
@@ -699,22 +699,22 @@
"debugConsole.infoForeground": "{{ blue }}", "debugConsole.infoForeground": "{{ blue }}",
"debugConsole.warningForeground": "{{ yellow }}", "debugConsole.warningForeground": "{{ yellow }}",
"debugConsole.errorForeground": "{{ red }}", "debugConsole.errorForeground": "{{ red }}",
"debugConsole.sourceForeground": "{{ fg }}", "debugConsole.sourceForeground": "{{ foreground }}",
"debugConsoleInputIcon.foreground": "{{ accent }}", "debugConsoleInputIcon.foreground": "{{ accent }}",
"notebook.editorBackground": "{{ bg }}", "notebook.editorBackground": "{{ background }}",
"notebook.cellBorderColor": "{{ muted }}40", "notebook.cellBorderColor": "{{ muted }}40",
"notebook.cellHoverBackground": "{{ bg }}40", "notebook.cellHoverBackground": "{{ background }}40",
"notebook.cellInsertionIndicator": "{{ accent }}", "notebook.cellInsertionIndicator": "{{ accent }}",
"notebook.cellStatusBarItemHoverBackground": "{{ muted }}", "notebook.cellStatusBarItemHoverBackground": "{{ muted }}",
"notebook.cellToolbarSeparator": "{{ muted }}", "notebook.cellToolbarSeparator": "{{ muted }}",
"notebook.cellEditorBackground": "{{ bg }}", "notebook.cellEditorBackground": "{{ background }}",
"notebook.focusedCellBackground": "{{ bg }}60", "notebook.focusedCellBackground": "{{ background }}60",
"notebook.focusedCellBorder": "{{ accent }}", "notebook.focusedCellBorder": "{{ accent }}",
"notebook.focusedEditorBorder": "{{ accent }}", "notebook.focusedEditorBorder": "{{ accent }}",
"notebook.inactiveFocusedCellBorder": "{{ muted }}", "notebook.inactiveFocusedCellBorder": "{{ muted }}",
"notebook.inactiveSelectedCellBorder": "{{ muted }}", "notebook.inactiveSelectedCellBorder": "{{ muted }}",
"notebook.outputContainerBackgroundColor": "{{ bg }}", "notebook.outputContainerBackgroundColor": "{{ background }}",
"notebook.outputContainerBorderColor": "{{ muted }}40", "notebook.outputContainerBorderColor": "{{ muted }}40",
"notebook.selectedCellBackground": "{{ accent }}15", "notebook.selectedCellBackground": "{{ accent }}15",
"notebook.selectedCellBorder": "{{ accent }}40", "notebook.selectedCellBorder": "{{ accent }}40",
@@ -724,7 +724,7 @@
"notebookStatusSuccessIcon.foreground": "{{ green }}", "notebookStatusSuccessIcon.foreground": "{{ green }}",
"notebookEditorOverviewRuler.runningCellForeground": "{{ accent }}", "notebookEditorOverviewRuler.runningCellForeground": "{{ accent }}",
"charts.foreground": "{{ fg }}", "charts.foreground": "{{ foreground }}",
"charts.lines": "{{ muted }}", "charts.lines": "{{ muted }}",
"charts.red": "{{ red }}", "charts.red": "{{ red }}",
"charts.blue": "{{ blue }}", "charts.blue": "{{ blue }}",
@@ -740,17 +740,17 @@
"editorWatermark.foreground": "{{ muted }}", "editorWatermark.foreground": "{{ muted }}",
"inlineChat.background": "{{ bg }}", "inlineChat.background": "{{ background }}",
"inlineChat.border": "{{ muted }}", "inlineChat.border": "{{ muted }}",
"inlineChat.shadow": "{{ bg }}80", "inlineChat.shadow": "{{ background }}80",
"inlineChatInput.border": "{{ muted }}", "inlineChatInput.border": "{{ muted }}",
"inlineChatInput.focusBorder": "{{ accent }}", "inlineChatInput.focusBorder": "{{ accent }}",
"inlineChatInput.placeholderForeground": "{{ muted }}", "inlineChatInput.placeholderForeground": "{{ muted }}",
"inlineChatInput.background": "{{ bg }}", "inlineChatInput.background": "{{ background }}",
"inlineChatDiff.inserted": "{{ green }}20", "inlineChatDiff.inserted": "{{ green }}20",
"inlineChatDiff.removed": "{{ red }}20", "inlineChatDiff.removed": "{{ red }}20",
"chat.requestBackground": "{{ bg }}", "chat.requestBackground": "{{ background }}",
"chat.requestBorder": "{{ muted }}" "chat.requestBorder": "{{ muted }}"
}, },
"tokenColors": [ "tokenColors": [
@@ -766,7 +766,7 @@
"name": "Variable", "name": "Variable",
"scope": ["variable", "string constant.other.placeholder"], "scope": ["variable", "string constant.other.placeholder"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -867,7 +867,7 @@
"name": "Type Builtin", "name": "Type Builtin",
"scope": ["storage.type.primitive", "support.type"], "scope": ["storage.type.primitive", "support.type"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -939,7 +939,7 @@
"name": "Punctuation", "name": "Punctuation",
"scope": ["punctuation", "meta.brace", "meta.bracket"], "scope": ["punctuation", "meta.brace", "meta.bracket"],
"settings": { "settings": {
"foreground": "{{ dark_fg }}" "foreground": "{{ dark_foreground }}"
} }
}, },
{ {
@@ -1016,7 +1016,7 @@
"name": "Tag Attribute", "name": "Tag Attribute",
"scope": ["entity.other.attribute-name"], "scope": ["entity.other.attribute-name"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -1030,7 +1030,7 @@
"name": "CSS Value", "name": "CSS Value",
"scope": ["support.constant.property-value.css", "meta.property-value.css"], "scope": ["support.constant.property-value.css", "meta.property-value.css"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -1109,7 +1109,7 @@
"name": "Markdown Bold", "name": "Markdown Bold",
"scope": ["markup.bold", "punctuation.definition.bold.markdown"], "scope": ["markup.bold", "punctuation.definition.bold.markdown"],
"settings": { "settings": {
"foreground": "{{ fg }}", "foreground": "{{ foreground }}",
"fontStyle": "bold" "fontStyle": "bold"
} }
}, },
@@ -1117,7 +1117,7 @@
"name": "Markdown Italic", "name": "Markdown Italic",
"scope": ["markup.italic", "punctuation.definition.italic.markdown"], "scope": ["markup.italic", "punctuation.definition.italic.markdown"],
"settings": { "settings": {
"foreground": "{{ fg }}", "foreground": "{{ foreground }}",
"fontStyle": "italic" "fontStyle": "italic"
} }
}, },
@@ -1175,7 +1175,7 @@
"name": "This/Self", "name": "This/Self",
"scope": ["variable.language.this", "variable.language.self", "variable.language.special.self"], "scope": ["variable.language.this", "variable.language.self", "variable.language.special.self"],
"settings": { "settings": {
"foreground": "{{ fg }}", "foreground": "{{ foreground }}",
"fontStyle": "italic" "fontStyle": "italic"
} }
}, },
@@ -1183,7 +1183,7 @@
"name": "Object Keys", "name": "Object Keys",
"scope": ["meta.object-literal.key", "string.unquoted.label.js"], "scope": ["meta.object-literal.key", "string.unquoted.label.js"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -1205,7 +1205,7 @@
"name": "Shell Variable", "name": "Shell Variable",
"scope": ["variable.other.normal.shell", "variable.other.positional.shell", "variable.other.bracket.shell"], "scope": ["variable.other.normal.shell", "variable.other.positional.shell", "variable.other.bracket.shell"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -1268,7 +1268,7 @@
"name": "Make Variable", "name": "Make Variable",
"scope": ["variable.other.makefile"], "scope": ["variable.other.makefile"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -1282,7 +1282,7 @@
"name": "Python Self", "name": "Python Self",
"scope": ["variable.parameter.function.language.special.self.python"], "scope": ["variable.parameter.function.language.special.self.python"],
"settings": { "settings": {
"foreground": "{{ fg }}", "foreground": "{{ foreground }}",
"fontStyle": "italic" "fontStyle": "italic"
} }
}, },
@@ -1298,7 +1298,7 @@
"name": "PHP Variable", "name": "PHP Variable",
"scope": ["variable.other.php", "punctuation.definition.variable.php"], "scope": ["variable.other.php", "punctuation.definition.variable.php"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
}, },
{ {
@@ -1333,7 +1333,7 @@
"name": "GraphQL Field", "name": "GraphQL Field",
"scope": ["variable.graphql", "variable.other.graphql"], "scope": ["variable.graphql", "variable.other.graphql"],
"settings": { "settings": {
"foreground": "{{ fg }}" "foreground": "{{ foreground }}"
} }
} }
] ]
+2 -2
View File
@@ -1,2 +1,2 @@
@define-color foreground {{ fg }}; @define-color foreground {{ foreground }};
@define-color background {{ bg }}; @define-color background {{ background }};
+3 -3
View File
@@ -141,9 +141,9 @@ sizing in `themes/<name>/shell.toml`. Defaults are generated from
`default/themed/shell.toml.tpl`; a theme may also drop a hand-written `default/themed/shell.toml.tpl`; a theme may also drop a hand-written
`shell.toml` next to its `colors.toml` to replace the generated file. `shell.toml` next to its `colors.toml` to replace the generated file.
`colors.toml` uses `fg` and `bg` for the foundational text/background `colors.toml` uses `foreground` and `background` for the foundational
palette. The shell exposes those to QML as `Color.foreground` and text/background palette, exposed to QML as `Color.foreground` and
`Color.background`, so shell roles still use the readable role names. `Color.background`.
The shell exposes these tokens to QML via two singletons in The shell exposes these tokens to QML via two singletons in
`qs.Commons`: `qs.Commons`:
+35 -21
View File
@@ -30,36 +30,50 @@ built-in template, the built-in output is skipped.
## `colors.toml` ## `colors.toml`
`colors.toml` provides the palette keys used by templates. Common keys are: `colors.toml` provides the palette keys used by templates. Keys are grouped
semantic-first: accent/selection/muted, then the backgrounds, then the
foregrounds, then the named colors:
```toml ```toml
bg = "#1a1b26" mode = "dark"
fg = "#a9b1d6"
accent = "#7aa2f7" accent = "#7aa2f7"
selection = "#292e42" selection = "#292e42"
red = "#f7768e" muted = "#414868"
blue = "#7aa2f7"
background = "#1a1b26"
dark_background = "#13141c"
darker_background = "#0e0e14"
lighter_background = "#24283b"
foreground = "#a9b1d6"
dark_foreground = "#565f89"
light_foreground = "#b4bee6"
bright_foreground = "#c0caf5"
red = "#f7768e"
blue = "#7aa2f7"
``` ```
Any key can be referenced from a template with `{{ key }}`. The foundational Any key can be referenced from a template with `{{ key }}`. The foundational
shell palette is loaded from: shell palette is loaded from:
- `fg` — primary readable text color - `foreground` — primary readable text color
- `bg` — primary background color - `background` — primary background color
- `accent` — preferred when present; otherwise some places fall back to - `accent` — preferred when present; otherwise some places fall back to
`color4` `color4`
- `muted` — de-emphasized elements (comments, placeholders, dividers); also
serves as ANSI `color8`
- `urgent` / `red` / `color1` - `urgent` / `red` / `color1`
For older user themes and templates, `foreground` aliases to `fg` and The neutral ramp is centered on `background -> bright_foreground`. Dark themes
`background` aliases to `bg`. should read from darkest to lightest; light themes should read from lightest to
darkest. Terminal and editor cursors use `bright_foreground`; there is no
The neutral ramp is centered on `bg -> bright_fg`. Dark themes should read from separate cursor palette key. `selection` is the text-selection background stop
darkest to lightest; light themes should read from lightest to darkest. Terminal in that ramp; Omarchy derives `selection_background = selection` and
and editor cursors use `bright_fg`; there is no separate cursor palette key. `selection_foreground = bright_foreground`. Use
`selection` is the text-selection background stop in that ramp; Omarchy derives `omarchy dev theme-preview [theme]` to inspect that ramp, including
`selection_background = selection` and `selection_foreground = bright_fg`. Use `dark_background`, `darker_background`, and a selected-text sample.
`omarchy dev theme-preview [theme]` to inspect that ramp, including `dark_bg`,
`darker_bg`, and a selected-text sample.
## Template placeholders ## Template placeholders
@@ -82,8 +96,8 @@ For a color key such as `accent = "#7aa2f7"`:
percentage: percentage:
```text ```text
{{ mix bg fg 15% }} {{ mix background foreground 15% }}
{{ mix_strip bg accent 0.35 }} {{ mix_strip background accent 0.35 }}
{{ mix_rgb color0 color7 50 }} {{ mix_rgb color0 color7 50 }}
``` ```
+4 -9
View File
@@ -4,9 +4,8 @@ import Quickshell
import Quickshell.Io import Quickshell.Io
import "BorderGeometry.js" as Geometry import "BorderGeometry.js" as Geometry
// Color surfaces for the shell. Foundational palette (fg, bg, accent, // Color surfaces for the shell. Foundational palette (foreground, background,
// urgent) comes from theme/colors.toml and is exposed here as // accent, urgent) comes from theme/colors.toml. Per-surface roles come from
// foreground/background/accent/urgent. Per-surface roles come from
// theme/shell.toml — generated per theme from default/themed/shell.toml.tpl, // theme/shell.toml — generated per theme from default/themed/shell.toml.tpl,
// or shipped directly by a theme to replace the generated file. Surfaces that // or shipped directly by a theme to replace the generated file. Surfaces that
// don't appear in shell.toml fall back to the foundational palette. // don't appear in shell.toml fall back to the foundational palette.
@@ -146,8 +145,6 @@ QtObject {
var lines = String(raw || "").split("\n") var lines = String(raw || "").split("\n")
var foundAccent = false var foundAccent = false
var foundMuted = false var foundMuted = false
var foundForeground = false
var foundBackground = false
var loadedForeground = false var loadedForeground = false
var loadedBackground = false var loadedBackground = false
var color0Value = "" var color0Value = ""
@@ -157,10 +154,8 @@ QtObject {
for (var i = 0; i < lines.length; i++) { for (var i = 0; i < lines.length; i++) {
var match = lines[i].match(/^\s*([A-Za-z0-9_-]+)\s*=\s*["']?(#[0-9A-Fa-f]{6})/) var match = lines[i].match(/^\s*([A-Za-z0-9_-]+)\s*=\s*["']?(#[0-9A-Fa-f]{6})/)
if (!match) continue if (!match) continue
if (match[1] === "foreground") { foreground = match[2]; foundForeground = true; loadedForeground = true } if (match[1] === "foreground") { foreground = match[2]; loadedForeground = true }
else if (match[1] === "background") { background = match[2]; foundBackground = true; loadedBackground = true } else if (match[1] === "background") { background = match[2]; loadedBackground = true }
else if (match[1] === "fg" && !foundForeground) { foreground = match[2]; loadedForeground = true }
else if (match[1] === "bg" && !foundBackground) { background = match[2]; loadedBackground = true }
// Prefer the explicit `accent` key; only fall back to color4 when the // Prefer the explicit `accent` key; only fall back to color4 when the
// theme doesn't define a separate accent. color4 appears later in the // theme doesn't define a separate accent. color4 appears later in the
// file so the old single-property approach clobbered accent with it. // file so the old single-property approach clobbered accent with it.
+19 -19
View File
@@ -220,8 +220,8 @@ cat >"$NEXT_THEME/colors.toml" <<'EOF'
mode = "light" mode = "light"
accent = "#336699" accent = "#336699"
hyprland_active_border = "rgba(010203ee) rgba(040506ee) 45deg" hyprland_active_border = "rgba(010203ee) rgba(040506ee) 45deg"
bg = "#000000" background = "#000000"
fg = "#ffffff" foreground = "#ffffff"
selection = "#808080" selection = "#808080"
red = "#ff0000" red = "#ff0000"
green = "#00ff00" green = "#00ff00"
@@ -236,13 +236,13 @@ bright_yellow = "#ffff11"
bright_blue = "#1111ff" bright_blue = "#1111ff"
bright_magenta = "#ff11ff" bright_magenta = "#ff11ff"
bright_cyan = "#11ffff" bright_cyan = "#11ffff"
bright_fg = "#eeeeee" bright_foreground = "#eeeeee"
EOF EOF
cat >"$USER_THEMED/mix-test.txt.tpl" <<'EOF' cat >"$USER_THEMED/mix-test.txt.tpl" <<'EOF'
mix={{ mix bg fg 50% }} mix={{ mix background foreground 50% }}
strip={{ mix_strip bg fg 50% }} strip={{ mix_strip background foreground 50% }}
rgb={{ mix_rgb bg fg 50% }} rgb={{ mix_rgb background foreground 50% }}
EOF EOF
cat >"$USER_THEMED/gradient-test.txt.tpl" <<'EOF' cat >"$USER_THEMED/gradient-test.txt.tpl" <<'EOF'
@@ -262,8 +262,8 @@ magenta={{ magenta }}
legacy-purple={{ purple }} legacy-purple={{ purple }}
bright-magenta={{ bright_magenta }} bright-magenta={{ bright_magenta }}
legacy-bright-purple={{ bright_purple }} legacy-bright-purple={{ bright_purple }}
legacy-background={{ background }} background={{ background }}
legacy-foreground={{ foreground }} foreground={{ foreground }}
selection-background={{ selection_background }} selection-background={{ selection_background }}
selection-foreground={{ selection_foreground }} selection-foreground={{ selection_foreground }}
cursor-alias={{ cursor }} cursor-alias={{ cursor }}
@@ -288,11 +288,11 @@ grep -qx 'magenta=#ff00ff' "$NEXT_THEME/alias-test.txt" || fail "theme template
grep -qx 'legacy-purple=#ff00ff' "$NEXT_THEME/alias-test.txt" || fail "theme template purple alias works" grep -qx 'legacy-purple=#ff00ff' "$NEXT_THEME/alias-test.txt" || fail "theme template purple alias works"
grep -qx 'bright-magenta=#ff11ff' "$NEXT_THEME/alias-test.txt" || fail "theme template bright magenta helper works" grep -qx 'bright-magenta=#ff11ff' "$NEXT_THEME/alias-test.txt" || fail "theme template bright magenta helper works"
grep -qx 'legacy-bright-purple=#ff11ff' "$NEXT_THEME/alias-test.txt" || fail "theme template bright purple alias works" grep -qx 'legacy-bright-purple=#ff11ff' "$NEXT_THEME/alias-test.txt" || fail "theme template bright purple alias works"
grep -qx 'legacy-background=#000000' "$NEXT_THEME/alias-test.txt" || fail "theme template legacy background alias works" grep -qx 'background=#000000' "$NEXT_THEME/alias-test.txt" || fail "theme template resolves background"
grep -qx 'legacy-foreground=#ffffff' "$NEXT_THEME/alias-test.txt" || fail "theme template legacy foreground alias works" grep -qx 'foreground=#ffffff' "$NEXT_THEME/alias-test.txt" || fail "theme template resolves foreground"
grep -qx 'selection-background=#808080' "$NEXT_THEME/alias-test.txt" || fail "theme template derives selection background from selection" grep -qx 'selection-background=#808080' "$NEXT_THEME/alias-test.txt" || fail "theme template derives selection background from selection"
grep -qx 'selection-foreground=#eeeeee' "$NEXT_THEME/alias-test.txt" || fail "theme template derives selection foreground from bright_fg" grep -qx 'selection-foreground=#eeeeee' "$NEXT_THEME/alias-test.txt" || fail "theme template derives selection foreground from bright_foreground"
grep -qx 'cursor-alias=#eeeeee' "$NEXT_THEME/alias-test.txt" || fail "theme template derives cursor alias from bright_fg" grep -qx 'cursor-alias=#eeeeee' "$NEXT_THEME/alias-test.txt" || fail "theme template derives cursor alias from bright_foreground"
pass "theme template semantic aliases expose legacy colorN helpers" pass "theme template semantic aliases expose legacy colorN helpers"
osc_summary=$("$ROOT/bin/omarchy-theme-osc" "$NEXT_THEME/colors.toml" | python -c 'import sys; data = sys.stdin.buffer.read(); print(data.count(b"]4;"), b"]4;1;#ff0000" in data, b"]4;7;#ffffff" in data, b"]4;15;#eeeeee" in data, b"]12;#eeeeee" in data, b"]17;#808080" in data, b"]19;#eeeeee" in data)') osc_summary=$("$ROOT/bin/omarchy-theme-osc" "$NEXT_THEME/colors.toml" | python -c 'import sys; data = sys.stdin.buffer.read(); print(data.count(b"]4;"), b"]4;1;#ff0000" in data, b"]4;7;#ffffff" in data, b"]4;15;#eeeeee" in data, b"]12;#eeeeee" in data, b"]17;#808080" in data, b"]19;#eeeeee" in data)')
@@ -300,18 +300,18 @@ osc_summary=$("$ROOT/bin/omarchy-theme-osc" "$NEXT_THEME/colors.toml" | python -
pass "theme OSC aliases semantic colors to ANSI palette" pass "theme OSC aliases semantic colors to ANSI palette"
preview_output=$(OMARCHY_PATH="$ROOT" HOME="$PI_TMPDIR" "$ROOT/bin/omarchy-dev-theme-preview" "$NEXT_THEME/colors.toml" --no-color) preview_output=$(OMARCHY_PATH="$ROOT" HOME="$PI_TMPDIR" "$ROOT/bin/omarchy-dev-theme-preview" "$NEXT_THEME/colors.toml" --no-color)
assert_output_contains "theme preview shows bg to bright_fg gradient" "$preview_output" "bg -> bright_fg gradient" assert_output_contains "theme preview shows background to bright_foreground gradient" "$preview_output" "background -> bright_foreground gradient"
assert_output_contains "theme preview orders light mode ramp light to dark" "$preview_output" "Neutral ramp (lightest -> darkest)" assert_output_contains "theme preview orders light mode ramp light to dark" "$preview_output" "Neutral ramp (lightest -> darkest)"
assert_output_contains "theme preview includes dark background slots" "$preview_output" "darker_bg" assert_output_contains "theme preview includes dark background slots" "$preview_output" "darker_background"
assert_output_contains "theme preview shows selected text sample" "$preview_output" "This is some [selected text] in a sentence" assert_output_contains "theme preview shows selected text sample" "$preview_output" "This is some [selected text] in a sentence"
assert_output_contains "theme preview shows practical terminal samples" "$preview_output" "Terminal/UI samples" assert_output_contains "theme preview shows practical terminal samples" "$preview_output" "Terminal/UI samples"
assert_output_contains "theme preview shows ANSI palette strips" "$preview_output" "ANSI palette strips" assert_output_contains "theme preview shows ANSI palette strips" "$preview_output" "ANSI palette strips"
tokyo_fg=$(awk -F'"' '/^fg =/ { print $2; exit }' "$ROOT/themes/tokyo-night/colors.toml") tokyo_fg=$(awk -F'"' '/^foreground =/ { print $2; exit }' "$ROOT/themes/tokyo-night/colors.toml")
tokyo_light_fg=$(awk -F'"' '/^light_fg =/ { print $2; exit }' "$ROOT/themes/tokyo-night/colors.toml") tokyo_light_fg=$(awk -F'"' '/^light_foreground =/ { print $2; exit }' "$ROOT/themes/tokyo-night/colors.toml")
tokyo_bright_fg=$(awk -F'"' '/^bright_fg =/ { print $2; exit }' "$ROOT/themes/tokyo-night/colors.toml") tokyo_bright_fg=$(awk -F'"' '/^bright_foreground =/ { print $2; exit }' "$ROOT/themes/tokyo-night/colors.toml")
[[ $tokyo_fg == "#a9b1d6" && $tokyo_light_fg == "#b4bee6" && $tokyo_bright_fg == "#c0caf5" ]] || fail "tokyo night fg ramp stays ordered" [[ $tokyo_fg == "#a9b1d6" && $tokyo_light_fg == "#b4bee6" && $tokyo_bright_fg == "#c0caf5" ]] || fail "tokyo night foreground ramp stays ordered"
pass "tokyo night fg ramp stays ordered" pass "tokyo night foreground ramp stays ordered"
if rg -q '^cursor\s*=' "$ROOT/themes" -g'colors.toml'; then if rg -q '^cursor\s*=' "$ROOT/themes" -g'colors.toml'; then
fail "built-in colors.toml files omit cursor token" fail "built-in colors.toml files omit cursor token"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "light" mode = "light"
accent = "#1e66f5" accent = "#1e66f5"
bg = "#eff1f5"
dark_bg = "#e3e4e8"
darker_bg = "#d7d8dc"
lighter_bg = "#dce0e8"
selection = "#ccd0da" selection = "#ccd0da"
muted = "#acb0be" muted = "#acb0be"
dark_fg = "#9ca0b0"
fg = "#4c4f69" background = "#eff1f5"
light_fg = "#5c5f77" dark_background = "#e3e4e8"
bright_fg = "#4c4f69" darker_background = "#d7d8dc"
lighter_background = "#dce0e8"
foreground = "#4c4f69"
dark_foreground = "#9ca0b0"
light_foreground = "#5c5f77"
bright_foreground = "#4c4f69"
red = "#d20f39" red = "#d20f39"
yellow = "#df8e1d" yellow = "#df8e1d"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#89b4fa" accent = "#89b4fa"
bg = "#1e1e2e"
dark_bg = "#161622"
darker_bg = "#101019"
lighter_bg = "#313244"
selection = "#45475a" selection = "#45475a"
muted = "#585b70" muted = "#585b70"
dark_fg = "#6c7086"
fg = "#cdd6f4" background = "#1e1e2e"
light_fg = "#bac2de" dark_background = "#161622"
bright_fg = "#cdd6f4" darker_background = "#101019"
lighter_background = "#313244"
foreground = "#cdd6f4"
dark_foreground = "#6c7086"
light_foreground = "#bac2de"
bright_foreground = "#cdd6f4"
red = "#f38ba8" red = "#f38ba8"
yellow = "#f9e2af" yellow = "#f9e2af"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#7d82d9" accent = "#7d82d9"
bg = "#060B1E"
dark_bg = "#040816"
darker_bg = "#030610"
lighter_bg = "#131a3a"
selection = "#252e56" selection = "#252e56"
muted = "#3d4573" muted = "#3d4573"
dark_fg = "#6d7db6"
fg = "#ffcead" background = "#060B1E"
light_fg = "#c9b8a6" dark_background = "#040816"
bright_fg = "#ffcead" darker_background = "#030610"
lighter_background = "#131a3a"
foreground = "#ffcead"
dark_foreground = "#6d7db6"
light_foreground = "#c9b8a6"
bright_foreground = "#ffcead"
red = "#ED5B5A" red = "#ED5B5A"
yellow = "#E9BB4F" yellow = "#E9BB4F"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#7fbbb3" accent = "#7fbbb3"
bg = "#2d353b"
dark_bg = "#21272c"
darker_bg = "#181d20"
lighter_bg = "#343f44"
selection = "#3d484d" selection = "#3d484d"
muted = "#475258" muted = "#475258"
dark_fg = "#4f585e"
fg = "#d3c6aa" background = "#2d353b"
light_fg = "#9da9a0" dark_background = "#21272c"
bright_fg = "#d3c6aa" darker_background = "#181d20"
lighter_background = "#343f44"
foreground = "#d3c6aa"
dark_foreground = "#4f585e"
light_foreground = "#9da9a0"
bright_foreground = "#d3c6aa"
red = "#e67e80" red = "#e67e80"
yellow = "#dbbc7f" yellow = "#dbbc7f"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "light" mode = "light"
accent = "#205EA6" accent = "#205EA6"
bg = "#FFFCF0"
dark_bg = "#f2efe4"
darker_bg = "#e5e2d8"
lighter_bg = "#E6E4D9"
selection = "#CECDC3" selection = "#CECDC3"
muted = "#B7B5AC" muted = "#B7B5AC"
dark_fg = "#878580"
fg = "#100F0F" background = "#FFFCF0"
light_fg = "#403E3C" dark_background = "#f2efe4"
bright_fg = "#100F0F" darker_background = "#e5e2d8"
lighter_background = "#E6E4D9"
foreground = "#100F0F"
dark_foreground = "#878580"
light_foreground = "#403E3C"
bright_foreground = "#100F0F"
red = "#D14D41" red = "#D14D41"
yellow = "#D0A215" yellow = "#D0A215"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#7daea3" accent = "#7daea3"
bg = "#282828"
dark_bg = "#1e1e1e"
darker_bg = "#161616"
lighter_bg = "#3c3836"
selection = "#504945" selection = "#504945"
muted = "#665c54" muted = "#665c54"
dark_fg = "#7c6f64"
fg = "#d4be98" background = "#282828"
light_fg = "#bdae93" dark_background = "#1e1e1e"
bright_fg = "#d4be98" darker_background = "#161616"
lighter_background = "#3c3836"
foreground = "#d4be98"
dark_foreground = "#7c6f64"
light_foreground = "#bdae93"
bright_foreground = "#d4be98"
red = "#ea6962" red = "#ea6962"
yellow = "#d8a657" yellow = "#d8a657"
+12 -10
View File
@@ -1,18 +1,20 @@
mode = "dark" mode = "dark"
accent = "#82FB9C" accent = "#82FB9C"
hyprland_active_border = "rgba(26a269ee) rgba(2ec27eee) 45deg"
bg = "#0B0C16"
dark_bg = "#080910"
darker_bg = "#06060c"
lighter_bg = "#151828"
selection = "#1f253a" selection = "#1f253a"
muted = "#2d3450" muted = "#2d3450"
dark_fg = "#6a6e95"
fg = "#ddf7ff" background = "#0B0C16"
light_fg = "#b5c5db" dark_background = "#080910"
bright_fg = "#ddf7ff" darker_background = "#06060c"
lighter_background = "#151828"
foreground = "#ddf7ff"
dark_foreground = "#6a6e95"
light_foreground = "#b5c5db"
bright_foreground = "#ddf7ff"
hyprland_active_border = "rgba(26a269ee) rgba(2ec27eee) 45deg"
red = "#50f872" red = "#50f872"
yellow = "#50f7d4" yellow = "#50f7d4"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#dcd7ba" accent = "#dcd7ba"
bg = "#1f1f28"
dark_bg = "#17171e"
darker_bg = "#111116"
lighter_bg = "#223249"
selection = "#363646" selection = "#363646"
muted = "#54546D" muted = "#54546D"
dark_fg = "#727169"
fg = "#dcd7ba" background = "#1f1f28"
light_fg = "#c8c093" dark_background = "#17171e"
bright_fg = "#dcd7ba" darker_background = "#111116"
lighter_background = "#223249"
foreground = "#dcd7ba"
dark_foreground = "#727169"
light_foreground = "#c8c093"
bright_foreground = "#dcd7ba"
red = "#c34043" red = "#c34043"
yellow = "#c0a36e" yellow = "#c0a36e"
+13 -11
View File
@@ -1,22 +1,24 @@
mode = "dark" mode = "dark"
accent = "#b59790" accent = "#b59790"
selection = "#584e51"
muted = "#584e51"
background = "#0c0b0c"
dark_background = "#090809"
darker_background = "#060606"
lighter_background = "#0c0b0c"
foreground = "#FAFCFB"
dark_foreground = "#584e51"
light_foreground = "#cfd3cd"
bright_foreground = "#e2dddc"
hyprland_active_border = "rgba(8a8588ee) rgba(e2dddcee)" hyprland_active_border = "rgba(8a8588ee) rgba(e2dddcee)"
hyprland_inactive_border = "rgba(584e51aa)" hyprland_inactive_border = "rgba(584e51aa)"
active_border_color = "#d6d3de" active_border_color = "#d6d3de"
active_tab_background = "#a5a0b6" active_tab_background = "#a5a0b6"
bg = "#0c0b0c"
dark_bg = "#090809"
darker_bg = "#060606"
lighter_bg = "#0c0b0c"
selection = "#584e51"
muted = "#584e51"
dark_fg = "#584e51"
fg = "#FAFCFB"
light_fg = "#cfd3cd"
bright_fg = "#e2dddc"
red = "#c38b7b" red = "#c38b7b"
yellow = "#6B5E73" yellow = "#6B5E73"
green = "#87a9b0" green = "#87a9b0"
+13 -11
View File
@@ -1,19 +1,21 @@
mode = "dark" mode = "dark"
accent = "#8bc9eb" accent = "#8bc9eb"
active_border_color = "#f2fcff"
active_tab_background = "#6fb8e3"
bg = "#16242d"
dark_bg = "#101b21"
darker_bg = "#0b1216"
lighter_bg = "#1b2d40"
selection = "#243d56" selection = "#243d56"
muted = "#304860" muted = "#304860"
dark_fg = "#4d86b0"
fg = "#d6e2ee" background = "#16242d"
light_fg = "#d6e2ee" dark_background = "#101b21"
bright_fg = "#f2fcff" darker_background = "#0b1216"
lighter_background = "#1b2d40"
foreground = "#d6e2ee"
dark_foreground = "#4d86b0"
light_foreground = "#d6e2ee"
bright_foreground = "#f2fcff"
active_border_color = "#f2fcff"
active_tab_background = "#6fb8e3"
red = "#4d86b0" red = "#4d86b0"
yellow = "#6fa4c9" yellow = "#6fa4c9"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#e68e0d" accent = "#e68e0d"
bg = "#121212"
dark_bg = "#0d0d0d"
darker_bg = "#090909"
lighter_bg = "#1e1e1e"
selection = "#2a2a2a" selection = "#2a2a2a"
muted = "#333333" muted = "#333333"
dark_fg = "#555555"
fg = "#bebebe" background = "#121212"
light_fg = "#8a8a8d" dark_background = "#0d0d0d"
bright_fg = "#bebebe" darker_background = "#090909"
lighter_background = "#1e1e1e"
foreground = "#bebebe"
dark_foreground = "#555555"
light_foreground = "#8a8a8d"
bright_foreground = "#bebebe"
red = "#D35F5F" red = "#D35F5F"
yellow = "#b91c1c" yellow = "#b91c1c"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#78824b" accent = "#78824b"
bg = "#222222"
dark_bg = "#191919"
darker_bg = "#121212"
lighter_bg = "#2c2c2c"
selection = "#383838" selection = "#383838"
muted = "#444444" muted = "#444444"
dark_fg = "#555555"
fg = "#c2c2b0" background = "#222222"
light_fg = "#8a8a7e" dark_background = "#191919"
bright_fg = "#c2c2b0" darker_background = "#121212"
lighter_background = "#2c2c2c"
foreground = "#c2c2b0"
dark_foreground = "#555555"
light_foreground = "#8a8a7e"
bright_foreground = "#c2c2b0"
red = "#685742" red = "#685742"
yellow = "#b36d43" yellow = "#b36d43"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#81a1c1" accent = "#81a1c1"
bg = "#2e3440"
dark_bg = "#222730"
darker_bg = "#191c23"
lighter_bg = "#3b4252"
selection = "#434c5e" selection = "#434c5e"
muted = "#4c566a" muted = "#4c566a"
dark_fg = "#667080"
fg = "#d8dee9" background = "#2e3440"
light_fg = "#adb5c4" dark_background = "#222730"
bright_fg = "#d8dee9" darker_background = "#191c23"
lighter_background = "#3b4252"
foreground = "#d8dee9"
dark_foreground = "#667080"
light_foreground = "#adb5c4"
bright_foreground = "#d8dee9"
red = "#bf616a" red = "#bf616a"
yellow = "#ebcb8b" yellow = "#ebcb8b"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#509475" accent = "#509475"
bg = "#111c18"
dark_bg = "#0c1512"
darker_bg = "#090f0d"
lighter_bg = "#23372B"
selection = "#32473B" selection = "#32473B"
muted = "#53685B" muted = "#53685B"
dark_fg = "#81B8A8"
fg = "#C1C497" background = "#111c18"
light_fg = "#D6D5BC" dark_background = "#0c1512"
bright_fg = "#F7E8B2" darker_background = "#090f0d"
lighter_background = "#23372B"
foreground = "#C1C497"
dark_foreground = "#81B8A8"
light_foreground = "#D6D5BC"
bright_foreground = "#F7E8B2"
red = "#FF5345" red = "#FF5345"
yellow = "#459451" yellow = "#459451"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#faa968" accent = "#faa968"
bg = "#05182e"
dark_bg = "#031222"
darker_bg = "#020c17"
lighter_bg = "#0a2540"
selection = "#134e5a" selection = "#134e5a"
muted = "#2a6b78" muted = "#2a6b78"
dark_fg = "#3f8f8a"
fg = "#f6dcac" background = "#05182e"
light_fg = "#a7c9c6" dark_background = "#031222"
bright_fg = "#f6dcac" darker_background = "#020c17"
lighter_background = "#0a2540"
foreground = "#f6dcac"
dark_foreground = "#3f8f8a"
light_foreground = "#a7c9c6"
bright_foreground = "#f6dcac"
red = "#f85525" red = "#f85525"
yellow = "#e97b3c" yellow = "#e97b3c"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#f38d70" accent = "#f38d70"
bg = "#2c2525"
dark_bg = "#211b1b"
darker_bg = "#181414"
lighter_bg = "#3d2f2a"
selection = "#403e41" selection = "#403e41"
muted = "#5b4a45" muted = "#5b4a45"
dark_fg = "#72696a"
fg = "#e6d9db" background = "#2c2525"
light_fg = "#c3b7b8" dark_background = "#211b1b"
bright_fg = "#e6d9db" darker_background = "#181414"
lighter_background = "#3d2f2a"
foreground = "#e6d9db"
dark_foreground = "#72696a"
light_foreground = "#c3b7b8"
bright_foreground = "#e6d9db"
red = "#fd6883" red = "#fd6883"
yellow = "#f9cc6c" yellow = "#f9cc6c"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "light" mode = "light"
accent = "#56949f" accent = "#56949f"
bg = "#faf4ed"
dark_bg = "#ede7e1"
darker_bg = "#e1dbd5"
lighter_bg = "#f2e9e1"
selection = "#dfdad9" selection = "#dfdad9"
muted = "#cecacd" muted = "#cecacd"
dark_fg = "#9893a5"
fg = "#575279" background = "#faf4ed"
light_fg = "#6e6a86" dark_background = "#ede7e1"
bright_fg = "#575279" darker_background = "#e1dbd5"
lighter_background = "#f2e9e1"
foreground = "#575279"
dark_foreground = "#9893a5"
light_foreground = "#6e6a86"
bright_foreground = "#575279"
red = "#b4637a" red = "#b4637a"
yellow = "#ea9d34" yellow = "#ea9d34"
+13 -11
View File
@@ -1,22 +1,24 @@
mode = "dark" mode = "dark"
accent = "#798186" accent = "#798186"
selection = "#343d41"
muted = "#4b4e55"
background = "#101315"
dark_background = "#0c0e10"
darker_background = "#080a0b"
lighter_background = "#101315"
foreground = "#cacccc"
dark_foreground = "#4b4e55"
light_foreground = "#cbc2be"
bright_foreground = "#a5aeb4"
hyprland_active_border = "rgba(798186ee) rgba(caccccee)" hyprland_active_border = "rgba(798186ee) rgba(caccccee)"
hyprland_inactive_border = "rgb(1e1e1e)" hyprland_inactive_border = "rgb(1e1e1e)"
active_border_color = "#a8adb0" active_border_color = "#a8adb0"
active_tab_background = "#798186" active_tab_background = "#798186"
bg = "#101315"
dark_bg = "#0c0e10"
darker_bg = "#080a0b"
lighter_bg = "#101315"
selection = "#343d41"
muted = "#4b4e55"
dark_fg = "#4b4e55"
fg = "#cacccc"
light_fg = "#cbc2be"
bright_fg = "#a5aeb4"
red = "#565d60" red = "#565d60"
yellow = "#d9dbdc" yellow = "#d9dbdc"
green = "#9fa5a9" green = "#9fa5a9"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "dark" mode = "dark"
accent = "#7aa2f7" accent = "#7aa2f7"
bg = "#1a1b26"
dark_bg = "#13141c"
darker_bg = "#0e0e14"
lighter_bg = "#24283b"
selection = "#292e42" selection = "#292e42"
muted = "#414868" muted = "#414868"
dark_fg = "#565f89"
fg = "#a9b1d6" background = "#1a1b26"
light_fg = "#b4bee6" dark_background = "#13141c"
bright_fg = "#c0caf5" darker_background = "#0e0e14"
lighter_background = "#24283b"
foreground = "#a9b1d6"
dark_foreground = "#565f89"
light_foreground = "#b4bee6"
bright_foreground = "#c0caf5"
red = "#f7768e" red = "#f7768e"
yellow = "#e0af68" yellow = "#e0af68"
+9 -8
View File
@@ -1,15 +1,16 @@
mode = "dark" mode = "dark"
accent = "#8d8d8d" accent = "#8d8d8d"
bg = "#000000"
dark_bg = "#090909"
darker_bg = "#070707"
lighter_bg = "#000000"
selection = "#1a1a1a" selection = "#1a1a1a"
fg = "#ffffff"
light_fg = "#ececec" background = "#000000"
bright_fg = "#ffffff" dark_background = "#090909"
darker_background = "#070707"
lighter_background = "#000000"
foreground = "#ffffff"
light_foreground = "#ececec"
bright_foreground = "#ffffff"
red = "#a4a4a4" red = "#a4a4a4"
yellow = "#cecece" yellow = "#cecece"
+10 -9
View File
@@ -1,17 +1,18 @@
mode = "light" mode = "light"
accent = "#6e6e6e" accent = "#6e6e6e"
bg = "#ffffff"
dark_bg = "#bfbfbf"
darker_bg = "#808080"
lighter_bg = "#c0c0c0"
selection = "#c0c0c0" selection = "#c0c0c0"
muted = "#c0c0c0" muted = "#c0c0c0"
dark_fg = "#c0c0c0"
fg = "#000000" background = "#ffffff"
light_fg = "#000000" dark_background = "#bfbfbf"
bright_fg = "#000000" darker_background = "#808080"
lighter_background = "#c0c0c0"
foreground = "#000000"
dark_foreground = "#c0c0c0"
light_foreground = "#000000"
bright_foreground = "#000000"
red = "#2a2a2a" red = "#2a2a2a"
yellow = "#4a4a4a" yellow = "#4a4a4a"