home: theme: switch to real solarized for i3

This commit is contained in:
Antoine Martin 2021-04-22 01:23:00 +02:00
parent fb1b440a41
commit acb4607a04
2 changed files with 29 additions and 42 deletions

View file

@ -1,17 +1,4 @@
{ {
i3 = {
background = "#282828";
red = "#cc241d";
green = "#98971a";
yellow = "#d79921";
blue = "#458588";
purple = "#b16286";
aqua = "#689d68";
gray = "#a89984";
darkGray = "#1d2021";
white = "#ffffff";
};
base03 = "#002b36"; # brblack base03 = "#002b36"; # brblack
base02 = "#073642"; # black base02 = "#073642"; # black
base01 = "#586e75"; # brgreen base01 = "#586e75"; # brgreen

View file

@ -1,64 +1,64 @@
let let
colors = import ./colors.nix; colors = import ./colors.nix;
in in
with colors.i3; with colors;
{ {
bar = { bar = {
background = background; background = base3;
statusline = yellow; statusline = yellow;
separator = red; separator = red;
focusedWorkspace = { focusedWorkspace = {
border = aqua; border = blue;
background = aqua; background = blue;
text = darkGray; text = base3; # base2 ?
}; };
inactiveWorkspace = { inactiveWorkspace = {
border = darkGray; border = base2;
background = darkGray; background = base2;
text = yellow; text = base00;
}; };
activeWorkspace = { activeWorkspace = {
border = aqua; border = blue;
background = darkGray; background = base2;
text = yellow; text = yellow;
}; };
urgentWorkspace = { urgentWorkspace = {
border = red; border = red;
background = red; background = red;
text = background; text = base3;
}; };
}; };
focused = { focused = {
border = blue; border = blue;
background = blue; background = blue;
text = darkGray; text = base3;
indicator = purple; indicator = magenta;
childBorder = darkGray; childBorder = blue;
}; };
focusedInactive = { focusedInactive = {
border = darkGray; border = base2;
background = darkGray; background = base2;
text = yellow; text = base00;
indicator = purple; indicator = magenta;
childBorder = darkGray; childBorder = base2;
}; };
unfocused = { unfocused = {
border = darkGray; border = base2;
background = darkGray; background = base2;
text = yellow; text = base00;
indicator = purple; indicator = magenta;
childBorder = darkGray; childBorder = base2;
}; };
urgent = { urgent = {
border = red; border = orange;
background = red; background = orange;
text = white; text = base3;
indicator = red; indicator = magenta;
childBorder = red; childBorder = orange;
}; };
} }