nixos-config/home/themes/solarizedLight/i3bar.nix

29 lines
437 B
Nix
Raw Normal View History

2021-04-22 02:33:39 +02:00
let
2022-04-10 11:54:58 +02:00
inherit
(import ./colors.nix)
2022-01-11 16:08:21 +01:00
base00
base2
base3
blue
green
red
yellow
2022-04-10 11:54:58 +02:00
;
in {
2021-04-22 02:33:39 +02:00
theme = {
name = "solarized-light";
overrides = {
idle_bg = base2;
idle_fg = base00;
info_bg = blue;
info_fg = base3;
good_bg = green;
good_fg = base3;
warning_bg = yellow;
warning_fg = base3;
critical_bg = red;
critical_fg = base3;
};
};
}