Add zathura color scheme

This commit is contained in:
GHOSCHT 2023-12-30 12:56:12 +01:00
parent d7d9bfcc74
commit 18d08756cd
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 45 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{pkgs, ...}: {
imports = [
../common
./zathura.nix
];
home = {

View 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";
};
};
}