about summary refs log tree commit diff
path: root/home/terminal
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-22 07:09:11 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-22 07:09:11 -0700
commit9ff4ee32470b1cd2d41aafa5dcacf3daaa60c835 (patch)
tree359f168d29335f12c22fd2b5e5e889f115d386f7 /home/terminal
parentsyncthing: add pixel (my phone) to known devices (diff)
downloadworld-9ff4ee32470b1cd2d41aafa5dcacf3daaa60c835.tar.gz
alacritty: use custom colors
The default is too dark for my eyes.
Diffstat (limited to 'home/terminal')
-rw-r--r--home/terminal/alacritty/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/home/terminal/alacritty/default.nix b/home/terminal/alacritty/default.nix
index 72a6d33..cc0766c 100644
--- a/home/terminal/alacritty/default.nix
+++ b/home/terminal/alacritty/default.nix
@@ -11,6 +11,32 @@ in {
         draw_bold_text_with_bright_colors = true;
         selection = { save_to_clipboard = true; };
         font = { size = 12; };
+        colors = {
+          primary = {
+            foreground = "#000000";
+            background = "#ffffff";
+          };
+          normal = {
+            black = "#000000";
+            red = "#a60000";
+            green = "#005e00";
+            yellow = "#813e00";
+            blue = "#0031a9";
+            magenta = "#721045";
+            cyan = "#00538b";
+            white = "#bfbfbf";
+          };
+          bright = {
+            black = "#595959";
+            red = "#972500";
+            green = "#315b00";
+            yellow = "#70480f";
+            blue = "#2544bb";
+            magenta = "#5317ac";
+            cyan = "#005a5f";
+            white = "#ffffff";
+          };
+        };
         cursor = {
           style.blinking = "Never";
           unfocused_hollow = true;