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
24 lines
461 B
TOML
24 lines
461 B
TOML
accent = "#82FB9C"
|
|
cursor = "#ddf7ff"
|
|
foreground = "#ddf7ff"
|
|
background = "#0B0C16"
|
|
selection_foreground = "#0B0C16"
|
|
selection_background = "#ddf7ff"
|
|
|
|
color0 = "#3E4058"
|
|
color1 = "#50f872"
|
|
color2 = "#4fe88f"
|
|
color3 = "#50f7d4"
|
|
color4 = "#829dd4"
|
|
color5 = "#86a7df"
|
|
color6 = "#7cf8f7"
|
|
color7 = "#85E1FB"
|
|
color8 = "#6a6e95"
|
|
color9 = "#85ff9d"
|
|
color10 = "#9cf7c2"
|
|
color11 = "#a4ffec"
|
|
color12 = "#c4d2ed"
|
|
color13 = "#cddbf4"
|
|
color14 = "#d1fffe"
|
|
color15 = "#ddf7ff"
|