Implement semantic theme color system

This commit is contained in:
Bjarne Øverli
2026-06-02 17:23:28 -04:00
committed by Ryan Hughes
parent 98ba4a9697
commit b1505a085d
60 changed files with 2321 additions and 1886 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ Exceptions are allowed for bootstrap, preflight, migration, and package-helper s
- `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, background, foreground, color0-15) - `themes/*/colors.toml` - theme color definitions (accent, background, foreground, red/green/yellow/blue/purple/cyan and bright_* variants)
# Tests # Tests
+34 -16
View File
@@ -182,6 +182,24 @@ selection_background=${selection_background:-$foreground}
selection_foreground=${selection_foreground:-$background} selection_foreground=${selection_foreground:-$background}
accent=$color4 accent=$color4
# Remap ANSI slots to semantic names for the output palette
bg=$color0
red=$color1
green=$color2
yellow=$color3
blue=$color4
purple=$color5
cyan=$color6
fg=$color7
muted=$color8
bright_red=$color9
bright_green=$color10
bright_yellow=$color11
bright_blue=$color12
bright_purple=$color13
bright_cyan=$color14
bright_fg=$color15
mkdir -p "$THEME_SOURCE" mkdir -p "$THEME_SOURCE"
cat > "$COLORS_OUTPUT" <<EOF cat > "$COLORS_OUTPUT" <<EOF
@@ -192,20 +210,20 @@ background = "$background"
selection_foreground = "$selection_foreground" selection_foreground = "$selection_foreground"
selection_background = "$selection_background" selection_background = "$selection_background"
color0 = "$color0" color0 = "$bg"
color1 = "$color1" color1 = "$red"
color2 = "$color2" color2 = "$green"
color3 = "$color3" color3 = "$yellow"
color4 = "$color4" color4 = "$blue"
color5 = "$color5" color5 = "$purple"
color6 = "$color6" color6 = "$cyan"
color7 = "$color7" color7 = "$fg"
color8 = "$color8" color8 = "$muted"
color9 = "$color9" color9 = "$bright_red"
color10 = "$color10" color10 = "$bright_green"
color11 = "$color11" color11 = "$bright_yellow"
color12 = "$color12" color12 = "$bright_blue"
color13 = "$color13" color13 = "$bright_purple"
color14 = "$color14" color14 = "$bright_cyan"
color15 = "$color15" color15 = "$bright_fg"
EOF EOF
+14 -1
View File
@@ -3,7 +3,20 @@
# omarchy:summary=Apply the current theme to GNOME color mode and icon settings # omarchy:summary=Apply the current theme to GNOME color mode and icon settings
# omarchy:hidden=true # omarchy:hidden=true
if [[ -f ~/.config/omarchy/current/theme/light.mode ]]; then # Detect mode (light|dark) with this precedence:
# 1. `mode` key in the active theme's colors.toml
# 2. legacy `light.mode` file shipped beside the theme
THEME_DIR=~/.config/omarchy/current/theme
COLORS_FILE="$THEME_DIR/colors.toml"
mode=""
if [[ -f $COLORS_FILE ]] && command -v tomlq >/dev/null; then
mode=$(tomlq -r '.mode // empty' "$COLORS_FILE" 2>/dev/null)
fi
if [[ -z $mode && -f $THEME_DIR/light.mode ]]; then
mode="light"
fi
if [[ $mode == "light" ]]; then
gsettings set org.gnome.desktop.interface color-scheme "prefer-light" gsettings set org.gnome.desktop.interface color-scheme "prefer-light"
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita" gsettings set org.gnome.desktop.interface gtk-theme "Adwaita"
else else
+52 -1
View File
@@ -304,9 +304,60 @@ if [[ -f $COLORS_FILE ]]; then
value="${value%%[\"\']*}" # extract value between quotes (ignores inline comments) value="${value%%[\"\']*}" # extract value between quotes (ignores inline comments)
THEME_COLORS[$key]="$value" THEME_COLORS[$key]="$value"
add_template_value "$key" "$value"
done <"$COLORS_FILE" done <"$COLORS_FILE"
# Legacy compatibility: map ANSI color0..color15 and raw bg/fg to semantic names
declare -A legacy_alias=(
[bg]=background [fg]=foreground
[red]=color1 [green]=color2 [yellow]=color3
[blue]=color4 [purple]=color5 [cyan]=color6
[bright_red]=color9 [bright_green]=color10 [bright_yellow]=color11
[bright_blue]=color12 [bright_purple]=color13 [bright_cyan]=color14
)
for key in "${!legacy_alias[@]}"; do
[[ ${THEME_COLORS[$key]} ]] || THEME_COLORS[$key]="${THEME_COLORS[${legacy_alias[$key]}]}"
done
[[ ${THEME_COLORS[light_fg]} ]] || THEME_COLORS[light_fg]="${THEME_COLORS[color7]:-${THEME_COLORS[foreground]}}"
[[ ${THEME_COLORS[bright_fg]} ]] || THEME_COLORS[bright_fg]="${THEME_COLORS[color15]:-${THEME_COLORS[foreground]}}"
[[ ${THEME_COLORS[lighter_bg]} ]] || THEME_COLORS[lighter_bg]="${THEME_COLORS[color0]:-${THEME_COLORS[background]}}"
[[ ${THEME_COLORS[dark_fg]} ]] || THEME_COLORS[dark_fg]="${THEME_COLORS[color8]:-${THEME_COLORS[foreground]}}"
[[ ${THEME_COLORS[muted]} ]] || THEME_COLORS[muted]="${THEME_COLORS[color8]:-${THEME_COLORS[dark_fg]}}"
[[ ${THEME_COLORS[selection]} ]] || THEME_COLORS[selection]="${THEME_COLORS[selection_background]:-${THEME_COLORS[color8]:-${THEME_COLORS[color0]}}}"
[[ ${THEME_COLORS[orange]} ]] || THEME_COLORS[orange]="${THEME_COLORS[yellow]}"
[[ ${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
[[ ${THEME_COLORS[dark_bg]} ]] || THEME_COLORS[dark_bg]=$(mix_color "${THEME_COLORS[background]}" "#000000" 25%)
[[ ${THEME_COLORS[darker_bg]} ]] || THEME_COLORS[darker_bg]=$(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_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_cyan]} ]] || THEME_COLORS[bright_cyan]=$(mix_color "${THEME_COLORS[cyan]}" "#ffffff" 20%)
[[ ${THEME_COLORS[bright_blue]} ]] || THEME_COLORS[bright_blue]=$(mix_color "${THEME_COLORS[blue]}" "#ffffff" 20%)
[[ ${THEME_COLORS[bright_purple]} ]] || THEME_COLORS[bright_purple]=$(mix_color "${THEME_COLORS[purple]}" "#ffffff" 20%)
# Resolve theme mode (dark|light) with this precedence:
# 1. `mode` key in colors.toml
# 2. legacy `light.mode` file shipped beside the theme
# 3. background luminance auto-detect
# `theme_type` is kept as an alias so existing templates ({{ theme_type }}) keep working.
[[ ${THEME_COLORS[mode]} ]] || THEME_COLORS[mode]="${THEME_COLORS[theme_type]}"
if [[ ! ${THEME_COLORS[mode]} ]]; then
if [[ -f $NEXT_THEME_DIR/light.mode ]]; then
THEME_COLORS[mode]="light"
else
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 -gt 382 ]] && THEME_COLORS[mode]="light" || THEME_COLORS[mode]="dark"
fi
fi
THEME_COLORS[theme_type]="${THEME_COLORS[mode]}"
for key in "${!THEME_COLORS[@]}"; do
add_template_value "$key" "${THEME_COLORS[$key]}"
done
add_mix_values add_mix_values
add_gradient_function_values add_gradient_function_values
+51 -5
View File
@@ -4,21 +4,67 @@
# omarchy:hidden=true # omarchy:hidden=true
VS_CODE_THEME="$HOME/.config/omarchy/current/theme/vscode.json" VS_CODE_THEME="$HOME/.config/omarchy/current/theme/vscode.json"
GENERATED_THEME="$HOME/.config/omarchy/current/theme/vscode-theme.json"
# Install generated theme as a local extension for a given editor
install_generated_extension() {
local ext_dir="$1"
local theme_type
theme_type=$(jq -r '.type // "dark"' "$GENERATED_THEME")
mkdir -p "$ext_dir/themes"
cp "$GENERATED_THEME" "$ext_dir/themes/omarchy-color-theme.json"
cat > "$ext_dir/package.json" <<EOF
{
"name": "omarchy-theme",
"displayName": "Omarchy",
"description": "Omarchy color theme",
"publisher": "local",
"version": "1.0.0",
"engines": { "vscode": "^1.70.0" },
"categories": ["Themes"],
"contributes": {
"themes": [{
"label": "Omarchy",
"uiTheme": "vs-${theme_type}",
"path": "./themes/omarchy-color-theme.json"
}]
}
}
EOF
}
set_theme() { set_theme() {
local editor_cmd="$1" local editor_cmd="$1"
local settings_path="$2" local settings_path="$2"
local ext_base="$3"
omarchy-cmd-present "$editor_cmd" || return 0 omarchy-cmd-present "$editor_cmd" || return 0
if [[ -f $VS_CODE_THEME ]]; then local theme_name=""
# Always deploy the generated theme so it's available in the theme picker
if [[ -f "$GENERATED_THEME" ]]; then
install_generated_extension "$ext_base/omarchy-theme"
fi
if [[ -f "$VS_CODE_THEME" ]]; then
# Theme specifies a preferred 3rd-party extension
theme_name=$(jq -r '.name' "$VS_CODE_THEME") theme_name=$(jq -r '.name' "$VS_CODE_THEME")
local extension
extension=$(jq -r '.extension' "$VS_CODE_THEME") extension=$(jq -r '.extension' "$VS_CODE_THEME")
if [[ -n $extension ]] && ! "$editor_cmd" --list-extensions 2>/dev/null | grep -Fxq "$extension"; then if [[ -n $extension ]] && ! "$editor_cmd" --list-extensions 2>/dev/null | grep -Fxq "$extension"; then
"$editor_cmd" --install-extension "$extension" >/dev/null 2>&1 "$editor_cmd" --install-extension "$extension" >/dev/null 2>&1
fi fi
elif [[ -f "$GENERATED_THEME" ]]; then
# No 3rd-party preference, activate the generated theme
theme_name="Omarchy"
fi
if [[ -n "$theme_name" ]]; then
mkdir -p "$(dirname "$settings_path")" mkdir -p "$(dirname "$settings_path")"
[[ -f $settings_path ]] || printf '{\n}\n' >"$settings_path" [[ -f $settings_path ]] || printf '{\n}\n' >"$settings_path"
@@ -34,7 +80,7 @@ set_theme() {
fi fi
} }
! omarchy-toggle-enabled skip-vscode-theme-changes && set_theme "code" "$HOME/.config/Code/User/settings.json" ! omarchy-toggle-enabled skip-vscode-theme-changes && set_theme "code" "$HOME/.config/Code/User/settings.json" "$HOME/.vscode/extensions"
! omarchy-toggle-enabled skip-vscode-insiders-theme-changes && set_theme "code-insiders" "$HOME/.config/Code - Insiders/User/settings.json" ! omarchy-toggle-enabled skip-vscode-insiders-theme-changes && set_theme "code-insiders" "$HOME/.config/Code - Insiders/User/settings.json" "$HOME/.vscode-insiders/extensions"
! omarchy-toggle-enabled skip-codium-theme-changes && set_theme "codium" "$HOME/.config/VSCodium/User/settings.json" ! omarchy-toggle-enabled skip-codium-theme-changes && set_theme "codium" "$HOME/.config/VSCodium/User/settings.json" "$HOME/.vscode-oss/extensions"
! omarchy-toggle-enabled skip-cursor-theme-changes && set_theme "cursor" "$HOME/.config/Cursor/User/settings.json" ! omarchy-toggle-enabled skip-cursor-theme-changes && set_theme "cursor" "$HOME/.config/Cursor/User/settings.json" "$HOME/.cursor/extensions"
+22 -18
View File
@@ -25,6 +25,10 @@
# {{ 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 }},
# {{ yellow }}, {{ blue }}, {{ purple }}, {{ cyan }}, {{ muted }} and the
# {{ bright_* }} variants. The two forms are kept in sync by
# bin/omarchy-theme-set-templates.
# #
# VARIABLE MODIFIERS: # VARIABLE MODIFIERS:
# {{ variable_strip }} - Hex color without the # prefix (e.g., "1a1b26") # {{ variable_strip }} - Hex color without the # prefix (e.g., "1a1b26")
@@ -51,11 +55,11 @@ cursor = "{{ cursor }}"
[colors.search.matches] [colors.search.matches]
foreground = "{{ background }}" foreground = "{{ background }}"
background = "{{ color3 }}" background = "{{ yellow }}"
[colors.search.focused_match] [colors.search.focused_match]
foreground = "{{ background }}" foreground = "{{ background }}"
background = "{{ color1 }}" background = "{{ red }}"
[colors.footer_bar] [colors.footer_bar]
foreground = "{{ background }}" foreground = "{{ background }}"
@@ -66,21 +70,21 @@ text = "{{ selection_foreground }}"
background = "{{ selection_background }}" background = "{{ selection_background }}"
[colors.normal] [colors.normal]
black = "{{ color0 }}" black = "{{ bg }}"
red = "{{ color1 }}" red = "{{ red }}"
green = "{{ color2 }}" green = "{{ green }}"
yellow = "{{ color3 }}" yellow = "{{ yellow }}"
blue = "{{ color4 }}" blue = "{{ blue }}"
magenta = "{{ color5 }}" magenta = "{{ purple }}"
cyan = "{{ color6 }}" cyan = "{{ cyan }}"
white = "{{ color7 }}" white = "{{ fg }}"
[colors.bright] [colors.bright]
black = "{{ color8 }}" black = "{{ muted }}"
red = "{{ color9 }}" red = "{{ bright_red }}"
green = "{{ color10 }}" green = "{{ bright_green }}"
yellow = "{{ color11 }}" yellow = "{{ bright_yellow }}"
blue = "{{ color12 }}" blue = "{{ bright_blue }}"
magenta = "{{ color13 }}" magenta = "{{ bright_purple }}"
cyan = "{{ color14 }}" cyan = "{{ bright_cyan }}"
white = "{{ color15 }}" white = "{{ bright_fg }}"
+18 -18
View File
@@ -12,11 +12,11 @@ cursor = "{{ cursor }}"
[colors.search.matches] [colors.search.matches]
foreground = "{{ background }}" foreground = "{{ background }}"
background = "{{ color3 }}" background = "{{ yellow }}"
[colors.search.focused_match] [colors.search.focused_match]
foreground = "{{ background }}" foreground = "{{ background }}"
background = "{{ color1 }}" background = "{{ red }}"
[colors.footer_bar] [colors.footer_bar]
foreground = "{{ background }}" foreground = "{{ background }}"
@@ -27,21 +27,21 @@ text = "{{ selection_foreground }}"
background = "{{ selection_background }}" background = "{{ selection_background }}"
[colors.normal] [colors.normal]
black = "{{ color0 }}" black = "{{ bg }}"
red = "{{ color1 }}" red = "{{ red }}"
green = "{{ color2 }}" green = "{{ green }}"
yellow = "{{ color3 }}" yellow = "{{ yellow }}"
blue = "{{ color4 }}" blue = "{{ blue }}"
magenta = "{{ color5 }}" magenta = "{{ purple }}"
cyan = "{{ color6 }}" cyan = "{{ cyan }}"
white = "{{ color7 }}" white = "{{ fg }}"
[colors.bright] [colors.bright]
black = "{{ color8 }}" black = "{{ muted }}"
red = "{{ color9 }}" red = "{{ bright_red }}"
green = "{{ color10 }}" green = "{{ bright_green }}"
yellow = "{{ color11 }}" yellow = "{{ bright_yellow }}"
blue = "{{ color12 }}" blue = "{{ bright_blue }}"
magenta = "{{ color13 }}" magenta = "{{ bright_purple }}"
cyan = "{{ color14 }}" cyan = "{{ bright_cyan }}"
white = "{{ color15 }}" white = "{{ bright_fg }}"
+54 -44
View File
@@ -11,73 +11,83 @@ theme[title]="{{ foreground }}"
theme[hi_fg]="{{ accent }}" theme[hi_fg]="{{ accent }}"
# Background color of selected item in processes box # Background color of selected item in processes box
theme[selected_bg]="{{ color8 }}" theme[selected_bg]="{{ selection }}"
# Foreground color of selected item in processes box # Foreground color of selected item in processes box
theme[selected_fg]="{{ accent }}" theme[selected_fg]="{{ accent }}"
# Color of inactive/disabled text # Color of inactive/disabled text
theme[inactive_fg]="{{ color8 }}" 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]="{{ foreground }}" theme[graph_text]="{{ light_fg }}"
# Background color of the percentage meters # Background color of the percentage meters
theme[meter_bg]="{{ color8 }}" 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]="{{ foreground }}" theme[proc_misc]="{{ light_fg }}"
# CPU, Memory, Network, Proc box outline colors # CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="{{ color5 }}" theme[cpu_box]="{{ purple }}"
theme[mem_box]="{{ color2 }}" theme[mem_box]="{{ green }}"
theme[net_box]="{{ color1 }}" theme[net_box]="{{ red }}"
theme[proc_box]="{{ accent }}" theme[proc_box]="{{ accent }}"
# Box divider line and small boxes line color # Box divider line and small boxes line color
theme[div_line]="{{ color8 }}" theme[div_line]="{{ muted }}"
# Temperature graph color (Green -> Yellow -> Red) # Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="{{ color2 }}" theme[temp_start]="{{ green }}"
theme[temp_mid]="{{ color3 }}" theme[temp_mid]="{{ yellow }}"
theme[temp_end]="{{ color1 }}" theme[temp_end]="{{ red }}"
# CPU graph colors (Teal -> Lavender) # CPU graph colors (Teal -> Blue -> Purple)
theme[cpu_start]="{{ color6 }}" theme[cpu_start]="{{ cyan }}"
theme[cpu_mid]="{{ color4 }}" theme[cpu_mid]="{{ blue }}"
theme[cpu_end]="{{ color5 }}" theme[cpu_end]="{{ purple }}"
# Mem/Disk free meter (Mauve -> Lavender -> Blue) # Mem/Disk free meter
theme[free_start]="{{ color5 }}" theme[free_start]="{{ purple }}"
theme[free_mid]="{{ color4 }}" theme[free_mid]="{{ blue }}"
theme[free_end]="{{ color6 }}" theme[free_end]="{{ cyan }}"
# Mem/Disk cached meter (Sapphire -> Lavender) # Mem/Disk cached meter
theme[cached_start]="{{ color4 }}" theme[cached_start]="{{ blue }}"
theme[cached_mid]="{{ color6 }}" theme[cached_mid]="{{ cyan }}"
theme[cached_end]="{{ color5 }}" theme[cached_end]="{{ purple }}"
# Mem/Disk available meter (Peach -> Red) # Mem/Disk available meter
theme[available_start]="{{ color3 }}" theme[available_start]="{{ yellow }}"
theme[available_mid]="{{ color1 }}" theme[available_mid]="{{ red }}"
theme[available_end]="{{ color1 }}" theme[available_end]="{{ red }}"
# Mem/Disk used meter (Green -> Sky) # Mem/Disk used meter (Green -> Teal -> Blue)
theme[used_start]="{{ color2 }}" theme[used_start]="{{ green }}"
theme[used_mid]="{{ color6 }}" theme[used_mid]="{{ cyan }}"
theme[used_end]="{{ color4 }}" theme[used_end]="{{ blue }}"
# Download graph colors (Peach -> Red) # Download graph colors
theme[download_start]="{{ color3 }}" theme[download_start]="{{ yellow }}"
theme[download_mid]="{{ color1 }}" theme[download_mid]="{{ red }}"
theme[download_end]="{{ color1 }}" theme[download_end]="{{ red }}"
# Upload graph colors (Green -> Sky) # Upload graph colors (Green -> Teal -> Blue)
theme[upload_start]="{{ color2 }}" theme[upload_start]="{{ green }}"
theme[upload_mid]="{{ color6 }}" theme[upload_mid]="{{ cyan }}"
theme[upload_end]="{{ color4 }}" theme[upload_end]="{{ blue }}"
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve) # Process box color gradient for threads, mem and cpu usage
theme[process_start]="{{ color6 }}" theme[process_start]="{{ cyan }}"
theme[process_mid]="{{ color4 }}" theme[process_mid]="{{ blue }}"
theme[process_end]="{{ color5 }}" theme[process_end]="{{ purple }}"
# Graph gradient colors (spectrum shades from background to foreground)
theme[gradient_color_0]="{{ bg }}"
theme[gradient_color_1]="{{ lighter_bg }}"
theme[gradient_color_2]="{{ selection }}"
theme[gradient_color_3]="{{ muted }}"
theme[gradient_color_4]="{{ dark_fg }}"
theme[gradient_color_5]="{{ fg }}"
theme[gradient_color_6]="{{ light_fg }}"
theme[gradient_color_7]="{{ bright_fg }}"
+16 -16
View File
@@ -6,20 +6,20 @@ selection-background={{ selection_background_strip }}
cursor={{ background_strip }} {{ cursor_strip }} cursor={{ background_strip }} {{ cursor_strip }}
regular0={{ color0_strip }} regular0={{ bg_strip }}
regular1={{ color1_strip }} regular1={{ red_strip }}
regular2={{ color2_strip }} regular2={{ green_strip }}
regular3={{ color3_strip }} regular3={{ yellow_strip }}
regular4={{ color4_strip }} regular4={{ blue_strip }}
regular5={{ color5_strip }} regular5={{ purple_strip }}
regular6={{ color6_strip }} regular6={{ cyan_strip }}
regular7={{ color7_strip }} regular7={{ fg_strip }}
bright0={{ color8_strip }} bright0={{ muted_strip }}
bright1={{ color9_strip }} bright1={{ bright_red_strip }}
bright2={{ color10_strip }} bright2={{ bright_green_strip }}
bright3={{ color11_strip }} bright3={{ bright_yellow_strip }}
bright4={{ color12_strip }} bright4={{ bright_blue_strip }}
bright5={{ color13_strip }} bright5={{ bright_purple_strip }}
bright6={{ color14_strip }} bright6={{ bright_cyan_strip }}
bright7={{ color15_strip }} bright7={{ bright_fg_strip }}
+16 -16
View File
@@ -4,19 +4,19 @@ cursor-color = {{ cursor }}
selection-background = {{ selection_background }} selection-background = {{ selection_background }}
selection-foreground = {{ selection_foreground }} selection-foreground = {{ selection_foreground }}
palette = 0={{ color0 }} palette = 0={{ bg }}
palette = 1={{ color1 }} palette = 1={{ red }}
palette = 2={{ color2 }} palette = 2={{ green }}
palette = 3={{ color3 }} palette = 3={{ yellow }}
palette = 4={{ color4 }} palette = 4={{ blue }}
palette = 5={{ color5 }} palette = 5={{ purple }}
palette = 6={{ color6 }} palette = 6={{ cyan }}
palette = 7={{ color7 }} palette = 7={{ fg }}
palette = 8={{ color8 }} palette = 8={{ muted }}
palette = 9={{ color9 }} palette = 9={{ bright_red }}
palette = 10={{ color10 }} palette = 10={{ bright_green }}
palette = 11={{ color11 }} palette = 11={{ bright_yellow }}
palette = 12={{ color12 }} palette = 12={{ bright_blue }}
palette = 13={{ color13 }} palette = 13={{ bright_purple }}
palette = 14={{ color14 }} palette = 14={{ bright_cyan }}
palette = 15={{ color15 }} palette = 15={{ bright_fg }}
+14 -14
View File
@@ -15,7 +15,7 @@ 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", "{{ background }}") hl.env("GUM_INPUT_PROMPT_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_PLACEHOLDER_FOREGROUND", "{{ color8 }}") hl.env("GUM_INPUT_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_INPUT_PLACEHOLDER_BACKGROUND", "{{ background }}") hl.env("GUM_INPUT_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_INPUT_CURSOR_FOREGROUND", "{{ cursor }}") hl.env("GUM_INPUT_CURSOR_FOREGROUND", "{{ cursor }}")
hl.env("GUM_INPUT_CURSOR_BACKGROUND", "{{ background }}") hl.env("GUM_INPUT_CURSOR_BACKGROUND", "{{ background }}")
@@ -46,12 +46,12 @@ hl.env("GUM_FILTER_INDICATOR_FOREGROUND", "{{ accent }}")
hl.env("GUM_FILTER_HEADER_FOREGROUND", "{{ foreground }}") hl.env("GUM_FILTER_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILTER_MATCH_BACKGROUND", "{{ background }}") hl.env("GUM_FILTER_MATCH_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_HEADER_BACKGROUND", "{{ background }}") hl.env("GUM_FILTER_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_PLACEHOLDER_FOREGROUND", "{{ color8 }}") hl.env("GUM_FILTER_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILTER_PLACEHOLDER_BACKGROUND", "{{ background }}") hl.env("GUM_FILTER_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_FILTER_INDICATOR_BACKGROUND", "{{ background }}") 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", "{{ color8 }}") hl.env("GUM_FILTER_UNSELECTED_PREFIX_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILTER_UNSELECTED_PREFIX_BACKGROUND", "{{ background }}") hl.env("GUM_FILTER_UNSELECTED_PREFIX_BACKGROUND", "{{ background }}")
-- Gum Table Style Variables -- Gum Table Style Variables
@@ -59,7 +59,7 @@ hl.env("GUM_TABLE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_TABLE_HEADER_BACKGROUND", "{{ background }}") hl.env("GUM_TABLE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_CELL_FOREGROUND", "{{ foreground }}") hl.env("GUM_TABLE_CELL_FOREGROUND", "{{ foreground }}")
hl.env("GUM_TABLE_CELL_BACKGROUND", "{{ background }}") hl.env("GUM_TABLE_CELL_BACKGROUND", "{{ background }}")
hl.env("GUM_TABLE_BORDER_FOREGROUND", "{{ color8 }}") hl.env("GUM_TABLE_BORDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_TABLE_BORDER_BACKGROUND", "{{ background }}") 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 }}")
@@ -79,11 +79,11 @@ hl.env("GUM_FILE_DIRECTORY_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_DIRECTORY_BACKGROUND", "{{ background }}") hl.env("GUM_FILE_DIRECTORY_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_FILE_FOREGROUND", "{{ foreground }}") hl.env("GUM_FILE_FILE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_FILE_BACKGROUND", "{{ background }}") hl.env("GUM_FILE_FILE_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_PERMISSIONS_FOREGROUND", "{{ color8 }}") hl.env("GUM_FILE_PERMISSIONS_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILE_PERMISSIONS_BACKGROUND", "{{ background }}") 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", "{{ color8 }}") hl.env("GUM_FILE_FILE_SIZE_FOREGROUND", "{{ muted }}")
hl.env("GUM_FILE_FILE_SIZE_BACKGROUND", "{{ background }}") hl.env("GUM_FILE_FILE_SIZE_BACKGROUND", "{{ background }}")
hl.env("GUM_FILE_HEADER_FOREGROUND", "{{ foreground }}") hl.env("GUM_FILE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_FILE_HEADER_BACKGROUND", "{{ background }}") hl.env("GUM_FILE_HEADER_BACKGROUND", "{{ background }}")
@@ -91,31 +91,31 @@ hl.env("GUM_FILE_HEADER_BACKGROUND", "{{ background }}")
-- Gum Pager Style Variables -- Gum Pager Style Variables
hl.env("GUM_PAGER_FOREGROUND", "{{ foreground }}") hl.env("GUM_PAGER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_PAGER_BACKGROUND", "{{ background }}") hl.env("GUM_PAGER_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_LINE_NUMBER_FOREGROUND", "{{ color8 }}") hl.env("GUM_PAGER_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_PAGER_LINE_NUMBER_BACKGROUND", "{{ background }}") 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", "{{ background }}") 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", "{{ background }}") hl.env("GUM_PAGER_MATCH_HIGH_BACKGROUND", "{{ background }}")
hl.env("GUM_PAGER_HELP_FOREGROUND", "{{ color8 }}") hl.env("GUM_PAGER_HELP_FOREGROUND", "{{ muted }}")
hl.env("GUM_PAGER_HELP_BACKGROUND", "{{ background }}") hl.env("GUM_PAGER_HELP_BACKGROUND", "{{ background }}")
-- Gum Write Style Variables -- Gum Write Style Variables
hl.env("GUM_WRITE_BASE_FOREGROUND", "{{ foreground }}") hl.env("GUM_WRITE_BASE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_BASE_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_BASE_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_FOREGROUND", "{{ color8 }}") hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_CURSOR_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_CURSOR_LINE_FOREGROUND", "{{ foreground }}") 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", "{{ cursor }}") hl.env("GUM_WRITE_CURSOR_FOREGROUND", "{{ cursor }}")
hl.env("GUM_WRITE_CURSOR_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_CURSOR_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_END_OF_BUFFER_FOREGROUND", "{{ color8 }}") hl.env("GUM_WRITE_END_OF_BUFFER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_END_OF_BUFFER_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_END_OF_BUFFER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_LINE_NUMBER_FOREGROUND", "{{ color8 }}") hl.env("GUM_WRITE_LINE_NUMBER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_LINE_NUMBER_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_LINE_NUMBER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_HEADER_FOREGROUND", "{{ foreground }}") hl.env("GUM_WRITE_HEADER_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_HEADER_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_HEADER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_PLACEHOLDER_FOREGROUND", "{{ color8 }}") hl.env("GUM_WRITE_PLACEHOLDER_FOREGROUND", "{{ muted }}")
hl.env("GUM_WRITE_PLACEHOLDER_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_PLACEHOLDER_BACKGROUND", "{{ background }}")
hl.env("GUM_WRITE_PROMPT_FOREGROUND", "{{ foreground }}") hl.env("GUM_WRITE_PROMPT_FOREGROUND", "{{ foreground }}")
hl.env("GUM_WRITE_PROMPT_BACKGROUND", "{{ background }}") hl.env("GUM_WRITE_PROMPT_BACKGROUND", "{{ background }}")
@@ -123,7 +123,7 @@ 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", "{{ background }}") hl.env("GUM_LOG_LEVEL_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_TIME_FOREGROUND", "{{ color8 }}") hl.env("GUM_LOG_TIME_FOREGROUND", "{{ muted }}")
hl.env("GUM_LOG_TIME_BACKGROUND", "{{ background }}") hl.env("GUM_LOG_TIME_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_PREFIX_FOREGROUND", "{{ foreground }}") hl.env("GUM_LOG_PREFIX_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_PREFIX_BACKGROUND", "{{ background }}") hl.env("GUM_LOG_PREFIX_BACKGROUND", "{{ background }}")
@@ -133,5 +133,5 @@ hl.env("GUM_LOG_KEY_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_KEY_BACKGROUND", "{{ background }}") hl.env("GUM_LOG_KEY_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_VALUE_FOREGROUND", "{{ foreground }}") hl.env("GUM_LOG_VALUE_FOREGROUND", "{{ foreground }}")
hl.env("GUM_LOG_VALUE_BACKGROUND", "{{ background }}") hl.env("GUM_LOG_VALUE_BACKGROUND", "{{ background }}")
hl.env("GUM_LOG_SEPARATOR_FOREGROUND", "{{ color8 }}") hl.env("GUM_LOG_SEPARATOR_FOREGROUND", "{{ muted }}")
hl.env("GUM_LOG_SEPARATOR_BACKGROUND", "{{ background }}") hl.env("GUM_LOG_SEPARATOR_BACKGROUND", "{{ background }}")
+9 -9
View File
@@ -121,12 +121,12 @@ foreground = "{{ foreground }}"
cursor = "{{ cursor }}" cursor = "{{ cursor }}"
selection_background = "{{ selection_background }}" selection_background = "{{ selection_background }}"
selection_foreground = "{{ selection_foreground }}" selection_foreground = "{{ selection_foreground }}"
color0 = "{{ color0 }}" color0 = "{{ background }}"
color1 = "{{ color1 }}" color1 = "{{ red }}"
color2 = "{{ color2 }}" color2 = "{{ green }}"
color3 = "{{ color3 }}" color3 = "{{ yellow }}"
color4 = "{{ color4 }}" color4 = "{{ blue }}"
color5 = "{{ color5 }}" color5 = "{{ purple }}"
color6 = "{{ color6 }}" color6 = "{{ cyan }}"
color7 = "{{ color7 }}" color7 = "{{ foreground }}"
color8 = "{{ color8 }}" color8 = "{{ muted }}"
@@ -1,10 +1,10 @@
@define-color foreground {{ foreground }}; @define-color foreground {{ foreground }};
@define-color background {{ background }}; @define-color background {{ background }};
@define-color accent {{ accent }}; @define-color accent {{ accent }};
@define-color muted {{ color8 }}; @define-color muted {{ muted }};
@define-color card_bg {{ color0 }}; @define-color card_bg {{ lighter_bg }};
@define-color text_dark {{ background }}; @define-color text_dark {{ background }};
@define-color accent_hover {{ color12 }}; @define-color accent_hover {{ bright_blue }};
@define-color selected_tab {{ accent }}; @define-color selected_tab {{ accent }};
@define-color text {{ foreground }}; @define-color text {{ foreground }};
+16 -16
View File
@@ -9,19 +9,19 @@ cursor_text_color {{ background }}
active_border_color {{ accent }} active_border_color {{ accent }}
active_tab_background {{ accent }} active_tab_background {{ accent }}
color0 {{ color0 }} color0 {{ bg }}
color1 {{ color1 }} color1 {{ red }}
color2 {{ color2 }} color2 {{ green }}
color3 {{ color3 }} color3 {{ yellow }}
color4 {{ color4 }} color4 {{ blue }}
color5 {{ color5 }} color5 {{ purple }}
color6 {{ color6 }} color6 {{ cyan }}
color7 {{ color7 }} color7 {{ fg }}
color8 {{ color8 }} color8 {{ muted }}
color9 {{ color9 }} color9 {{ bright_red }}
color10 {{ color10 }} color10 {{ bright_green }}
color11 {{ color11 }} color11 {{ bright_yellow }}
color12 {{ color12 }} color12 {{ bright_blue }}
color13 {{ color13 }} color13 {{ bright_purple }}
color14 {{ color14 }} color14 {{ bright_cyan }}
color15 {{ color15 }} color15 {{ bright_fg }}
+52
View File
@@ -0,0 +1,52 @@
return {
{
"bjarneo/aether.nvim",
branch = "v3",
name = "aether",
priority = 1000,
opts = {
colors = {
bg = "{{ bg }}",
dark_bg = "{{ dark_bg }}",
darker_bg = "{{ darker_bg }}",
lighter_bg = "{{ lighter_bg }}",
fg = "{{ fg }}",
dark_fg = "{{ dark_fg }}",
light_fg = "{{ light_fg }}",
bright_fg = "{{ bright_fg }}",
muted = "{{ muted }}",
red = "{{ red }}",
yellow = "{{ yellow }}",
orange = "{{ orange }}",
green = "{{ green }}",
cyan = "{{ cyan }}",
blue = "{{ blue }}",
purple = "{{ purple }}",
brown = "{{ brown }}",
bright_red = "{{ bright_red }}",
bright_yellow = "{{ bright_yellow }}",
bright_green = "{{ bright_green }}",
bright_cyan = "{{ bright_cyan }}",
bright_blue = "{{ bright_blue }}",
bright_purple = "{{ bright_purple }}",
accent = "{{ accent }}",
cursor = "{{ cursor }}",
foreground = "{{ foreground }}",
background = "{{ background }}",
selection = "{{ selection }}",
selection_foreground = "{{ selection_foreground }}",
selection_background = "{{ selection_background }}",
},
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "aether",
},
},
}
+25 -25
View File
@@ -12,18 +12,18 @@
--text-selection: {{ selection_background }}; --text-selection: {{ selection_background }};
/* Border color */ /* Border color */
--background-modifier-border: {{ color8 }}; --background-modifier-border: {{ muted }};
/* Semantic heading colors */ /* Semantic heading colors */
--text-title-h1: {{ color1 }}; --text-title-h1: {{ red }};
--text-title-h2: {{ color2 }}; --text-title-h2: {{ green }};
--text-title-h3: {{ color3 }}; --text-title-h3: {{ yellow }};
--text-title-h4: {{ color4 }}; --text-title-h4: {{ blue }};
--text-title-h5: {{ color5 }}; --text-title-h5: {{ purple }};
--text-title-h6: {{ color5 }}; --text-title-h6: {{ purple }};
/* Links and accents */ /* Links and accents */
--text-link: {{ color4 }}; --text-link: {{ blue }};
--text-accent: {{ accent }}; --text-accent: {{ accent }};
--text-accent-hover: {{ accent }}; --text-accent-hover: {{ accent }};
--interactive-accent: {{ accent }}; --interactive-accent: {{ accent }};
@@ -34,23 +34,23 @@
--text-faint: color-mix(in srgb, {{ foreground }} 55%, transparent); --text-faint: color-mix(in srgb, {{ foreground }} 55%, transparent);
/* Code */ /* Code */
--code-normal: {{ color6 }}; --code-normal: {{ cyan }};
/* Errors and success */ /* Errors and success */
--text-error: {{ color1 }}; --text-error: {{ red }};
--text-error-hover: {{ color1 }}; --text-error-hover: {{ red }};
--text-success: {{ color2 }}; --text-success: {{ green }};
/* Tags */ /* Tags */
--tag-color: {{ color6 }}; --tag-color: {{ cyan }};
--tag-background: {{ color8 }}; --tag-background: {{ muted }};
/* Graph */ /* Graph */
--graph-line: {{ color8 }}; --graph-line: {{ muted }};
--graph-node: {{ accent }}; --graph-node: {{ accent }};
--graph-node-focused: {{ color4 }}; --graph-node-focused: {{ blue }};
--graph-node-tag: {{ color6 }}; --graph-node-tag: {{ cyan }};
--graph-node-attachment: {{ color2 }}; --graph-node-attachment: {{ green }};
} }
/* Headers */ /* Headers */
@@ -63,16 +63,16 @@
/* Code blocks */ /* Code blocks */
.markdown-rendered code { .markdown-rendered code {
color: {{ color6 }}; color: {{ cyan }};
} }
/* Syntax highlighting */ /* Syntax highlighting */
.cm-s-obsidian span.cm-keyword { color: {{ color1 }}; } .cm-s-obsidian span.cm-keyword { color: {{ red }}; }
.cm-s-obsidian span.cm-string { color: {{ color2 }}; } .cm-s-obsidian span.cm-string { color: {{ green }}; }
.cm-s-obsidian span.cm-number { color: {{ color3 }}; } .cm-s-obsidian span.cm-number { color: {{ yellow }}; }
.cm-s-obsidian span.cm-comment { color: {{ color8 }}; } .cm-s-obsidian span.cm-comment { color: {{ muted }}; }
.cm-s-obsidian span.cm-operator { color: {{ color4 }}; } .cm-s-obsidian span.cm-operator { color: {{ blue }}; }
.cm-s-obsidian span.cm-def { color: {{ color4 }}; } .cm-s-obsidian span.cm-def { color: {{ blue }}; }
/* Links */ /* Links */
.markdown-rendered a { .markdown-rendered a {
+18 -18
View File
@@ -8,27 +8,27 @@
"selectionBackground": "{{ selection_background }}", "selectionBackground": "{{ selection_background }}",
"selectionForeground": "{{ selection_foreground }}", "selectionForeground": "{{ selection_foreground }}",
"selectedBackground": "{{ mix background accent 22% }}", "selectedBackground": "{{ mix background accent 22% }}",
"color0": "{{ color0 }}", "color0": "{{ background }}",
"color1": "{{ color1 }}", "color1": "{{ red }}",
"color2": "{{ color2 }}", "color2": "{{ green }}",
"color3": "{{ color3 }}", "color3": "{{ yellow }}",
"color4": "{{ color4 }}", "color4": "{{ blue }}",
"color5": "{{ color5 }}", "color5": "{{ purple }}",
"color6": "{{ color6 }}", "color6": "{{ cyan }}",
"color7": "{{ color7 }}", "color7": "{{ foreground }}",
"color8": "{{ color8 }}", "color8": "{{ muted }}",
"color9": "{{ color9 }}", "color9": "{{ bright_red }}",
"color10": "{{ color10 }}", "color10": "{{ bright_green }}",
"color11": "{{ color11 }}", "color11": "{{ bright_yellow }}",
"color12": "{{ color12 }}", "color12": "{{ bright_blue }}",
"color13": "{{ color13 }}", "color13": "{{ bright_purple }}",
"color14": "{{ color14 }}", "color14": "{{ bright_cyan }}",
"color15": "{{ color15 }}", "color15": "{{ bright_fg }}",
"panel": "{{ mix background foreground 6% }}", "panel": "{{ mix background foreground 6% }}",
"panelAlt": "{{ mix background foreground 10% }}", "panelAlt": "{{ mix background foreground 10% }}",
"panelPending": "{{ mix background accent 12% }}", "panelPending": "{{ mix background accent 12% }}",
"panelSuccess": "{{ mix background color2 12% }}", "panelSuccess": "{{ mix background green 12% }}",
"panelError": "{{ mix background color1 12% }}", "panelError": "{{ mix background red 12% }}",
"border": "{{ mix background foreground 30% }}", "border": "{{ mix background foreground 30% }}",
"borderMuted": "{{ mix background foreground 20% }}", "borderMuted": "{{ mix background foreground 20% }}",
"mutedText": "{{ mix foreground background 34% }}", "mutedText": "{{ mix foreground background 34% }}",
+5 -5
View File
@@ -8,7 +8,7 @@ background = "{{ background }}"
background-alpha = 1.0 background-alpha = 1.0
text = "{{ foreground }}" text = "{{ foreground }}"
# Modules calling attention to themselves (recording, voxtype, alerts, updates) # Modules calling attention to themselves (recording, voxtype, alerts, updates)
active = "{{ color1 }}" 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
# top/bottom bars; size-vertical is the width of left/right bars. With # top/bottom bars; size-vertical is the width of left/right bars. With
# scale-with-font enabled, these grow/shrink with [font] base-size. # scale-with-font enabled, these grow/shrink with [font] base-size.
@@ -188,9 +188,9 @@ selected-border-alpha = 0.25
background = "{{ background }}" background = "{{ background }}"
background-alpha = 1.0 background-alpha = 1.0
text = "{{ foreground }}" text = "{{ foreground }}"
text-error = "{{ color1 }}" text-error = "{{ red }}"
border = "{{ shell_gradient hyprland_active_border accent }}" border = "{{ shell_gradient hyprland_active_border accent }}"
border-error = "{{ color1 }}" border-error = "{{ red }}"
border-alpha = 1.0 border-alpha = 1.0
scrim = "{{ background }}" scrim = "{{ background }}"
scrim-alpha = 0.5 scrim-alpha = 0.5
@@ -206,10 +206,10 @@ accent = "{{ accent }}"
background = "{{ background }}" background = "{{ background }}"
background-alpha = 0.8 background-alpha = 0.8
text = "{{ foreground }}" text = "{{ foreground }}"
text-error = "{{ color1 }}" text-error = "{{ red }}"
border = "{{ shell_gradient hyprland_active_border foreground }}" border = "{{ shell_gradient hyprland_active_border foreground }}"
border-active = "{{ shell_gradient hyprland_active_border accent }}" border-active = "{{ shell_gradient hyprland_active_border accent }}"
border-error = "{{ color1 }}" border-error = "{{ red }}"
border-alpha = 1.0 border-alpha = 1.0
# selection is the text-selection tint inside the input field. # selection is the text-selection tint inside the input field.
selection = "{{ accent }}" selection = "{{ accent }}"
File diff suppressed because it is too large Load Diff
+14 -16
View File
@@ -222,22 +222,20 @@ foreground = "#ffffff"
background = "#000000" background = "#000000"
selection_foreground = "#000000" selection_foreground = "#000000"
selection_background = "#808080" selection_background = "#808080"
color0 = "#000000" red = "#ff0000"
color1 = "#ff0000" green = "#00ff00"
color2 = "#00ff00" yellow = "#ffff00"
color3 = "#ffff00" blue = "#0000ff"
color4 = "#0000ff" purple = "#ff00ff"
color5 = "#ff00ff" cyan = "#00ffff"
color6 = "#00ffff" muted = "#111111"
color7 = "#ffffff" bright_red = "#ff1111"
color8 = "#111111" bright_green = "#11ff11"
color9 = "#ff1111" bright_yellow = "#ffff11"
color10 = "#11ff11" bright_blue = "#1111ff"
color11 = "#ffff11" bright_purple = "#ff11ff"
color12 = "#1111ff" bright_cyan = "#11ffff"
color13 = "#ff11ff" bright_fg = "#eeeeee"
color14 = "#11ffff"
color15 = "#eeeeee"
EOF EOF
cat >"$USER_THEMED/mix-test.txt.tpl" <<'EOF' cat >"$USER_THEMED/mix-test.txt.tpl" <<'EOF'
-84
View File
@@ -1,84 +0,0 @@
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_latte.theme
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#eff1f5"
# Main text color
theme[main_fg]="#4c4f69"
# Title color for boxes
theme[title]="#4c4f69"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#1e66f5"
# Background color of selected item in processes box
theme[selected_bg]="#bcc0cc"
# Foreground color of selected item in processes box
theme[selected_fg]="#1e66f5"
# Color of inactive/disabled text
theme[inactive_fg]="#8c8fa1"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#dc8a78"
# Background color of the percentage meters
theme[meter_bg]="#bcc0cc"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#dc8a78"
# CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="#8839ef" #Mauve
theme[mem_box]="#40a02b" #Green
theme[net_box]="#e64553" #Maroon
theme[proc_box]="#1e66f5" #Blue
# Box divider line and small boxes line color
theme[div_line]="#9ca0b0"
# Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="#40a02b"
theme[temp_mid]="#df8e1d"
theme[temp_end]="#d20f39"
# CPU graph colors (Teal -> Lavender)
theme[cpu_start]="#179299"
theme[cpu_mid]="#209fb5"
theme[cpu_end]="#7287fd"
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
theme[free_start]="#8839ef"
theme[free_mid]="#7287fd"
theme[free_end]="#1e66f5"
# Mem/Disk cached meter (Sapphire -> Lavender)
theme[cached_start]="#209fb5"
theme[cached_mid]="#1e66f5"
theme[cached_end]="#7287fd"
# Mem/Disk available meter (Peach -> Red)
theme[available_start]="#fe640b"
theme[available_mid]="#e64553"
theme[available_end]="#d20f39"
# Mem/Disk used meter (Green -> Sky)
theme[used_start]="#40a02b"
theme[used_mid]="#179299"
theme[used_end]="#04a5e5"
# Download graph colors (Peach -> Red)
theme[download_start]="#fe640b"
theme[download_mid]="#e64553"
theme[download_end]="#d20f39"
# Upload graph colors (Green -> Sky)
theme[upload_start]="#40a02b"
theme[upload_mid]="#179299"
theme[upload_end]="#04a5e5"
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
theme[process_start]="#209fb5"
theme[process_mid]="#7287fd"
theme[process_end]="#8839ef"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "light"
accent = "#1e66f5" accent = "#1e66f5"
cursor = "#dc8a78" cursor = "#dc8a78"
foreground = "#4c4f69" foreground = "#4c4f69"
@@ -5,19 +7,28 @@ background = "#eff1f5"
selection_foreground = "#eff1f5" selection_foreground = "#eff1f5"
selection_background = "#dc8a78" selection_background = "#dc8a78"
color0 = "#bcc0cc" bg = "#eff1f5"
color1 = "#d20f39" lighter_bg = "#dce0e8"
color2 = "#40a02b" selection = "#ccd0da"
color3 = "#df8e1d" muted = "#acb0be"
color4 = "#1e66f5" dark_fg = "#9ca0b0"
color5 = "#ea76cb" fg = "#8c8fa1"
color6 = "#179299" light_fg = "#5c5f77"
color7 = "#5c5f77" bright_fg = "#4c4f69"
color8 = "#acb0be"
color9 = "#d20f39" red = "#d20f39"
color10 = "#40a02b" yellow = "#df8e1d"
color11 = "#df8e1d" orange = "#d84e2b"
color12 = "#1e66f5" green = "#40a02b"
color13 = "#ea76cb" cyan = "#179299"
color14 = "#179299" blue = "#1e66f5"
color15 = "#6c6f85" purple = "#ea76cb"
brown = "#6c2715"
dark_bg = "#e3e4e8"
darker_bg = "#d7d8dc"
bright_red = "#d20f39"
bright_yellow = "#df8e1d"
bright_green = "#40a02b"
bright_cyan = "#179299"
bright_blue = "#1e66f5"
bright_purple = "#ea76cb"
-1
View File
@@ -1 +0,0 @@
# This will set "prefer-light" and use "Adwaita" as the theme
-83
View File
@@ -1,83 +0,0 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#1E1E2E"
# Main text color
theme[main_fg]="#c6d0f5"
# Title color for boxes
theme[title]="#c6d0f5"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#8caaee"
# Background color of selected item in processes box
theme[selected_bg]="#51576d"
# Foreground color of selected item in processes box
theme[selected_fg]="#8caaee"
# Color of inactive/disabled text
theme[inactive_fg]="#838ba7"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#f2d5cf"
# Background color of the percentage meters
theme[meter_bg]="#51576d"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#f2d5cf"
# CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="#ca9ee6" #Mauve
theme[mem_box]="#a6d189" #Green
theme[net_box]="#ea999c" #Maroon
theme[proc_box]="#8caaee" #Blue
# Box divider line and small boxes line color
theme[div_line]="#737994"
# Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="#a6d189"
theme[temp_mid]="#e5c890"
theme[temp_end]="#e78284"
# CPU graph colors (Teal -> Lavender)
theme[cpu_start]="#81c8be"
theme[cpu_mid]="#85c1dc"
theme[cpu_end]="#babbf1"
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
theme[free_start]="#ca9ee6"
theme[free_mid]="#babbf1"
theme[free_end]="#8caaee"
# Mem/Disk cached meter (Sapphire -> Lavender)
theme[cached_start]="#85c1dc"
theme[cached_mid]="#8caaee"
theme[cached_end]="#babbf1"
# Mem/Disk available meter (Peach -> Red)
theme[available_start]="#ef9f76"
theme[available_mid]="#ea999c"
theme[available_end]="#e78284"
# Mem/Disk used meter (Green -> Sky)
theme[used_start]="#a6d189"
theme[used_mid]="#81c8be"
theme[used_end]="#99d1db"
# Download graph colors (Peach -> Red)
theme[download_start]="#ef9f76"
theme[download_mid]="#ea999c"
theme[download_end]="#e78284"
# Upload graph colors (Green -> Sky)
theme[upload_start]="#a6d189"
theme[upload_mid]="#81c8be"
theme[upload_end]="#99d1db"
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
theme[process_start]="#85c1dc"
theme[process_mid]="#babbf1"
theme[process_end]="#ca9ee6"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#89b4fa" accent = "#89b4fa"
cursor = "#f5e0dc" cursor = "#f5e0dc"
foreground = "#cdd6f4" foreground = "#cdd6f4"
@@ -5,19 +7,28 @@ background = "#1e1e2e"
selection_foreground = "#1e1e2e" selection_foreground = "#1e1e2e"
selection_background = "#f5e0dc" selection_background = "#f5e0dc"
color0 = "#45475a" bg = "#1e1e2e"
color1 = "#f38ba8" lighter_bg = "#313244"
color2 = "#a6e3a1" selection = "#45475a"
color3 = "#f9e2af" muted = "#585b70"
color4 = "#89b4fa" dark_fg = "#6c7086"
color5 = "#f5c2e7" fg = "#9399b2"
color6 = "#94e2d5" light_fg = "#bac2de"
color7 = "#bac2de" bright_fg = "#cdd6f4"
color8 = "#585b70"
color9 = "#f38ba8" red = "#f38ba8"
color10 = "#a6e3a1" yellow = "#f9e2af"
color11 = "#f9e2af" orange = "#f6b6ab"
color12 = "#89b4fa" green = "#a6e3a1"
color13 = "#f5c2e7" cyan = "#94e2d5"
color14 = "#94e2d5" blue = "#89b4fa"
color15 = "#a6adc8" purple = "#f5c2e7"
brown = "#7b5b55"
dark_bg = "#161622"
darker_bg = "#101019"
bright_red = "#f38ba8"
bright_yellow = "#f9e2af"
bright_green = "#a6e3a1"
bright_cyan = "#94e2d5"
bright_blue = "#89b4fa"
bright_purple = "#f5c2e7"
-70
View File
@@ -1,70 +0,0 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#060B1E"
# Main text color
theme[main_fg]="#ffcead"
# Title color for boxes
theme[title]="#c89dc1"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#a3bfd1"
# Background color of selected item in processes box
theme[selected_bg]="#6d7db6"
# Foreground color of selected item in processes box
theme[selected_fg]="#ffcead"
# Color of inactive/disabled text
theme[inactive_fg]="#6d7db6"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#c89dc1"
# Box outline and divider line color
theme[cpu_box]="#92a593"
theme[mem_box]="#92a593"
theme[net_box]="#92a593"
theme[proc_box]="#92a593"
theme[div_line]="#6d7db6"
# Gradient for all meters and graphs
theme[temp_start]="#a3bfd1"
theme[temp_mid]="#7d82d9"
theme[temp_end]="#92a593"
theme[cpu_start]="#a3bfd1"
theme[cpu_mid]="#7d82d9"
theme[cpu_end]="#92a593"
theme[free_start]="#7d82d9"
theme[free_mid]="#E9BB4F"
theme[free_end]="#E9BB4F"
theme[cached_start]="#E9BB4F"
theme[cached_mid]="#E9BB4F"
theme[cached_end]="#E9BB4F"
theme[available_start]="#a3bfd1"
theme[available_mid]="#a3bfd1"
theme[available_end]="#a3bfd1"
theme[used_start]="#92a593"
theme[used_mid]="#92a593"
theme[used_end]="#92a593"
theme[download_start]="#E9BB4F"
theme[download_mid]="#a3bfd1"
theme[download_end]="#7d82d9"
theme[upload_start]="#E9BB4F"
theme[upload_mid]="#a3bfd1"
theme[upload_end]="#7d82d9"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#7d82d9" accent = "#7d82d9"
cursor = "#ffcead" cursor = "#ffcead"
foreground = "#ffcead" foreground = "#ffcead"
@@ -5,19 +7,28 @@ background = "#060B1E"
selection_foreground = "#060B1E" selection_foreground = "#060B1E"
selection_background = "#ffcead" selection_background = "#ffcead"
color0 = "#3C486D" bg = "#060B1E"
color1 = "#ED5B5A" lighter_bg = "#131a3a"
color2 = "#92a593" selection = "#252e56"
color3 = "#E9BB4F" muted = "#3d4573"
color4 = "#7d82d9" dark_fg = "#6d7db6"
color5 = "#c89dc1" fg = "#9a96a8"
color6 = "#a3bfd1" light_fg = "#c9b8a6"
color7 = "#F99957" bright_fg = "#ffcead"
color8 = "#6d7db6"
color9 = "#faaaa9" red = "#ED5B5A"
color10 = "#c4cfc4" yellow = "#E9BB4F"
color11 = "#f7dc9c" orange = "#eb8b54"
color12 = "#c2c4f0" green = "#92a593"
color13 = "#ead7e7" cyan = "#a3bfd1"
color14 = "#dfeaf0" blue = "#7d82d9"
color15 = "#ffcead" purple = "#c89dc1"
brown = "#75452a"
dark_bg = "#040816"
darker_bg = "#030610"
bright_red = "#faaaa9"
bright_yellow = "#f7dc9c"
bright_green = "#c4cfc4"
bright_cyan = "#dfeaf0"
bright_blue = "#c2c4f0"
bright_purple = "#ead7e7"
-92
View File
@@ -1,92 +0,0 @@
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#2d353b"
# Main text color
theme[main_fg]="#d3c6aa"
# Title color for boxes
theme[title]="#d3c6aa"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#e67e80"
# Background color of selected items
theme[selected_bg]="#3d484d"
# Foreground color of selected items
theme[selected_fg]="#dbbc7f"
# Color of inactive/disabled text
theme[inactive_fg]="#2d353b"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#d3c6aa"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#a7c080"
# Cpu box outline color
theme[cpu_box]="#3d484d"
# Memory/disks box outline color
theme[mem_box]="#3d484d"
# Net up/down box outline color
theme[net_box]="#3d484d"
# Processes box outline color
theme[proc_box]="#3d484d"
# Box divider line and small boxes line color
theme[div_line]="#3d484d"
# Temperature graph colors
theme[temp_start]="#a7c080"
theme[temp_mid]="#dbbc7f"
theme[temp_end]="#f85552"
# CPU graph colors
theme[cpu_start]="#a7c080"
theme[cpu_mid]="#dbbc7f"
theme[cpu_end]="#f85552"
# Mem/Disk free meter
theme[free_start]="#f85552"
theme[free_mid]="#dbbc7f"
theme[free_end]="#a7c080"
# Mem/Disk cached meter
theme[cached_start]="#7fbbb3"
theme[cached_mid]="#83c092"
theme[cached_end]="#a7c080"
# Mem/Disk available meter
theme[available_start]="#f85552"
theme[available_mid]="#dbbc7f"
theme[available_end]="#a7c080"
# Mem/Disk used meter
theme[used_start]="#a7c080"
theme[used_mid]="#dbbc7f"
theme[used_end]="#f85552"
# Download graph colors
theme[download_start]="#a7c080"
theme[download_mid]="#83c092"
theme[download_end]="#7fbbb3"
# Upload graph colors
theme[upload_start]="#dbbc7f"
theme[upload_mid]="#e69875"
theme[upload_end]="#e67e80"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#a7c080"
theme[process_mid]="#e67e80"
theme[process_end]="#f85552"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#7fbbb3" accent = "#7fbbb3"
cursor = "#d3c6aa" cursor = "#d3c6aa"
foreground = "#d3c6aa" foreground = "#d3c6aa"
@@ -5,19 +7,28 @@ background = "#2d353b"
selection_foreground = "#2d353b" selection_foreground = "#2d353b"
selection_background = "#d3c6aa" selection_background = "#d3c6aa"
color0 = "#475258" bg = "#2d353b"
color1 = "#e67e80" lighter_bg = "#343f44"
color2 = "#a7c080" selection = "#3d484d"
color3 = "#dbbc7f" muted = "#475258"
color4 = "#7fbbb3" dark_fg = "#4f585e"
color5 = "#d699b6" fg = "#7a8478"
color6 = "#83c092" light_fg = "#9da9a0"
color7 = "#d3c6aa" bright_fg = "#d3c6aa"
color8 = "#475258"
color9 = "#e67e80" red = "#e67e80"
color10 = "#a7c080" yellow = "#dbbc7f"
color11 = "#dbbc7f" orange = "#e09d7f"
color12 = "#7fbbb3" green = "#a7c080"
color13 = "#d699b6" cyan = "#83c092"
color14 = "#83c092" blue = "#7fbbb3"
color15 = "#d3c6aa" purple = "#d699b6"
brown = "#704e3f"
dark_bg = "#21272c"
darker_bg = "#181d20"
bright_red = "#e67e80"
bright_yellow = "#dbbc7f"
bright_green = "#a7c080"
bright_cyan = "#83c092"
bright_blue = "#7fbbb3"
bright_purple = "#d699b6"
-78
View File
@@ -1,78 +0,0 @@
# Main bg
theme[main_bg]="#FFFCF0"
# Main text color
theme[main_fg]="#100F0F"
# Title color for boxes
theme[title]="#100F0F"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#205EA6"
# Background color of selected item in processes box
theme[selected_bg]="#414868"
# Foreground color of selected item in processes box
theme[selected_fg]="#100F0F"
# Color of inactive/disabled text
theme[inactive_fg]="#6F6E69"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#205EA6"
# Cpu box outline color
theme[cpu_box]="#6F6E69"
# Memory/disks box outline color
theme[mem_box]="#6F6E69"
# Net up/down box outline color
theme[net_box]="#6F6E69"
# Processes box outline color
theme[proc_box]="#6F6E69"
# Box divider line and small boxes line color
theme[div_line]="#6F6E69"
# Temperature graph colors
theme[temp_start]="#66800B"
theme[temp_mid]="#BC5215"
theme[temp_end]="#AF3029"
# CPU graph colors
theme[cpu_start]="#66800B"
theme[cpu_mid]="#BC5215"
theme[cpu_end]="#AF3029"
# Mem/Disk free meter
theme[free_start]="#66800B"
theme[free_mid]="#BC5215"
theme[free_end]="#AF3029"
# Mem/Disk cached meter
theme[cached_start]="#66800B"
theme[cached_mid]="#BC5215"
theme[cached_end]="#AF3029"
# Mem/Disk available meter
theme[available_start]="#66800B"
theme[available_mid]="#BC5215"
theme[available_end]="#AF3029"
# Mem/Disk used meter
theme[used_start]="#66800B"
theme[used_mid]="#BC5215"
theme[used_end]="#AF3029"
# Download graph colors
theme[download_start]="#66800B"
theme[download_mid]="#BC5215"
theme[download_end]="#AF3029"
# Upload graph colors
theme[upload_start]="#66800B"
theme[upload_mid]="#BC5215"
theme[upload_end]="#AF3029"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "light"
accent = "#205EA6" accent = "#205EA6"
cursor = "#100F0F" cursor = "#100F0F"
foreground = "#100F0F" foreground = "#100F0F"
@@ -5,19 +7,28 @@ background = "#FFFCF0"
selection_foreground = "#100F0F" selection_foreground = "#100F0F"
selection_background = "#CECDC3" selection_background = "#CECDC3"
color0 = "#DAD8CE" bg = "#FFFCF0"
color1 = "#D14D41" lighter_bg = "#E6E4D9"
color2 = "#879A39" selection = "#CECDC3"
color3 = "#D0A215" muted = "#B7B5AC"
color4 = "#205EA6" dark_fg = "#878580"
color5 = "#CE5D97" fg = "#6F6E69"
color6 = "#3AA99F" light_fg = "#403E3C"
color7 = "#B7B5AC" bright_fg = "#100F0F"
color8 = "#100F0F"
color9 = "#D14D41" red = "#D14D41"
color10 = "#879A39" yellow = "#D0A215"
color11 = "#D0A215" orange = "#d0772b"
color12 = "#4385BE" green = "#879A39"
color13 = "#CE5D97" cyan = "#3AA99F"
color14 = "#3AA99F" blue = "#205EA6"
color15 = "#CECDC3" purple = "#CE5D97"
brown = "#683b15"
dark_bg = "#f2efe4"
darker_bg = "#e5e2d8"
bright_red = "#D14D41"
bright_yellow = "#D0A215"
bright_green = "#879A39"
bright_cyan = "#3AA99F"
bright_blue = "#4385BE"
bright_purple = "#CE5D97"
-1
View File
@@ -1 +0,0 @@
# This will set "prefer-light" and use "Adwaita" as the theme
-92
View File
@@ -1,92 +0,0 @@
#Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme
#by BachoSeven
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#FFFFFF", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#282828"
# Main text color
theme[main_fg]="#a89984"
# Title color for boxes
theme[title]="#ebdbb2"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#d79921"
# Background color of selected items
theme[selected_bg]="#282828"
# Foreground color of selected items
theme[selected_fg]="#fabd2f"
# Color of inactive/disabled text
theme[inactive_fg]="#282828"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#585858"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#98971a"
# Cpu box outline color
theme[cpu_box]="#a89984"
# Memory/disks box outline color
theme[mem_box]="#a89984"
# Net up/down box outline color
theme[net_box]="#a89984"
# Processes box outline color
theme[proc_box]="#a89984"
# Box divider line and small boxes line color
theme[div_line]="#a89984"
# Temperature graph colors
theme[temp_start]="#458588"
theme[temp_mid]="#d3869b"
theme[temp_end]="#fb4394"
# CPU graph colors
theme[cpu_start]="#b8bb26"
theme[cpu_mid]="#d79921"
theme[cpu_end]="#fb4934"
# Mem/Disk free meter
theme[free_start]="#4e5900"
theme[free_mid]=""
theme[free_end]="#98971a"
# Mem/Disk cached meter
theme[cached_start]="#458588"
theme[cached_mid]=""
theme[cached_end]="#83a598"
# Mem/Disk available meter
theme[available_start]="#d79921"
theme[available_mid]=""
theme[available_end]="#fabd2f"
# Mem/Disk used meter
theme[used_start]="#cc241d"
theme[used_mid]=""
theme[used_end]="#fb4934"
# Download graph colors
theme[download_start]="#3d4070"
theme[download_mid]="#6c71c4"
theme[download_end]="#a3a8f7"
# Upload graph colors
theme[upload_start]="#701c45"
theme[upload_mid]="#b16286"
theme[upload_end]="#d3869b"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#7daea3" accent = "#7daea3"
cursor = "#bdae93" cursor = "#bdae93"
foreground = "#d4be98" foreground = "#d4be98"
@@ -5,19 +7,28 @@ background = "#282828"
selection_foreground = "#ebdbb2" selection_foreground = "#ebdbb2"
selection_background = "#d65d0e" selection_background = "#d65d0e"
color0 = "#3c3836" bg = "#282828"
color1 = "#ea6962" lighter_bg = "#3c3836"
color2 = "#a9b665" selection = "#504945"
color3 = "#d8a657" muted = "#665c54"
color4 = "#7daea3" dark_fg = "#7c6f64"
color5 = "#d3869b" fg = "#a89984"
color6 = "#89b482" light_fg = "#bdae93"
color7 = "#d4be98" bright_fg = "#d4be98"
color8 = "#3c3836"
color9 = "#ea6962" red = "#ea6962"
color10 = "#a9b665" yellow = "#d8a657"
color11 = "#d8a657" orange = "#e1875c"
color12 = "#7daea3" green = "#a9b665"
color13 = "#d3869b" cyan = "#89b482"
color14 = "#89b482" blue = "#7daea3"
color15 = "#d4be98" purple = "#d3869b"
brown = "#70432e"
dark_bg = "#1e1e1e"
darker_bg = "#161616"
bright_red = "#ea6962"
bright_yellow = "#d8a657"
bright_green = "#a9b665"
bright_cyan = "#89b482"
bright_blue = "#7daea3"
bright_purple = "#d3869b"
-70
View File
@@ -1,70 +0,0 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#0B0C16"
# Main text color
theme[main_fg]="#ddf7ff"
# Title color for boxes
theme[title]="#86a7df"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#7cf8f7"
# Background color of selected item in processes box
theme[selected_bg]="#6a6e95"
# Foreground color of selected item in processes box
theme[selected_fg]="#ddf7ff"
# Color of inactive/disabled text
theme[inactive_fg]="#6a6e95"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#86a7df"
# Box outline and divider line color
theme[cpu_box]="#4fe88f"
theme[mem_box]="#4fe88f"
theme[net_box]="#4fe88f"
theme[proc_box]="#4fe88f"
theme[div_line]="#6a6e95"
# Gradient for all meters and graphs
theme[temp_start]="#7cf8f7"
theme[temp_mid]="#829dd4"
theme[temp_end]="#4fe88f"
theme[cpu_start]="#7cf8f7"
theme[cpu_mid]="#829dd4"
theme[cpu_end]="#4fe88f"
theme[free_start]="#829dd4"
theme[free_mid]="#50f7d4"
theme[free_end]="#50f7d4"
theme[cached_start]="#50f7d4"
theme[cached_mid]="#50f7d4"
theme[cached_end]="#50f7d4"
theme[available_start]="#7cf8f7"
theme[available_mid]="#7cf8f7"
theme[available_end]="#7cf8f7"
theme[used_start]="#4fe88f"
theme[used_mid]="#4fe88f"
theme[used_end]="#4fe88f"
theme[download_start]="#50f7d4"
theme[download_mid]="#7cf8f7"
theme[download_end]="#829dd4"
theme[upload_start]="#50f7d4"
theme[upload_mid]="#7cf8f7"
theme[upload_end]="#829dd4"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#82FB9C" accent = "#82FB9C"
hyprland_active_border = "rgba(26a269ee) rgba(2ec27eee) 45deg" hyprland_active_border = "rgba(26a269ee) rgba(2ec27eee) 45deg"
cursor = "#ddf7ff" cursor = "#ddf7ff"
@@ -6,19 +8,28 @@ background = "#0B0C16"
selection_foreground = "#0B0C16" selection_foreground = "#0B0C16"
selection_background = "#ddf7ff" selection_background = "#ddf7ff"
color0 = "#3E4058" bg = "#0B0C16"
color1 = "#50f872" lighter_bg = "#151828"
color2 = "#4fe88f" selection = "#1f253a"
color3 = "#50f7d4" muted = "#2d3450"
color4 = "#829dd4" dark_fg = "#6a6e95"
color5 = "#86a7df" fg = "#8e95b8"
color6 = "#7cf8f7" light_fg = "#b5c5db"
color7 = "#85E1FB" bright_fg = "#ddf7ff"
color8 = "#6a6e95"
color9 = "#85ff9d" red = "#50f872"
color10 = "#9cf7c2" yellow = "#50f7d4"
color11 = "#a4ffec" orange = "#50f7a3"
color12 = "#c4d2ed" green = "#4fe88f"
color13 = "#cddbf4" cyan = "#7cf8f7"
color14 = "#d1fffe" blue = "#829dd4"
color15 = "#ddf7ff" purple = "#86a7df"
brown = "#287b51"
dark_bg = "#080910"
darker_bg = "#06060c"
bright_red = "#85ff9d"
bright_yellow = "#a4ffec"
bright_green = "#9cf7c2"
bright_cyan = "#d1fffe"
bright_blue = "#c4d2ed"
bright_purple = "#cddbf4"
-86
View File
@@ -1,86 +0,0 @@
# Bashtop Kanagawa-wave (https://github.com/rebelot/kanagawa.nvim) theme
# By: philikarus
# Main bg
theme[main_bg]="#1f1f28"
# Main text color
theme[main_fg]="#dcd7ba"
# Title color for boxes
theme[title]="#dcd7ba"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#C34043"
# Background color of selected item in processes box
theme[selected_bg]="#223249"
# Foreground color of selected item in processes box
theme[selected_fg]="#dca561"
# Color of inactive/disabled text
theme[inactive_fg]="#727169"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#7aa89f"
# Cpu box outline color
theme[cpu_box]="#727169"
# Memory/disks box outline color
theme[mem_box]="#727169"
# Net up/down box outline color
theme[net_box]="#727169"
# Processes box outline color
theme[proc_box]="#727169"
# Box divider line and small boxes line color
theme[div_line]="#727169"
# Temperature graph colors
theme[temp_start]="#98BB6C"
theme[temp_mid]="#DCA561"
theme[temp_end]="#E82424"
# CPU graph colors
theme[cpu_start]="#98BB6C"
theme[cpu_mid]="#DCA561"
theme[cpu_end]="#E82424"
# Mem/Disk free meter
theme[free_start]="#E82424"
theme[free_mid]="#C34043"
theme[free_end]="#FF5D62"
# Mem/Disk cached meter
theme[cached_start]="#C0A36E"
theme[cached_mid]="#DCA561"
theme[cached_end]="#FF9E3B"
# Mem/Disk available meter
theme[available_start]="#938AA9"
theme[available_mid]="#957FBB"
theme[available_end]="#9CABCA"
# Mem/Disk used meter
theme[used_start]="#658594"
theme[used_mid]="#7E9CDB"
theme[used_end]="#7FB4CA"
# Download graph colors
theme[download_start]="#7E9CDB"
theme[download_mid]="#938AA9"
theme[download_end]="#957FBB"
# Upload graph colors
theme[upload_start]="#DCA561"
theme[upload_mid]="#E6C384"
theme[upload_end]="#E82424"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#98BB6C"
theme[process_mid]="#DCA561"
theme[process_end]="#C34043"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#dcd7ba" accent = "#dcd7ba"
cursor = "#c8c093" cursor = "#c8c093"
foreground = "#dcd7ba" foreground = "#dcd7ba"
@@ -5,19 +7,28 @@ background = "#1f1f28"
selection_foreground = "#c8c093" selection_foreground = "#c8c093"
selection_background = "#2d4f67" selection_background = "#2d4f67"
color0 = "#090618" bg = "#1f1f28"
color1 = "#c34043" lighter_bg = "#223249"
color2 = "#76946a" selection = "#363646"
color3 = "#c0a36e" muted = "#54546D"
color4 = "#7e9cd8" dark_fg = "#727169"
color5 = "#957fb8" fg = "#938aa9"
color6 = "#6a9589" light_fg = "#c8c093"
color7 = "#c8c093" bright_fg = "#dcd7ba"
color8 = "#727169"
color9 = "#e82424" red = "#c34043"
color10 = "#98bb6c" yellow = "#c0a36e"
color11 = "#e6c384" orange = "#c17158"
color12 = "#7fb4ca" green = "#76946a"
color13 = "#938aa9" cyan = "#6a9589"
color14 = "#7aa89f" blue = "#7e9cd8"
color15 = "#dcd7ba" purple = "#957fb8"
brown = "#60382c"
dark_bg = "#17171e"
darker_bg = "#111116"
bright_red = "#e82424"
bright_yellow = "#e6c384"
bright_green = "#98bb6c"
bright_cyan = "#7aa89f"
bright_blue = "#7fb4ca"
bright_purple = "#938aa9"
+22 -18
View File
@@ -1,3 +1,5 @@
mode = "dark"
# Accent and UI colors # Accent and UI colors
accent = "#b59790" accent = "#b59790"
hyprland_active_border = "rgba(8a8588ee) rgba(e2dddcee)" hyprland_active_border = "rgba(8a8588ee) rgba(e2dddcee)"
@@ -16,22 +18,24 @@ background = "#0c0b0c"
selection_foreground = "#0c0b0c" selection_foreground = "#0c0b0c"
selection_background = "#FAFCFB" selection_background = "#FAFCFB"
# Normal colors (ANSI 0-7) bg = "#0c0b0c"
color0 = "#0c0b0c" lighter_bg = "#0c0b0c"
color1 = "#c38b7b" selection = "#FAFCFB"
color2 = "#87a9b0" muted = "#584e51"
color3 = "#6B5E73" dark_fg = "#584e51"
color4 = "#b59790" fg = "#FAFCFB"
color5 = "#c4d8e2" light_fg = "#cfd3cd"
color6 = "#a5a0b6" bright_fg = "#e2dddc"
color7 = "#cfd3cd"
# Bright colors (ANSI 8-15) red = "#c38b7b"
color8 = "#584e51" yellow = "#6B5E73"
color9 = "#c38b7b" green = "#87a9b0"
color10 = "#87a9b0" cyan = "#a5a0b6"
color11 = "#6B5E73" blue = "#b59790"
color12 = "#b59790" purple = "#c4d8e2"
color13 = "#c4d8e2" bright_red = "#c38b7b"
color14 = "#a5a0b6" bright_yellow = "#6B5E73"
color15 = "#e2dddc" bright_green = "#87a9b0"
bright_cyan = "#a5a0b6"
bright_blue = "#b59790"
bright_purple = "#c4d8e2"
+26 -22
View File
@@ -1,3 +1,5 @@
mode = "dark"
# Accent and UI colors # Accent and UI colors
accent = "#8bc9eb" accent = "#8bc9eb"
active_border_color = "#f2fcff" active_border_color = "#f2fcff"
@@ -5,31 +7,33 @@ active_tab_background = "#6fb8e3"
# Cursor colors # Cursor colors
cursor = "#f2fcff" cursor = "#f2fcff"
# Primary colors
foreground = "#d6e2ee" foreground = "#d6e2ee"
background = "#16242d" background = "#16242d"
# Selection colors
selection_foreground = "#1b2d40" selection_foreground = "#1b2d40"
selection_background = "#4d9ed3" selection_background = "#4d9ed3"
# Normal colors (ANSI 0-7) bg = "#16242d"
color0 = "#1b2d40" lighter_bg = "#1b2d40"
color1 = "#4d86b0" selection = "#243d56"
color2 = "#5e95bc" muted = "#304860"
color3 = "#6fa4c9" dark_fg = "#4d86b0"
color4 = "#6fb8e3" fg = "#6fa4c9"
color5 = "#8bc9eb" light_fg = "#d6e2ee"
color6 = "#b4e4f6" bright_fg = "#f2fcff"
color7 = "#d6e2ee"
# Bright colors (ANSI 8-15) red = "#4d86b0"
color8 = "#304860" yellow = "#6fa4c9"
color9 = "#73a6cb" orange = "#8bc9eb"
color10 = "#86b7d8" green = "#5e95bc"
color11 = "#9dcae5" cyan = "#b4e4f6"
color12 = "#f2fcff" blue = "#6fb8e3"
color13 = "#b1d8ee" purple = "#8bc9eb"
color14 = "#d1eef8" brown = "#456475"
color15 = "#ffffff" dark_bg = "#101b21"
darker_bg = "#0b1216"
bright_red = "#73a6cb"
bright_yellow = "#9dcae5"
bright_green = "#86b7d8"
bright_cyan = "#d1eef8"
bright_blue = "#f2fcff"
bright_purple = "#b1d8ee"
-92
View File
@@ -1,92 +0,0 @@
# ────────────────────────────────────────────────────────────
# Bashtop theme - Omarchy Matte Black
# by tahayvr
# https://github.com/tahayvr
# ────────────────────────────────────────────────────────────
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#ffffff", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]=""
# Main text color
theme[main_fg]="#EAEAEA"
# Title color for boxes
theme[title]="#8a8a8d"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#f59e0b"
# Background color of selected item in processes box
theme[selected_bg]="#f59e0b"
# Foreground color of selected item in processes box
theme[selected_fg]="#EAEAEA"
# Color of inactive/disabled text
theme[inactive_fg]="#333333"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#8a8a8d"
# Cpu box outline color
theme[cpu_box]="#8a8a8d"
# Memory/disks box outline color
theme[mem_box]="#8a8a8d"
# Net up/down box outline color
theme[net_box]="#8a8a8d"
# Processes box outline color
theme[proc_box]="#8a8a8d"
# Box divider line and small boxes line color
theme[div_line]="#8a8a8d"
# Temperature graph colors
theme[temp_start]="#8a8a8d"
theme[temp_mid]="#f59e0b"
theme[temp_end]="#b91c1c"
# CPU graph colors
theme[cpu_start]="#8a8a8d"
theme[cpu_mid]="#f59e0b"
theme[cpu_end]="#b91c1c"
# Mem/Disk free meter
theme[free_start]="#8a8a8d"
theme[free_mid]="#f59e0b"
theme[free_end]="#b91c1c"
# Mem/Disk cached meter
theme[cached_start]="#8a8a8d"
theme[cached_mid]="#f59e0b"
theme[cached_end]="#b91c1c"
# Mem/Disk available meter
theme[available_start]="#8a8a8d"
theme[available_mid]="#f59e0b"
theme[available_end]="#b91c1c"
# Mem/Disk used meter
theme[used_start]="#8a8a8d"
theme[used_mid]="#f59e0b"
theme[used_end]="#b91c1c"
# Download graph colors
theme[download_start]="#8a8a8d"
theme[download_mid]="#f59e0b"
theme[download_end]="#b91c1c"
# Upload graph colors
theme[upload_start]="#8a8a8d"
theme[upload_mid]="#f59e0b"
theme[upload_end]="#b91c1c"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#e68e0d" accent = "#e68e0d"
cursor = "#eaeaea" cursor = "#eaeaea"
foreground = "#bebebe" foreground = "#bebebe"
@@ -5,19 +7,28 @@ background = "#121212"
selection_foreground = "#bebebe" selection_foreground = "#bebebe"
selection_background = "#515151" selection_background = "#515151"
color0 = "#333333" bg = "#121212"
color1 = "#D35F5F" lighter_bg = "#1e1e1e"
color2 = "#FFC107" selection = "#2a2a2a"
color3 = "#b91c1c" muted = "#333333"
color4 = "#e68e0d" dark_fg = "#555555"
color5 = "#D35F5F" fg = "#777777"
color6 = "#bebebe" light_fg = "#8a8a8d"
color7 = "#bebebe" bright_fg = "#bebebe"
color8 = "#8a8a8d"
color9 = "#B91C1C" red = "#D35F5F"
color10 = "#FFC107" yellow = "#b91c1c"
color11 = "#b90a0a" orange = "#c63d3d"
color12 = "#f59e0b" green = "#FFC107"
color13 = "#B91C1C" cyan = "#bebebe"
color14 = "#eaeaea" blue = "#e68e0d"
color15 = "#ffffff" purple = "#D35F5F"
brown = "#631e1e"
dark_bg = "#0d0d0d"
darker_bg = "#090909"
bright_red = "#B91C1C"
bright_yellow = "#b90a0a"
bright_green = "#FFC107"
bright_cyan = "#eaeaea"
bright_blue = "#f59e0b"
bright_purple = "#B91C1C"
-70
View File
@@ -1,70 +0,0 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#222222"
# Main text color
theme[main_fg]="#c2c2b0"
# Title color for boxes
theme[title]="#bb7744"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#c9a554"
# Background color of selected item in processes box
theme[selected_bg]="#e4c47a"
# Foreground color of selected item in processes box
theme[selected_fg]="#000000"
# Color of inactive/disabled text
theme[inactive_fg]="#666666"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#bb7744"
# Box outline and divider line color
theme[cpu_box]="#5f875f"
theme[mem_box]="#5f875f"
theme[net_box]="#5f875f"
theme[proc_box]="#5f875f"
theme[div_line]="#666666"
# Gradient for all meters and graphs
theme[temp_start]="#c9a554"
theme[temp_mid]="#78824b"
theme[temp_end]="#5f875f"
theme[cpu_start]="#c9a554"
theme[cpu_mid]="#78824b"
theme[cpu_end]="#5f875f"
theme[free_start]="#78824b"
theme[free_mid]="#b36d43"
theme[free_end]="#b36d43"
theme[cached_start]="#b36d43"
theme[cached_mid]="#b36d43"
theme[cached_end]="#b36d43"
theme[available_start]="#c9a554"
theme[available_mid]="#c9a554"
theme[available_end]="#c9a554"
theme[used_start]="#5f875f"
theme[used_mid]="#5f875f"
theme[used_end]="#5f875f"
theme[download_start]="#b36d43"
theme[download_mid]="#c9a554"
theme[download_end]="#78824b"
theme[upload_start]="#b36d43"
theme[upload_mid]="#c9a554"
theme[upload_end]="#78824b"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#78824b" accent = "#78824b"
cursor = "#c7c7c7" cursor = "#c7c7c7"
foreground = "#c2c2b0" foreground = "#c2c2b0"
@@ -5,19 +7,28 @@ background = "#222222"
selection_foreground = "#c2c2b0" selection_foreground = "#c2c2b0"
selection_background = "#78824b" selection_background = "#78824b"
color0 = "#000000" bg = "#222222"
color1 = "#685742" lighter_bg = "#2c2c2c"
color2 = "#5f875f" selection = "#383838"
color3 = "#b36d43" muted = "#444444"
color4 = "#78824b" dark_fg = "#555555"
color5 = "#bb7744" fg = "#666666"
color6 = "#c9a554" light_fg = "#8a8a7e"
color7 = "#d7c483" bright_fg = "#c2c2b0"
color8 = "#666666"
color9 = "#685742" red = "#685742"
color10 = "#5f875f" yellow = "#b36d43"
color11 = "#b36d43" orange = "#8d6242"
color12 = "#78824b" green = "#5f875f"
color13 = "#bb7744" cyan = "#c9a554"
color14 = "#c9a554" blue = "#78824b"
color15 = "#d7c483" purple = "#bb7744"
brown = "#463121"
dark_bg = "#191919"
darker_bg = "#121212"
bright_red = "#685742"
bright_yellow = "#b36d43"
bright_green = "#5f875f"
bright_cyan = "#c9a554"
bright_blue = "#78824b"
bright_purple = "#bb7744"
-89
View File
@@ -1,89 +0,0 @@
#Bashtop theme with nord palette (https://www.nordtheme.com)
#by Justin Zobel <justin.zobel@gmail.com>
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#ffffff", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#2E3440"
# Main text color
theme[main_fg]="#D8DEE9"
# Title color for boxes
theme[title]="#8FBCBB"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#5E81AC"
# Background color of selected item in processes box
theme[selected_bg]="#4C566A"
# Foreground color of selected item in processes box
theme[selected_fg]="#ECEFF4"
# Color of inactive/disabled text
theme[inactive_fg]="#4C566A"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#5E81AC"
# Cpu box outline color
theme[cpu_box]="#4C566A"
# Memory/disks box outline color
theme[mem_box]="#4C566A"
# Net up/down box outline color
theme[net_box]="#4C566A"
# Processes box outline color
theme[proc_box]="#4C566A"
# Box divider line and small boxes line color
theme[div_line]="#4C566A"
# Temperature graph colors
theme[temp_start]="#81A1C1"
theme[temp_mid]="#88C0D0"
theme[temp_end]="#ECEFF4"
# CPU graph colors
theme[cpu_start]="#81A1C1"
theme[cpu_mid]="#88C0D0"
theme[cpu_end]="#ECEFF4"
# Mem/Disk free meter
theme[free_start]="#81A1C1"
theme[free_mid]="#88C0D0"
theme[free_end]="#ECEFF4"
# Mem/Disk cached meter
theme[cached_start]="#81A1C1"
theme[cached_mid]="#88C0D0"
theme[cached_end]="#ECEFF4"
# Mem/Disk available meter
theme[available_start]="#81A1C1"
theme[available_mid]="#88C0D0"
theme[available_end]="#ECEFF4"
# Mem/Disk used meter
theme[used_start]="#81A1C1"
theme[used_mid]="#88C0D0"
theme[used_end]="#ECEFF4"
# Download graph colors
theme[download_start]="#81A1C1"
theme[download_mid]="#88C0D0"
theme[download_end]="#ECEFF4"
# Upload graph colors
theme[upload_start]="#81A1C1"
theme[upload_mid]="#88C0D0"
theme[upload_end]="#ECEFF4"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#81a1c1" accent = "#81a1c1"
cursor = "#d8dee9" cursor = "#d8dee9"
foreground = "#d8dee9" foreground = "#d8dee9"
@@ -5,19 +7,28 @@ background = "#2e3440"
selection_foreground = "#d8dee9" selection_foreground = "#d8dee9"
selection_background = "#4c566a" selection_background = "#4c566a"
color0 = "#3b4252" bg = "#2e3440"
color1 = "#bf616a" lighter_bg = "#3b4252"
color2 = "#a3be8c" selection = "#434c5e"
color3 = "#ebcb8b" muted = "#4c566a"
color4 = "#81a1c1" dark_fg = "#667080"
color5 = "#b48ead" fg = "#8690a0"
color6 = "#88c0d0" light_fg = "#adb5c4"
color7 = "#e5e9f0" bright_fg = "#d8dee9"
color8 = "#4c566a"
color9 = "#bf616a" red = "#bf616a"
color10 = "#a3be8c" yellow = "#ebcb8b"
color11 = "#ebcb8b" orange = "#d5967a"
color12 = "#81a1c1" green = "#a3be8c"
color13 = "#b48ead" cyan = "#88c0d0"
color14 = "#8fbcbb" blue = "#81a1c1"
color15 = "#eceff4" purple = "#b48ead"
brown = "#6a4b3d"
dark_bg = "#222730"
darker_bg = "#191c23"
bright_red = "#bf616a"
bright_yellow = "#ebcb8b"
bright_green = "#a3be8c"
bright_cyan = "#8fbcbb"
bright_blue = "#81a1c1"
bright_purple = "#b48ead"
-87
View File
@@ -1,87 +0,0 @@
# Main background
theme[main_bg]="#111c18"
# Main text color
theme[main_fg]="#F7E8B2"
# Title color for boxes
theme[title]="#D6D5BC"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#E67D64"
# Background color of selected items
theme[selected_bg]="#364538"
# Foreground color of selected items
theme[selected_fg]="#DEB266"
# Color of inactive/disabled text
theme[inactive_fg]="#32473B"
# Color of text appearing on top of graphs
theme[graph_text]="#E6D8BA"
# Misc colors for processes box
theme[proc_misc]="#E6D8BA"
# Cpu box outline color
theme[cpu_box]="#81B8A8"
# Memory/disks box outline color
theme[mem_box]="#81B8A8"
# Net up/down box outline color
theme[net_box]="#81B8A8"
# Processes box outline color
theme[proc_box]="#81B8A8"
# Box divider line and small boxes line color
theme[div_line]="#81B8A8"
# Temperature graph colors
theme[temp_start]="#BFD99A"
theme[temp_mid]="#E1B55E"
theme[temp_end]="#DBB05C"
# CPU graph colors
theme[cpu_start]="#5F8C86"
theme[cpu_mid]="#629C89"
theme[cpu_end]="#76AD98"
# Mem/Disk free meter
theme[free_start]="#5F8C86"
theme[free_mid]="#629C89"
theme[free_end]="#76AD98"
# Mem/Disk cached meter
theme[cached_start]="#5F8C86"
theme[cached_mid]="#629C89"
theme[cached_end]="#76AD98"
# Mem/Disk available meter
theme[available_start]="#5F8C86"
theme[available_mid]="#629C89"
theme[available_end]="#76AD98"
# Mem/Disk used meter
theme[used_start]="#5F8C86"
theme[used_mid]="#629C89"
theme[used_end]="#76AD98"
# Download graph colors
theme[download_start]="#75BBB3"
theme[download_mid]="#61949A"
theme[download_end]="#215866"
# Upload graph colors
theme[upload_start]="#215866"
theme[upload_mid]="#91C080"
theme[upload_end]="#549E6A"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#72CFA3"
theme[process_mid]="#D0D494"
theme[process_end]="#DB9F9C"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#509475" accent = "#509475"
cursor = "#D7C995" cursor = "#D7C995"
foreground = "#C1C497" foreground = "#C1C497"
@@ -5,19 +7,28 @@ background = "#111c18"
selection_foreground = "#111C18" selection_foreground = "#111C18"
selection_background = "#C1C497" selection_background = "#C1C497"
color0 = "#23372B" bg = "#111c18"
color1 = "#FF5345" lighter_bg = "#23372B"
color2 = "#549e6a" selection = "#32473B"
color3 = "#459451" muted = "#53685B"
color4 = "#509475" dark_fg = "#81B8A8"
color5 = "#D2689C" fg = "#C1C497"
color6 = "#2DD5B7" light_fg = "#D6D5BC"
color7 = "#F6F5DD" bright_fg = "#F7E8B2"
color8 = "#53685B"
color9 = "#db9f9c" red = "#FF5345"
color10 = "#63b07a" yellow = "#459451"
color11 = "#E5C736" orange = "#a2734b"
color12 = "#ACD4CF" green = "#549e6a"
color13 = "#75bbb3" cyan = "#2DD5B7"
color14 = "#8CD3CB" blue = "#509475"
color15 = "#9eebb3" purple = "#D2689C"
brown = "#513925"
dark_bg = "#0c1512"
darker_bg = "#090f0d"
bright_red = "#db9f9c"
bright_yellow = "#E5C736"
bright_green = "#63b07a"
bright_cyan = "#8CD3CB"
bright_blue = "#ACD4CF"
bright_purple = "#75bbb3"
+26 -27
View File
@@ -1,35 +1,34 @@
# Accent and UI colors mode = "dark"
accent = "#faa968" accent = "#faa968"
active_border_color = "#faa968"
active_tab_background = "#faa968"
# Cursor colors
cursor = "#f6dcac" cursor = "#f6dcac"
# Primary colors
foreground = "#f6dcac" foreground = "#f6dcac"
background = "#05182e" background = "#05182e"
# Selection colors
selection_foreground = "#00172e" selection_foreground = "#00172e"
selection_background = "#faa968" selection_background = "#faa968"
# Normal colors (ANSI 0-7) bg = "#05182e"
color0 = "#303442" lighter_bg = "#0a2540"
color1 = "#f85525" selection = "#134e5a"
color2 = "#028391" muted = "#2a6b78"
color3 = "#e97b3c" dark_fg = "#3f8f8a"
color4 = "#faa968" fg = "#8cbfb8"
color5 = "#3f8f8a" light_fg = "#a7c9c6"
color6 = "#8cbfb8" bright_fg = "#f6dcac"
color7 = "#a7c9c6"
# Bright colors (ANSI 8-15) red = "#f85525"
color8 = "#134e5a" yellow = "#e97b3c"
color9 = "#f85525" orange = "#faa968"
color10 = "#028391" green = "#028391"
color11 = "#e97b3c" cyan = "#8cbfb8"
color12 = "#faa968" blue = "#3f8f8a"
color13 = "#3f8f8a" purple = "#3f8f8a"
color14 = "#8cbfb8" brown = "#743d1e"
color15 = "#f6dcac" dark_bg = "#031222"
darker_bg = "#020c17"
bright_red = "#f85525"
bright_yellow = "#e97b3c"
bright_green = "#028391"
bright_cyan = "#8cbfb8"
bright_blue = "#faa968"
bright_purple = "#3f8f8a"
-82
View File
@@ -1,82 +0,0 @@
#Btop monokai pro ristretto theme
#Reconfigured from monokai theme
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#2c2421"
# Main text color
theme[main_fg]="#e6d9db"
# Title color for boxes
theme[title]="#e6d9db"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#fd6883"
# Background color of selected item in processes box
theme[selected_bg]="#3d2f2a"
# Foreground color of selected item in processes box
theme[selected_fg]="#e6d9db"
# Color of inactive/disabled text
theme[inactive_fg]="#72696a"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#adda78"
# Cpu box outline color
theme[cpu_box]="#5b4a45"
# Memory/disks box outline color
theme[mem_box]="#5b4a45"
# Net up/down box outline color
theme[net_box]="#5b4a45"
# Processes box outline color
theme[proc_box]="#5b4a45"
# Box divider line and small boxes line color
theme[div_line]="#72696a"
# Temperature graph colors
theme[temp_start]="#a8a9eb"
theme[temp_mid]="#f38d70"
theme[temp_end]="#fd6a85"
# CPU graph colors
theme[cpu_start]="#adda78"
theme[cpu_mid]="#f9cc6c"
theme[cpu_end]="#fd6883"
# Mem/Disk free meter
theme[free_start]="#5b4a45"
theme[free_mid]="#adda78"
theme[free_end]="#c5e2a3"
# Mem/Disk cached meter
theme[cached_start]="#5b4a45"
theme[cached_mid]="#85dacc"
theme[cached_end]="#b3e8dd"
# Mem/Disk available meter
theme[available_start]="#5b4a45"
theme[available_mid]="#f9cc6c"
theme[available_end]="#fce2a3"
# Mem/Disk used meter
theme[used_start]="#5b4a45"
theme[used_mid]="#fd6a85"
theme[used_end]="#feb5c7"
# Download graph colors
theme[download_start]="#3d2f2a"
theme[download_mid]="#a8a9eb"
theme[download_end]="#c5c6f0"
# Upload graph colors
theme[upload_start]="#3d2f2a"
theme[upload_mid]="#fd6a85"
theme[upload_end]="#feb5c7"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#f38d70" accent = "#f38d70"
cursor = "#c3b7b8" cursor = "#c3b7b8"
foreground = "#e6d9db" foreground = "#e6d9db"
@@ -5,19 +7,28 @@ background = "#2c2525"
selection_foreground = "#e6d9db" selection_foreground = "#e6d9db"
selection_background = "#403e41" selection_background = "#403e41"
color0 = "#72696a" bg = "#2c2525"
color1 = "#fd6883" lighter_bg = "#3d2f2a"
color2 = "#adda78" selection = "#403e41"
color3 = "#f9cc6c" muted = "#5b4a45"
color4 = "#f38d70" dark_fg = "#72696a"
color5 = "#a8a9eb" fg = "#948a8b"
color6 = "#85dacc" light_fg = "#c3b7b8"
color7 = "#e6d9db" bright_fg = "#e6d9db"
color8 = "#948a8b"
color9 = "#ff8297" red = "#fd6883"
color10 = "#c8e292" yellow = "#f9cc6c"
color11 = "#fcd675" orange = "#fb9a77"
color12 = "#f8a788" green = "#adda78"
color13 = "#bebffd" cyan = "#85dacc"
color14 = "#9bf1e1" blue = "#f38d70"
color15 = "#f1e5e7" purple = "#a8a9eb"
brown = "#7d4d3b"
dark_bg = "#211b1b"
darker_bg = "#181414"
bright_red = "#ff8297"
bright_yellow = "#fcd675"
bright_green = "#c8e292"
bright_cyan = "#9bf1e1"
bright_blue = "#f8a788"
bright_purple = "#bebffd"
-119
View File
@@ -1,119 +0,0 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#faf4ed"
# Base
# Main text color
theme[main_fg]="#575279"
# Text
# Title color for boxes
theme[title]="#908caa"
# Subtle
# Highlight color for keyboard shortcuts
theme[hi_fg]="#e0def4"
# Text
# Background color of selected item in processes box
theme[selected_bg]="#524f67"
# HL High
# Foreground color of selected item in processes box
theme[selected_fg]="#f6c177"
# Gold
# Color of inactive/disabled text
theme[inactive_fg]="#403d52"
# HL Med
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#9ccfd8"
# Foam
# Background color of the percentage meters
theme[meter_bg]="#9ccfd8"
# Foam
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#c4a7e7"
# Iris
# Cpu box outline color
theme[cpu_box]="#ebbcba"
# Rose
# Memory/disks box outline color
theme[mem_box]="#31748f"
# Pine
# Net up/down box outline color
theme[net_box]="#c4a7e7"
# Iris
# Processes box outline color
theme[proc_box]="#eb6f92"
# Love
# Box divider line and small boxes line color
theme[div_line]="#6e6a86"
# Muted
# Temperature graph colors
theme[temp_start]="#ebbcba"
# Rose
theme[temp_mid]="#f6c177"
# Gold
theme[temp_end]="#eb6f92"
# Love
# CPU graph colors
theme[cpu_start]="#f6c177"
# Gold
theme[cpu_mid]="#ebbcba"
# Rose
theme[cpu_end]="#eb6f92"
# Love
# Mem/Disk free meter
# all love
theme[free_start]="#eb6f92"
theme[free_mid]="#eb6f92"
theme[free_end]="#eb6f92"
# Mem/Disk cached meter
# all iris
theme[cached_start]="#c4a7e7"
theme[cached_mid]="#c4a7e7"
theme[cached_end]="#c4a7e7"
# Mem/Disk available meter
# all pine
theme[available_start]="#31748f"
theme[available_mid]="#31748f"
theme[available_end]="#31748f"
# Mem/Disk used meter
# all rose
theme[used_start]="#ebbcba"
theme[used_mid]="#ebbcba"
theme[used_end]="#ebbcba"
# Download graph colors
# Pine for start, foam for the rest
theme[download_start]="#31748f"
theme[download_mid]="#9ccfd8"
theme[download_end]="#9ccfd8"
# Upload graph colors
theme[upload_start]="#ebbcba"
# Rose for start
theme[upload_mid]="#eb6f92"
# Love for mid and end
theme[upload_end]="#eb6f92"
# Process box color gradient for threads, mem and cpu usage
theme[process_start]="#31748f"
# Pine
theme[process_mid]="#9ccfd8"
# Foam for mid and end
theme[process_end]="#9ccfd8"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "light"
accent = "#56949f" accent = "#56949f"
cursor = "#cecacd" cursor = "#cecacd"
foreground = "#575279" foreground = "#575279"
@@ -5,19 +7,28 @@ background = "#faf4ed"
selection_foreground = "#575279" selection_foreground = "#575279"
selection_background = "#dfdad9" selection_background = "#dfdad9"
color0 = "#f2e9e1" bg = "#faf4ed"
color1 = "#b4637a" lighter_bg = "#f2e9e1"
color2 = "#286983" selection = "#dfdad9"
color3 = "#ea9d34" muted = "#cecacd"
color4 = "#56949f" dark_fg = "#9893a5"
color5 = "#907aa9" fg = "#908caa"
color6 = "#d7827e" light_fg = "#6e6a86"
color7 = "#575279" bright_fg = "#575279"
color8 = "#9893a5"
color9 = "#b4637a" red = "#b4637a"
color10 = "#286983" yellow = "#ea9d34"
color11 = "#ea9d34" orange = "#cf8057"
color12 = "#56949f" green = "#286983"
color13 = "#907aa9" cyan = "#d7827e"
color14 = "#d7827e" blue = "#56949f"
color15 = "#575279" purple = "#907aa9"
brown = "#67402b"
dark_bg = "#ede7e1"
darker_bg = "#e1dbd5"
bright_red = "#b4637a"
bright_yellow = "#ea9d34"
bright_green = "#286983"
bright_cyan = "#d7827e"
bright_blue = "#56949f"
bright_purple = "#907aa9"
-1
View File
@@ -1 +0,0 @@
# This will set "prefer-light" and use "Adwaita" as the theme
+22 -18
View File
@@ -1,3 +1,5 @@
mode = "dark"
# Accent and UI colors # Accent and UI colors
accent = "#798186" accent = "#798186"
hyprland_active_border = "rgba(798186ee) rgba(caccccee)" hyprland_active_border = "rgba(798186ee) rgba(caccccee)"
@@ -16,22 +18,24 @@ background = "#101315"
selection_foreground = "#101315" selection_foreground = "#101315"
selection_background = "#798186" selection_background = "#798186"
# Normal colors (ANSI 0-7) bg = "#101315"
color0 = "#101315" lighter_bg = "#101315"
color1 = "#565d60" selection = "#798186"
color2 = "#9fa5a9" muted = "#4b4e55"
color3 = "#d9dbdc" dark_fg = "#4b4e55"
color4 = "#798186" fg = "#cacccc"
color5 = "#aeaeae" light_fg = "#cbc2be"
color6 = "#707070" bright_fg = "#a5aeb4"
color7 = "#cbc2be"
# Bright colors (ANSI 8-15) red = "#565d60"
color8 = "#4b4e55" yellow = "#d9dbdc"
color9 = "#de6145" green = "#9fa5a9"
color10 = "#343d41" cyan = "#707070"
color11 = "#c9c2b4" blue = "#798186"
color12 = "#5d6367" purple = "#aeaeae"
color13 = "#9a9a9a" bright_red = "#de6145"
color14 = "#707070" bright_yellow = "#c9c2b4"
color15 = "#a5aeb4" bright_green = "#343d41"
bright_cyan = "#707070"
bright_blue = "#5d6367"
bright_purple = "#9a9a9a"
-82
View File
@@ -1,82 +0,0 @@
# Theme: tokyo-night
# By: Pascal Jaeger
# Main bg
theme[main_bg]="#1a1b26"
# Main text color
theme[main_fg]="#cfc9c2"
# Title color for boxes
theme[title]="#cfc9c2"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#7dcfff"
# Background color of selected item in processes box
theme[selected_bg]="#414868"
# Foreground color of selected item in processes box
theme[selected_fg]="#cfc9c2"
# Color of inactive/disabled text
theme[inactive_fg]="#565f89"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#7dcfff"
# Cpu box outline color
theme[cpu_box]="#565f89"
# Memory/disks box outline color
theme[mem_box]="#565f89"
# Net up/down box outline color
theme[net_box]="#565f89"
# Processes box outline color
theme[proc_box]="#565f89"
# Box divider line and small boxes line color
theme[div_line]="#565f89"
# Temperature graph colors
theme[temp_start]="#9ece6a"
theme[temp_mid]="#e0af68"
theme[temp_end]="#f7768e"
# CPU graph colors
theme[cpu_start]="#9ece6a"
theme[cpu_mid]="#e0af68"
theme[cpu_end]="#f7768e"
# Mem/Disk free meter
theme[free_start]="#9ece6a"
theme[free_mid]="#e0af68"
theme[free_end]="#f7768e"
# Mem/Disk cached meter
theme[cached_start]="#9ece6a"
theme[cached_mid]="#e0af68"
theme[cached_end]="#f7768e"
# Mem/Disk available meter
theme[available_start]="#9ece6a"
theme[available_mid]="#e0af68"
theme[available_end]="#f7768e"
# Mem/Disk used meter
theme[used_start]="#9ece6a"
theme[used_mid]="#e0af68"
theme[used_end]="#f7768e"
# Download graph colors
theme[download_start]="#9ece6a"
theme[download_mid]="#e0af68"
theme[download_end]="#f7768e"
# Upload graph colors
theme[upload_start]="#9ece6a"
theme[upload_mid]="#e0af68"
theme[upload_end]="#f7768e"
+27 -16
View File
@@ -1,3 +1,5 @@
mode = "dark"
accent = "#7aa2f7" accent = "#7aa2f7"
hyprland_active_border = "rgba(33ccffee) rgba(00ff99ee) 45deg" hyprland_active_border = "rgba(33ccffee) rgba(00ff99ee) 45deg"
cursor = "#c0caf5" cursor = "#c0caf5"
@@ -6,19 +8,28 @@ background = "#1a1b26"
selection_foreground = "#c0caf5" selection_foreground = "#c0caf5"
selection_background = "#7aa2f7" selection_background = "#7aa2f7"
color0 = "#32344a" bg = "#1a1b26"
color1 = "#f7768e" lighter_bg = "#24283b"
color2 = "#9ece6a" selection = "#292e42"
color3 = "#e0af68" muted = "#414868"
color4 = "#7aa2f7" dark_fg = "#565f89"
color5 = "#ad8ee6" fg = "#737aa2"
color6 = "#449dab" light_fg = "#a9b1d6"
color7 = "#787c99" bright_fg = "#cfc9c2"
color8 = "#444b6a"
color9 = "#ff7a93" red = "#f7768e"
color10 = "#b9f27c" yellow = "#e0af68"
color11 = "#ff9e64" orange = "#eb927b"
color12 = "#7da6ff" green = "#9ece6a"
color13 = "#bb9af7" cyan = "#449dab"
color14 = "#0db9d7" blue = "#7aa2f7"
color15 = "#acb0d0" purple = "#ad8ee6"
brown = "#75493d"
dark_bg = "#13141c"
darker_bg = "#0e0e14"
bright_red = "#ff7a93"
bright_yellow = "#ff9e64"
bright_green = "#b9f27c"
bright_cyan = "#0db9d7"
bright_blue = "#7da6ff"
bright_purple = "#bb9af7"
+24 -21
View File
@@ -1,8 +1,7 @@
# UI Colors (extended) mode = "dark"
accent = "#8d8d8d" accent = "#8d8d8d"
cursor = "#ffffff" cursor = "#ffffff"
# Primary colors
foreground = "#ffffff" foreground = "#ffffff"
background = "#000000" background = "#000000"
@@ -10,22 +9,26 @@ background = "#000000"
selection_foreground = "#000000" selection_foreground = "#000000"
selection_background = "#ffffff" selection_background = "#ffffff"
# Normal colors (ANSI 0-7) bg = "#000000"
color0 = "#404040" lighter_bg = "#000000"
color1 = "#a4a4a4" selection = "#ffffff"
color2 = "#b6b6b6" fg = "#ffffff"
color3 = "#cecece" light_fg = "#ececec"
color4 = "#8d8d8d" bright_fg = "#ffffff"
color5 = "#9b9b9b"
color6 = "#b0b0b0"
color7 = "#ececec"
# Bright colors (ANSI 8-15) red = "#a4a4a4"
color8 = "#5c5c5c" yellow = "#cecece"
color9 = "#a4a4a4" orange = "#b9b9b9"
color10 = "#b6b6b6" green = "#b6b6b6"
color11 = "#cecece" cyan = "#b0b0b0"
color12 = "#8d8d8d" blue = "#8d8d8d"
color13 = "#9b9b9b" purple = "#9b9b9b"
color14 = "#b0b0b0" brown = "#5c5c5c"
color15 = "#ffffff" dark_bg = "#090909"
darker_bg = "#070707"
bright_red = "#a4a4a4"
bright_yellow = "#cecece"
bright_green = "#b6b6b6"
bright_cyan = "#b0b0b0"
bright_blue = "#8d8d8d"
bright_purple = "#9b9b9b"
+22 -18
View File
@@ -1,3 +1,5 @@
mode = "light"
# UI Colors (extended) # UI Colors (extended)
accent = "#6e6e6e" accent = "#6e6e6e"
cursor = "#000000" cursor = "#000000"
@@ -10,22 +12,24 @@ background = "#ffffff"
selection_foreground = "#ffffff" selection_foreground = "#ffffff"
selection_background = "#1a1a1a" selection_background = "#1a1a1a"
# Normal colors (ANSI 0-7) bg = "#ffffff"
color0 = "#c0c0c0" lighter_bg = "#c0c0c0"
color1 = "#2a2a2a" selection = "#1a1a1a"
color2 = "#3a3a3a" muted = "#c0c0c0"
color3 = "#4a4a4a" dark_fg = "#c0c0c0"
color4 = "#1a1a1a" fg = "#000000"
color5 = "#2e2e2e" light_fg = "#000000"
color6 = "#3e3e3e" bright_fg = "#000000"
color7 = "#000000"
# Bright colors (ANSI 8-15) red = "#2a2a2a"
color8 = "#c0c0c0" yellow = "#4a4a4a"
color9 = "#2a2a2a" green = "#3a3a3a"
color10 = "#3a3a3a" cyan = "#3e3e3e"
color11 = "#4a4a4a" blue = "#1a1a1a"
color12 = "#1a1a1a" purple = "#2e2e2e"
color13 = "#2e2e2e" bright_red = "#2a2a2a"
color14 = "#3e3e3e" bright_yellow = "#4a4a4a"
color15 = "#000000" bright_green = "#3a3a3a"
bright_cyan = "#3e3e3e"
bright_blue = "#1a1a1a"
bright_purple = "#2e2e2e"
-1
View File
@@ -1 +0,0 @@
# This will set "prefer-light" and use "Adwaita" as the theme