home: alacritty: setup config
This commit is contained in:
parent
36d8b273b7
commit
0e07f901bc
9 changed files with 196 additions and 11 deletions
39
home/themes/solarizedLight/alacritty.nix
Normal file
39
home/themes/solarizedLight/alacritty.nix
Normal 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 = {};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue