colorschemes/cyberdream: init

This commit is contained in:
theabm 2024-05-01 01:46:25 +02:00 committed by Gaétan Lepage
parent afa64f35ee
commit 82a19581de
3 changed files with 156 additions and 0 deletions

View file

@ -0,0 +1,67 @@
{
empty = {
colorschemes.cyberdream.enable = true;
};
defaults = {
colorschemes.cyberdream = {
enable = true;
settings = {
transparent = false;
italic_comments = false;
hide_fillchars = false;
borderless_telescope = true;
terminal_colors = true;
theme = {
highlights = {};
colors = {};
};
};
};
};
example = {
colorschemes.cyberdream = {
enable = true;
settings = {
transparent = false;
italic_comments = false;
hide_fillchars = false;
borderless_telescope = true;
terminal_colors = true;
theme = {
highlights = {
Comment = {
fg = "#696969";
bg = "NONE";
italic = true;
};
SpellBad = {
fg = "red";
style = "undercurl,underdashed,italic";
};
ErrorMsg = {
fg = "#000000";
bg = "#000000";
style = {
undercurl = true;
italic = true;
};
};
};
colors = {
bg = "#000000";
green = "#00ff00";
magenta = "#ff00ff";
};
};
};
};
};
}