more dynamic color

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-29 22:17:03 +02:00
parent 1db9cf76f7
commit 5c92ded93d
7 changed files with 83 additions and 78 deletions

View File

@@ -59,52 +59,52 @@
}];
themes = {
base16 = with rice.color; {
"attributes" = blue.bright;
"attributes" = foreground;
"comment" = {
"fg" = white.dark;
"modifiers" = [ "italic" ];
};
"constant" = yellow.base;
"constant.character.escape" = yellow.bright;
"constant.numeric" = green.bright;
"constructor" = magenta.bright;
"debug" = yellow.dark;
"constant" = accent.bright;
"constant.character.escape" = foreground;
"constant.numeric" = foreground;
"constructor" = foreground;
"debug" = yellow.base;
"diagnostic.modifiers" = [ "underlined" ];
"diff.delta" = blue.bright;
"diff.minus" = red.bright;
"diff.plus" = green.bright;
"error" = red.bright;
"function" = cyan.bright;
"hint" = yellow.dark;
"info" = cyan.bright;
"keyword" = cyan.bright;
"label" = cyan.bright;
"namespace" = cyan.bright;
"operator" = magenta.bright;
"special" = cyan.bright;
"string" = green.bright;
"type" = green.bright;
"variable" = blue.bright;
"variableother.member" = green.base;
"warning" = blue.bright;
"error" = red.base;
"function" = foreground;
"hint" = foreground;
"info" = foreground;
"keyword" = foreground;
"label" = foreground;
"namespace" = foreground;
"operator" = foreground;
"special" = foreground;
"string" = secondary.bright;
"type" = foreground;
"variable" = accent.base;
"variableother.member" = foreground;
"warning" = red.base;
"markup.bold" = {
"fg" = green.bright;
"fg" = foreground;
"modifiers" = [ "bold" ];
};
"markup.heading" = cyan.bright;
"markup.heading" = foreground;
"italic" = {
"fg" = cyan.bright;
"fg" = foreground;
"modifiers" = [ "italic" ];
};
"markup.linktext" = red.bright;
"markup.linktext" = foreground;
"markup.linkurl" = {
"fg" = blue.bright;
"fg" = foreground;
"modifiers" = [ "underlined" ];
};
"markup.list" = red.bright;
"markup.quote" = magenta.bright;
"markup.raw" = green.bright;
"markup.list" = foreground;
"markup.quote" = foreground;
"markup.raw" = foreground;
"markup.strikethrough" = {
"modifiers" = [ "crossed_out" ];
};
@@ -126,16 +126,16 @@
"bg" = background;
};
"ui.bufferline" = { # the top line ("tab"-line)
"fg" = magenta.base;
"fg" = accent.base;
"bg" = black.base;
};
"ui.bufferline.active" = { # the active "tab"
"fg" = background;
"bg" = magenta.base;
"bg" = accent.base;
"modifiers" = [ "bold" ];
};
"ui.cursor" = { # the cursor in Normal mode
"fg" = white.base;
"fg" = foreground;
"modifiers" = [ "reversed" ];
};
"ui.cursorline.primary" = { # the line on which the cursor is on
@@ -149,7 +149,7 @@
"bg" = black.base;
};
"ui.help" = {
"fg" = cyan.base;
"fg" = green.base;
"bg" = black.base;
};
"ui.linenr" = {
@@ -157,11 +157,11 @@
"bg" = black.base;
};
"ui.linenr.selected" = {
"fg" = blue.bright;
"fg" = accent.bright;
"modifiers" = [ "bold" ];
};
"ui.menu" = {
"fg" = magenta.base;
"fg" = accent.base;
"bg" = black.base;
};
"ui.menu.scroll" = {
@@ -201,8 +201,8 @@
"fg" = cyan.bright;
"bg" = cyan.dark;
};
"ui.text" = magenta.base;
"ui.text.focus" = cyan.base;
"ui.text" = foreground;
"ui.text.focus" = accent.base;
"ui.virtual.indent-guide" = {
"fg" = black.bright;
};