aboutsummaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-03-12 19:57:07 -0700
committerFranck Cuny <franck@fcuny.net>2023-03-12 19:57:07 -0700
commit7d576090dabd9808ab255c2d0eedb3620e1a5f01 (patch)
tree90cc5653ebc741e577c942b7c4d62df395de2104 /home
parenthome/shell: aliases and cleaner prompt (diff)
downloadinfra-7d576090dabd9808ab255c2d0eedb3620e1a5f01.tar.gz
home/alacritty: better (to me) colors
Diffstat (limited to 'home')
-rw-r--r--home/terminal/alacritty/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/home/terminal/alacritty/default.nix b/home/terminal/alacritty/default.nix
index a2b9e9a..1e74914 100644
--- a/home/terminal/alacritty/default.nix
+++ b/home/terminal/alacritty/default.nix
@@ -11,6 +11,34 @@ in
live_config_reload = true;
draw_bold_text_with_bright_colors = true;
selection = { save_to_clipboard = true; };
+ colors = {
+ primary = {
+ background = "#000000";
+ foreground = "#D3D7CF";
+ };
+
+ normal = {
+ black = "#2E3436";
+ red = "#CC0000";
+ green = "#4E9A06";
+ yellow = "#C4A000";
+ blue = "#3465A4";
+ magenta = "#EF33C0";
+ cyan = "#04B5B8";
+ white = "#D3D7CF";
+ };
+
+ bright = {
+ black = "#555753";
+ red = "#EF2929";
+ green = "#8AE234";
+ yellow = "#FCE94F";
+ blue = "#729FCF";
+ magenta = "#EE38DA";
+ cyan = "#34E2E2";
+ white = "#EEEEEC";
+ };
+ };
font = {
size = 13;
normal.family = "Source Code Pro";