fix: Improve accessibility by avoiding hex color code for white

Visibility of all hard coded colors depend on the terminal emulators' background-color. Accessibility can be addressed by using one’s own theme.

Yet, IMHO accessibility can be improved by removing hard hex color codes for white (and black).
This commit is contained in:
Brixy 2024-04-27 15:57:39 +02:00
parent d01e18067c
commit c021862558

View file

@ -228,8 +228,8 @@ rules = [
{ name = "*.ini" , text = "", fg = "#6d8086" },
{ name = "*.json", text = "", fg = "#cbcb41" },
{ name = "*.kdl" , text = "", fg = "#6d8086" },
{ name = "*.md" , text = "", fg = "#ffffff" },
{ name = "*.toml", text = "", fg = "#ffffff" },
{ name = "*.md" , text = "", fg = "white" },
{ name = "*.toml", text = "", fg = "white" },
{ name = "*.txt" , text = "", fg = "#89e051" },
{ name = "*.yaml", text = "", fg = "#6d8086" },
{ name = "*.yml" , text = "", fg = "#6d8086" },