colorschemes/palette: init

This commit is contained in:
Gaetan Lepage 2023-12-31 12:22:55 +01:00 committed by Gaétan Lepage
parent 7d0b2c2ed0
commit 965f4b0b20
3 changed files with 206 additions and 0 deletions

View file

@ -0,0 +1,55 @@
{
empty = {
colorschemes.palette.enable = true;
};
defaults = {
colorschemes.palette = {
enable = true;
palettes = {
main = "dark";
accent = "pastel";
state = "pastel";
};
customPalettes = {
main = {};
accent = {};
state = {};
};
italics = true;
transparentBackground = false;
caching = true;
cacheDir.__raw = "vim.fn.stdpath('cache') .. '/palette'";
};
};
example-custom-palette = {
colorschemes.palette = {
enable = true;
palettes = {
main = "dust_dusk";
};
customPalettes = {
main = {
dust_dusk = {
color0 = "#121527";
color1 = "#1A1E39";
color2 = "#232A4D";
color3 = "#3E4D89";
color4 = "#687BBA";
color5 = "#A4B1D6";
color6 = "#bdbfc9";
color7 = "#DFE5F1";
color8 = "#e9e9ed";
};
};
};
italics = true;
transparentBackground = false;
};
};
}