diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-26 13:12:11 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-26 13:12:11 +0100 |
| commit | 98a0702d56754f80eb6b9da017de10502548d14b (patch) | |
| tree | 20695c8f2c0d8f392ad343b9379ce9c53231a15e /alacritty.light.toml | |
| parent | 7f75293b2a10a94933f63e095b23af0d3ac60cbc (diff) | |
| download | xdgctl-98a0702d56754f80eb6b9da017de10502548d14b.tar.gz | |
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.
Diffstat (limited to 'alacritty.light.toml')
| -rw-r--r-- | alacritty.light.toml | 31 |
1 files changed, 31 insertions, 0 deletions
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" |
