From 98a0702d56754f80eb6b9da017de10502548d14b Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Mon, 26 Jan 2026 13:12:11 +0100 Subject: Fix colors in light theme terminals #7 Instead of having color themes and making cli a bit more complicated I added a fix to make bacgkround black by default. I attached alacritty light theme. Test it with `alacritty --config-file alacritty.light.toml` and then run `xdgctl`. This could be improved in the future. --- alacritty.light.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 alacritty.light.toml (limited to 'alacritty.light.toml') diff --git a/alacritty.light.toml b/alacritty.light.toml new file mode 100644 index 0000000..7622d20 --- /dev/null +++ b/alacritty.light.toml @@ -0,0 +1,31 @@ +[colors.primary] +background = "#FFFFFF" +foreground = "#1A1A1A" + +[colors.cursor] +text = "#FFFFFF" +cursor = "#1A1A1A" + +[colors.selection] +text = "#1A1A1A" +background = "#E5E5E5" + +[colors.normal] +black = "#000000" +red = "#CC0000" +green = "#008800" +yellow = "#AA8800" +blue = "#0033CC" +magenta = "#880088" +cyan = "#008888" +white = "#E6E6E6" + +[colors.bright] +black = "#666666" +red = "#FF3333" +green = "#22AA22" +yellow = "#E6B800" +blue = "#3366FF" +magenta = "#CC33CC" +cyan = "#33CCCC" +white = "#FFFFFF" -- cgit v1.2.3