Update color scheme and helix theme

This commit is contained in:
Alexander Bantyev 2023-01-23 22:12:37 +04:00
parent f77da666db
commit d154ffd730
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
2 changed files with 17 additions and 3 deletions

View File

@ -51,9 +51,9 @@ in {
themes.colors = { themes.colors = {
# H = 0, S = 0% # H = 0, S = 0%
base00 = "000000"; # L = 0% base00 = "000000"; # L = 0%
base01 = "333333"; # L = 20% base01 = "1a1a1a"; # L = 10%
base02 = "666666"; # L = 40% base02 = "333333"; # L = 20%
base03 = "999999"; # L = 60% base03 = "808080"; # L = 50%
base04 = "cccccc"; # L = 80% base04 = "cccccc"; # L = 80%
base05 = "ffffff"; # L = 100% base05 = "ffffff"; # L = 100%
base06 = "e6e6e6"; # L = 90% base06 = "e6e6e6"; # L = 90%

View File

@ -39,6 +39,9 @@
[[language]] [[language]]
name = "nix" name = "nix"
formatter = { command = "nixfmt", args = [] } formatter = { command = "nixfmt", args = [] }
[[language]]
name = "markdown"
language-server = { command = "vscode-markdown-language-server", args = ["--stdio"] }
''; '';
programs.helix = { programs.helix = {
enable = true; enable = true;
@ -152,6 +155,17 @@
fg = base0A; fg = base0A;
modifiers = [ "bold" ]; modifiers = [ "bold" ];
}; };
"markup.bold" = { modifiers = [ "bold" ]; };
"markup.italic" = { modifiers = [ "italic" ]; };
"markup.link" = {
underline.style = "line";
fg = base0D;
};
"markup.quote" = {
bg = base01;
modifiers = [ "italic" ];
};
"markup.raw" = { bg = base01; };
"label" = base0B; "label" = base0B;
"namespace" = base0F; "namespace" = base0F;
"diff.plus" = base0B; "diff.plus" = base0B;