Skip to content

Commit

Permalink
alalacritty: fix color
Browse files Browse the repository at this point in the history
  • Loading branch information
ocfox committed Apr 26, 2023
1 parent b5fe0ef commit 3629923
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion home-desktop/wayland/windowManager/sway.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"${modifier}+Shift+u" = "exec pamixer -i 10";
"${modifier}+Shift+d" = "exec pamixer -d 10";
"${modifier}+Shift+e" = "exec ${lib.getExe powermenu}";
"${modifier}+Return" = "exec ${pkgs.kitty}/bin/kitty";
"${modifier}+Return" = "exec ${lib.getExe pkgs.alacritty}";
"${modifier}+o" = "exec ${pkgs.bemenu}/bin/bemenu-run -c -l 15 -W 0.3";
"${modifier}+space" = "floating toggle";
"${modifier}+Shift+space" = null;
Expand Down
46 changes: 23 additions & 23 deletions home/programs/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,46 +2,46 @@
enable = true;
settings = {
window = {
opacity = 0.8;
opacity = 0.9;
};
font = {
normal = {
family = "JetBrainsMono Nerd Font";
style = "Regular";
# style = "Regular";
};
size = 16.5;
size = 10;
};

colors = {
primary = {
background = "0x2b3339";
foreground = "0xd8caac";
background = "#2b3339";
foreground = "#d8caac";
};

normal = {
black = "0x090618";
red = "0xc34043";
green = "0x76946a";
yellow = "0xc0a36e";
blue = "0x7e9cd8";
magenta = "0x957fb8";
cyan = "0x6a9589";
white = "0xc8c093";
black = "#3c474d";
red = "#e68183";
green = "#a7c080";
yellow = "#d9bb80";
blue = "#83b6af";
magenta = "#d39bb6";
cyan = "#87c095";
white = "#868d80";
};
bright = {
black = "0x727169";
red = "0xe82424";
green = "0x98bb6c";
yellow = "0xe6c384";
blue = "0x7fb4ca";
magenta = "0x938aa9";
cyan = "0x7aa89f";
white = "0xdcd7ba";
black = "#868d80";
red = "#e68183";
green = "#a7c080";
yellow = "#d9bb80";
blue = "#83b6af";
magenta = "#d39bb6";
cyan = "#87c095";
white = "#868d80";
};

selection = {
background = "0x2d4f67";
foreground = "0xc8c093";
background = "#505a60";
foreground = "#d8caac";
};
};
};
Expand Down

0 comments on commit 3629923

Please sign in to comment.