Add zathura color scheme
This commit is contained in:
parent
d7d9bfcc74
commit
18d08756cd
2 changed files with 45 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
../common
|
../common
|
||||||
|
./zathura.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
44
home/features/desktop/awesome/zathura.nix
Normal file
44
home/features/desktop/awesome/zathura.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
programs.zathura = {
|
||||||
|
enable = true;
|
||||||
|
options = {
|
||||||
|
default-fg = "#CDD6F4";
|
||||||
|
default-bg = "#1E1E2E";
|
||||||
|
|
||||||
|
completion-bg = "#313244";
|
||||||
|
completion-fg = "#CDD6F4";
|
||||||
|
completion-highlight-bg = "#575268";
|
||||||
|
completion-highlight-fg = "#CDD6F4";
|
||||||
|
completion-group-bg = "#313244";
|
||||||
|
completion-group-fg = "#89B4FA";
|
||||||
|
|
||||||
|
statusbar-fg = "#CDD6F4";
|
||||||
|
statusbar-bg = "#313244";
|
||||||
|
|
||||||
|
notification-bg = "#313244";
|
||||||
|
notification-fg = "#CDD6F4";
|
||||||
|
notification-error-bg = "#313244";
|
||||||
|
notification-error-fg = "#F38BA8";
|
||||||
|
notification-warning-bg = "#313244";
|
||||||
|
notification-warning-fg = "#FAE3B0";
|
||||||
|
|
||||||
|
inputbar-fg = "#CDD6F4";
|
||||||
|
inputbar-bg = "#313244";
|
||||||
|
|
||||||
|
recolor-lightcolor = "#1E1E2E";
|
||||||
|
recolor-darkcolor = "#CDD6F4";
|
||||||
|
|
||||||
|
index-fg = "#CDD6F4";
|
||||||
|
index-bg = "#1E1E2E";
|
||||||
|
index-active-fg = "#CDD6F4";
|
||||||
|
index-active-bg = "#313244";
|
||||||
|
|
||||||
|
render-loading-bg = "#1E1E2E";
|
||||||
|
render-loading-fg = "#CDD6F4";
|
||||||
|
|
||||||
|
highlight-color = "#575268";
|
||||||
|
highlight-fg = "#F5C2E7";
|
||||||
|
highlight-active-color = "#F5C2E7";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue