mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Make color0 distinct from background/foreground The majority of themes have color0 available as a subtle offset from the background. For flexoki-light, because color0 matched foreground, it wasn't subtle, and would cause invisible text when used as a background color (e.g., in text editor rulers). For vantablack, ethereal, hackerman, and white, color0 matched background and would cause invisible text when a theme wanted text to be de-emphasized. This patch makes it consistently a subtle offset from background. * Make helix selection theme colors more subtle Helix is more usable if the selection background is subtle. This is primarily because of [[1]], which makes a bright selection like we had before often make the foreground text unreadable in the picker preview. [1]: https://github.com/helix-editor/helix/issues/12405
32 lines
578 B
TOML
32 lines
578 B
TOML
# UI Colors (extended)
|
|
accent = "#6e6e6e"
|
|
cursor = "#000000"
|
|
|
|
# Primary colors
|
|
foreground = "#000000"
|
|
background = "#ffffff"
|
|
|
|
# Selection colors
|
|
selection_foreground = "#ffffff"
|
|
selection_background = "#1a1a1a"
|
|
|
|
# Normal colors (ANSI 0-7)
|
|
color0 = "#c0c0c0"
|
|
color1 = "#2a2a2a"
|
|
color2 = "#3a3a3a"
|
|
color3 = "#4a4a4a"
|
|
color4 = "#1a1a1a"
|
|
color5 = "#2e2e2e"
|
|
color6 = "#3e3e3e"
|
|
color7 = "#000000"
|
|
|
|
# Bright colors (ANSI 8-15)
|
|
color8 = "#c0c0c0"
|
|
color9 = "#2a2a2a"
|
|
color10 = "#3a3a3a"
|
|
color11 = "#4a4a4a"
|
|
color12 = "#1a1a1a"
|
|
color13 = "#2e2e2e"
|
|
color14 = "#3e3e3e"
|
|
color15 = "#000000"
|