diff --git a/home/modules/alacritty/colors.toml b/home/modules/alacritty/colors.toml index 0c459b7..2a57edb 100644 --- a/home/modules/alacritty/colors.toml +++ b/home/modules/alacritty/colors.toml @@ -1,31 +1,28 @@ +# XTerm's default colors + +# Default colors [colors.primary] -background = "0x0d1117" -foreground = "0xb3b1ad" +background = '#ffffff' +foreground = '#000000' +# Normal colors [colors.normal] -black = "0x484f58" -red = "0xff7b72" -green = "0x3fb950" -yellow = "0xd29922" -blue = "0x58a6ff" -magenta = "0xbc8cff" -cyan = "0x39c5cf" -white = "0xb1bac4" +black = '#000000' +red = '#cd0000' +green = '#00cd00' +yellow = '#cdcd00' +blue = '#0000ee' +magenta = '#cd00cd' +cyan = '#00cdcd' +white = '#e5e5e5' +# Bright colors [colors.bright] -black = "0x6e7681" -red = "0xffa198" -green = "0x56d364" -yellow = "0xe3b341" -blue = "0x79c0ff" -magenta = "0xd2a8ff" -cyan = "0x56d4dd" -white = "0xf0f6fc" - -[[colors.indexed_colors]] -index = 16 -color = "0xd18616" - -[[colors.indexed_colors]] -index = 17 -color = "0xffa198" +black = '#7f7f7f' +red = '#ff0000' +green = '#00ff00' +yellow = '#ffff00' +blue = '#5c5cff' +magenta = '#ff00ff' +cyan = '#00ffff' +white = '#ffffff' diff --git a/home/modules/git.nix b/home/modules/git.nix index 497927c..768da26 100644 --- a/home/modules/git.nix +++ b/home/modules/git.nix @@ -48,7 +48,7 @@ in navigate = true; # use n and N to move between diff sections side-by-side = false; line-numbers = true; - light = false; + light = true; }; diff = { renames = "copies"; diff --git a/home/modules/helix/config/config.toml b/home/modules/helix/config/config.toml index 9657e4c..4d4c3ef 100644 --- a/home/modules/helix/config/config.toml +++ b/home/modules/helix/config/config.toml @@ -1,4 +1,4 @@ -theme = "ayu_dark" +theme = "emacs" [editor] line-number = "relative"