users/aerc: change to catppuccin theme
This commit is contained in:
parent
7d48b963a3
commit
b194221141
5 changed files with 26 additions and 12 deletions
|
@ -85,6 +85,8 @@ in
|
||||||
extended = {
|
extended = {
|
||||||
color16 = peach;
|
color16 = peach;
|
||||||
color17 = rosewater;
|
color17 = rosewater;
|
||||||
|
color18 = crust;
|
||||||
|
color19 = mantle;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
notification = {
|
notification = {
|
||||||
|
|
|
@ -54,6 +54,8 @@ in
|
||||||
extended = {
|
extended = {
|
||||||
color16 = mkColorOption null;
|
color16 = mkColorOption null;
|
||||||
color17 = mkColorOption null;
|
color17 = mkColorOption null;
|
||||||
|
color18 = mkColorOption null;
|
||||||
|
color19 = mkColorOption null;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
notification = {
|
notification = {
|
||||||
|
|
|
@ -49,17 +49,17 @@
|
||||||
highlight clear
|
highlight clear
|
||||||
|
|
||||||
highlight Win cterm=none ctermfg=7 ctermbg=none
|
highlight Win cterm=none ctermfg=7 ctermbg=none
|
||||||
highlight TopLine cterm=none ctermfg=7 ctermbg=0
|
highlight TopLine cterm=none ctermfg=7 ctermbg=18
|
||||||
highlight TopLineSel cterm=bold ctermfg=4 ctermbg=0
|
highlight TopLineSel cterm=bold ctermfg=4 ctermbg=18
|
||||||
highlight StatusLine cterm=bold ctermfg=15 ctermbg=8
|
highlight StatusLine cterm=bold ctermfg=7 ctermbg=18
|
||||||
highlight CmdLine cterm=none ctermfg=7 ctermbg=none
|
highlight CmdLine cterm=none ctermfg=7 ctermbg=none
|
||||||
highlight Border cterm=none ctermfg=0 ctermbg=0
|
highlight Border cterm=none ctermfg=0 ctermbg=18
|
||||||
highlight OtherLine cterm=none ctermfg=none ctermbg=none
|
highlight OtherLine cterm=none ctermfg=none ctermbg=none
|
||||||
highlight JobLine cterm=bold,reverse ctermfg=black ctermbg=white
|
highlight JobLine cterm=bold,reverse ctermfg=black ctermbg=white
|
||||||
highlight TabLine cterm=none ctermfg=0 ctermbg=none
|
highlight TabLine cterm=none ctermfg=0 ctermbg=none
|
||||||
highlight TabLineSel cterm=bold ctermfg=0 ctermbg=2
|
highlight TabLineSel cterm=bold ctermfg=0 ctermbg=2
|
||||||
highlight SuggestBox cterm=bold ctermfg=0 ctermbg=17
|
highlight SuggestBox cterm=bold ctermfg=0 ctermbg=17
|
||||||
highlight WildMenu cterm=underline,reverse ctermfg=7 ctermbg=0
|
highlight WildMenu cterm=reverse ctermfg=default ctermbg=default
|
||||||
|
|
||||||
highlight Directory cterm=bold ctermfg=4 ctermbg=none
|
highlight Directory cterm=bold ctermfg=4 ctermbg=none
|
||||||
|
|
||||||
|
|
|
@ -135,17 +135,19 @@ in
|
||||||
"error.fg" = 1;
|
"error.fg" = 1;
|
||||||
"warning.fg" = 3;
|
"warning.fg" = 3;
|
||||||
"success.fg" = 2;
|
"success.fg" = 2;
|
||||||
"statusline_default.bg" = 0;
|
"msglist_unread.bold" = true;
|
||||||
|
"msglist_deleted.fg" = 10;
|
||||||
|
"tab.fg" = 0;
|
||||||
|
"tab.selected.reverse" = false;
|
||||||
|
"tab.selected.bold" = true;
|
||||||
|
"tab.selected.bg" = 2;
|
||||||
|
"dirlist_default.bg" = 18;
|
||||||
|
"border.fg" = 0;
|
||||||
|
"statusline_default.bg" = 18;
|
||||||
"statusline_error.fg" = 1;
|
"statusline_error.fg" = 1;
|
||||||
"statusline_error.reverse" = true;
|
"statusline_error.reverse" = true;
|
||||||
"statusline_success.fg" = 2;
|
"statusline_success.fg" = 2;
|
||||||
"statusline_success.reverse" = true;
|
"statusline_success.reverse" = true;
|
||||||
"msglist_unread.bold" = true;
|
|
||||||
"msglist_deleted.fg" = 10;
|
|
||||||
"tab.bg" = 11;
|
|
||||||
"tab.selected.reverse" = false;
|
|
||||||
"tab.selected.bg" = 12;
|
|
||||||
"tab.fg" = 0;
|
|
||||||
"completion_default.bg" = 0;
|
"completion_default.bg" = 0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -134,6 +134,14 @@ in
|
||||||
index = 17;
|
index = 17;
|
||||||
color = themeCfg.window.extended.color17;
|
color = themeCfg.window.extended.color17;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
index = 18;
|
||||||
|
color = themeCfg.window.extended.color18;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
index = 19;
|
||||||
|
color = themeCfg.window.extended.color19;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue