2019-08-27 20:49:08 +00:00
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
home-manager.users.alukard = {
|
2020-08-10 01:17:22 +04:00
|
|
|
xresources.properties = with config.lib.base16.theme; {
|
|
|
|
"*foreground" = "#${base05-hex}";
|
2020-08-15 19:36:16 +04:00
|
|
|
"*background" = "#${base00-hex}";
|
|
|
|
"*cursorColor" = "#${base05-hex}";
|
2020-08-10 01:17:22 +04:00
|
|
|
"*color0" = "#${base00-hex}";
|
|
|
|
"*color1" = "#${base08-hex}";
|
|
|
|
"*color2" = "#${base0B-hex}";
|
|
|
|
"*color3" = "#${base0A-hex}";
|
|
|
|
"*color4" = "#${base0D-hex}";
|
|
|
|
"*color5" = "#${base0E-hex}";
|
|
|
|
"*color6" = "#${base0C-hex}";
|
|
|
|
"*color7" = "#${base05-hex}";
|
|
|
|
"*color8" = "#${base03-hex}";
|
|
|
|
"*color9" = "#${base09-hex}";
|
|
|
|
"*color10" = "#${base01-hex}";
|
|
|
|
"*color11" = "#${base02-hex}";
|
|
|
|
"*color12" = "#${base04-hex}";
|
|
|
|
"*color13" = "#${base06-hex}";
|
|
|
|
"*color14" = "#${base0F-hex}";
|
|
|
|
"*color15" = "#${base07-hex}";
|
2019-08-27 20:49:08 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|