add colours to .Xresources

This commit is contained in:
LavaDesu 2021-05-30 22:08:35 +07:00
parent 2919727b02
commit 7edc0fa1e7
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -2,4 +2,42 @@
xsession.enable = true; xsession.enable = true;
home.file.".xinitrc".source = ./scripts/xinitrc; home.file.".xinitrc".source = ./scripts/xinitrc;
xdg.configFile."xorg/wallpaper.png".source = ../../res/wallpaper.png; xdg.configFile."xorg/wallpaper.png".source = ../../res/wallpaper.png;
xresources.properties = {
# special
"*.foreground" = "#c5c8c6";
"*.background" = "#1d1f21";
"*.cursorColor" = "#c5c8c6";
# black
"*.color0" = "#1d1f21";
"*.color8" = "#969896";
# red
"*.color1" = "#cc342b";
"*.color9" = "#cc342b";
# green
"*.color2" = "#198844";
"*.color10" = "#198844";
# yellow
"*.color3" = "#fba922";
"*.color11" = "#fba922";
# blue
"*.color4" = "#3971ed";
"*.color12" = "#3971ed";
# magenta
"*.color5" = "#a36ac7";
"*.color13" = "#a36ac7";
# cyan
"*.color6" = "#3971ed";
"*.color14" = "#3971ed";
# white
"*.color7" = "#c5c8c6";
"*.color15" = "#ffffff";
};
} }