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 = "#8d8d8d"
|
|
cursor = "#ffffff"
|
|
|
|
# Primary colors
|
|
foreground = "#ffffff"
|
|
background = "#000000"
|
|
|
|
# Selection colors
|
|
selection_foreground = "#000000"
|
|
selection_background = "#ffffff"
|
|
|
|
# Normal colors (ANSI 0-7)
|
|
color0 = "#404040"
|
|
color1 = "#a4a4a4"
|
|
color2 = "#b6b6b6"
|
|
color3 = "#cecece"
|
|
color4 = "#8d8d8d"
|
|
color5 = "#9b9b9b"
|
|
color6 = "#b0b0b0"
|
|
color7 = "#ececec"
|
|
|
|
# Bright colors (ANSI 8-15)
|
|
color8 = "#fdfdfd"
|
|
color9 = "#a4a4a4"
|
|
color10 = "#b6b6b6"
|
|
color11 = "#cecece"
|
|
color12 = "#8d8d8d"
|
|
color13 = "#9b9b9b"
|
|
color14 = "#b0b0b0"
|
|
color15 = "#ffffff"
|