summaryrefslogtreecommitdiff
path: root/home/xyz/.config/alacritty
diff options
context:
space:
mode:
authorXiao Pan <gky44px1999@gmail.com>2024-04-14 01:06:05 -0700
committerXiao Pan <gky44px1999@gmail.com>2024-04-14 01:06:05 -0700
commit41ecbe590387539de6d5a6723763f30082f022c4 (patch)
tree73d2095dc16d3a6aefb3d82171461df9832ef573 /home/xyz/.config/alacritty
parentcfde7ce3573eafe9efb4d6f1855fb368afaee299 (diff)
alacritty change to correct true old theme
Diffstat (limited to 'home/xyz/.config/alacritty')
-rw-r--r--home/xyz/.config/alacritty/alacritty.toml77
1 files changed, 49 insertions, 28 deletions
diff --git a/home/xyz/.config/alacritty/alacritty.toml b/home/xyz/.config/alacritty/alacritty.toml
index 22c0d2e4..eedf2085 100644
--- a/home/xyz/.config/alacritty/alacritty.toml
+++ b/home/xyz/.config/alacritty/alacritty.toml
@@ -23,36 +23,57 @@ size = 8.0
[window]
dynamic_padding = true
-# https://github.com/alacritty/alacritty-theme/blob/b7a59c92fd54a005893b99479fb0aa466a37a4b7/themes/tomorrow_night.toml
-# Colors (Tomorrow Night)
+# alacritty change default color scheme related dicussions and links:
+# Their decision to change:
+# https://github.com/alacritty/alacritty/pull/6933
+# https://github.com/alacritty/alacritty/pull/6933/commits/a68bad5eb7a26e2a5fc1d687e4ba818eb9b7e206
+# https://github.com/alacritty/alacritty/blob/91e3cd6a40aa98cf9a76e7cd3534f7fbb0a27098/CHANGELOG.md?plain=1#L48
+# Efforts about how to change back:
+# https://github.com/alacritty/alacritty/issues/7467
+# https://github.com/alacritty/alacritty-theme/pull/58
+# True old default color scheme:
+# https://github.com/alacritty/alacritty-theme/blob/master/themes/alacritty_0_12.toml
+# Alacritty's default color scheme pre-0.13 (based on tomorrow_night)
+# https://github.com/alacritty/alacritty/blob/v0.12.3/alacritty/src/config/color.rs
-# Default colors
[colors.primary]
-background = '#1d1f21'
-foreground = '#c5c8c6'
+foreground = "#c5c8c6"
+background = "#1d1f21"
-[colors.cursor]
-text = '#1d1f21'
-cursor = '#ffffff'
-
-# Normal colors
[colors.normal]
-black = '#1d1f21'
-red = '#cc6666'
-green = '#b5bd68'
-yellow = '#e6c547'
-blue = '#81a2be'
-magenta = '#b294bb'
-cyan = '#70c0ba'
-white = '#373b41'
-
-# Bright colors
+black = "#1d1f21"
+red = "#cc6666"
+green = "#b5bd68"
+yellow = "#f0c674"
+blue = "#81a2be"
+magenta = "#b294bb"
+cyan = "#8abeb7"
+white = "#c5c8c6"
+
[colors.bright]
-black = '#666666'
-red = '#ff3334'
-green = '#9ec400'
-yellow = '#f0c674'
-blue = '#81a2be'
-magenta = '#b77ee0'
-cyan = '#54ced6'
-white = '#282a2e'
+black = "#666666"
+red = "#d54e53"
+green = "#b9ca4a"
+yellow = "#e7c547"
+blue = "#7aa6da"
+magenta = "#c397d8"
+cyan = "#70c0b1"
+white = "#eaeaea"
+
+[colors.dim]
+black = "#131415"
+red = "#864343"
+green = "#777c44"
+yellow = "#9e824c"
+blue = "#556a7d"
+magenta = "#75617b"
+cyan = "#5b7d78"
+white = "#828482"
+
+[colors.hints]
+start = { foreground = "#1d1f21", background = "#e9ff5e" }
+end = { foreground = "#e9ff5e", background = "#1d1f21" }
+
+[colors.search]
+matches = { foreground = "#000000", background = "#ffffff" }
+focused_match = { foreground = "#ffffff", background = "#000000" }