home: alacritty: setup config

This commit is contained in:
Antoine Martin 2021-04-22 00:25:39 +02:00
parent 36d8b273b7
commit 0e07f901bc
9 changed files with 196 additions and 11 deletions

View file

@ -0,0 +1,39 @@
let
colors = import ./colors.nix;
in
with colors;
{
primary = {
background = base3;
foreground = base00;
};
cursor = {
text = base3;
cursor = base00;
};
normal = {
black = base02;
red = red;
green = green;
yellow = yellow;
blue = blue;
magenta = magenta;
cyan = cyan;
white = base2;
};
bright = {
black = base03;
red = orange;
green = base01;
yellow = base00;
blue = base0;
magenta = violet;
cyan = base1;
white = base3;
};
dim = {};
}

View file

@ -1,12 +1,31 @@
{
background = "#282828";
red = "#cc241d";
green = "#98971a";
yellow = "#d79921";
blue = "#458588";
purple = "#b16286";
aqua = "#689d68";
gray = "#a89984";
darkGray = "#1d2021";
white = "#ffffff";
i3 = {
background = "#282828";
red = "#cc241d";
green = "#98971a";
yellow = "#d79921";
blue = "#458588";
purple = "#b16286";
aqua = "#689d68";
gray = "#a89984";
darkGray = "#1d2021";
white = "#ffffff";
};
base03 = "#002b36"; # brblack
base02 = "#073642"; # black
base01 = "#586e75"; # brgreen
base00 = "#657b83"; # bryellow
base0 = "#839496"; # brblue
base1 = "#93a1a1"; # brcyan
base2 = "#eee8d5"; # white
base3 = "#fdf6e3"; # brwhite
yellow = "#b58900"; # yellow
orange = "#cb4b16"; # brred
red = "#dc322f"; # red
magenta = "#d33682"; # magenta
violet = "#6c71c4"; # brmagenta
blue = "#268bd2"; # blue
cyan = "#2aa198"; # cyan
green = "#859900"; # green
}

View file

@ -1,3 +1,4 @@
{
i3Theme = import ./i3.nix;
alacrittyTheme = import ./alacritty.nix;
}

View file

@ -1,7 +1,7 @@
let
colors = import ./colors.nix;
in
with colors;
with colors.i3;
{
bar = {
background = background;