This commit is contained in:
2024-09-16 15:18:13 -04:00
parent 8022a0a2ab
commit 2e1aac9c19
6 changed files with 70 additions and 69 deletions

View File

@@ -55,62 +55,68 @@
};
#color scheme
colors = {
primary = {
background = "0x131621";
foreground = "0xa6accd";
};
cursor = {
text = "CellBackground";
cursor = "CellForeground";
};
search = {
matches = {
foreground = "0x1b1e28";
background = "0xadd7ff";
colors =
let
normal = {
black = "0x1b1e28";
red = "0xd0679d";
green = "0x5de4c7";
yellow = "0xfffac2";
blue = "#435c89";
magenta = "0xfcc5e9";
cyan = "0xadd7ff";
white = "0xffffff";
};
focused_match = {
foreground = "0x1b1e28";
background = "0xadd7ff";
bright = {
black = "0xa6accd";
red = normal.red;
green = normal.green;
yellow = normal.yellow;
blue = normal.cyan;
magenta = "0xfae4fc";
cyan = "0x89ddff";
white = normal.white;
};
in
{
inherit normal bright;
primary = {
background = "0x131621";
foreground = bright.black;
};
cursor = {
text = "CellBackground";
cursor = "CellForeground";
};
search =
let
foreground = normal.black;
background = normal.cyan;
in
{
matches = {
inherit foreground background;
};
focused_match = {
inherit foreground background;
};
};
selection = {
text = "CellForeground";
background = "0x303340";
};
vi_mode_cursor = {
text = "CellBackground";
cursor = "CellForeground";
};
};
selection = {
text = "CellForeground";
background = "0x303340";
};
vi_mode_cursor = {
text = "CellBackground";
cursor = "CellForeground";
};
normal = {
black = "0x1b1e28";
red = "0xd0679d";
green = "0x5de4c7";
yellow = "0xfffac2";
blue = "#435c89";
magenta = "0xfcc5e9";
cyan = "0xadd7ff";
white = "0xffffff";
};
bright = {
black = "0xa6accd";
red = "0xd0679d";
green = "0x5de4c7";
yellow = "0xfffac2";
blue = "0xadd7ff";
magenta = "0xfae4fc";
cyan = "0x89ddff";
white = "0xffffff";
};
};
cursor = {
style = "Underline";
vi_mode_style = "Underline";