Compare commits

..

7 Commits

Author SHA1 Message Date
Lennart J. Kurzweg (Nx2)
627604d3f7 north color 2026-01-27 15:53:32 +01:00
Lennart J. Kurzweg (Nx2)
2598b7562f TERMINAL var 2026-01-27 15:53:27 +01:00
Lennart J. Kurzweg (Nx2)
b1c16c99ec better yazi 2026-01-27 15:53:19 +01:00
Lennart J. Kurzweg (Nx2)
47cce625be better helix 2026-01-27 15:53:14 +01:00
Lennart J. Kurzweg (Nx2)
9a2eeb694e tab text color fix 2026-01-27 15:52:57 +01:00
Lennart J. Kurzweg (Nx2)
3b84087084 reddit search chrome 2026-01-27 15:52:49 +01:00
Lennart J. Kurzweg (Nx2)
ccff2e66bb chatterino token 2026-01-27 15:52:22 +01:00
7 changed files with 41 additions and 26 deletions

View File

@@ -27,15 +27,15 @@
},
"NxNORTH": {
"base": {
"foreground": "#fce3ce",
"background": "#180b01"
"foreground": "#cdfded",
"background": "#001810"
},
"to_alter": {
"accent": "#f4923d",
"secondary": "#32ff9c",
"tertiary": "#f76b3a",
"special": "#3c9ff4",
"weird": "#61f43c"
"accent": "#37fab7",
"secondary": "#ff3235",
"tertiary": "#e1cc50",
"special": "#fa3679",
"weird": "#3638fa"
}
},
"NxDCS": {

Binary file not shown.

View File

@@ -65,7 +65,8 @@ in /* css */ ''
background : linear-gradient(180deg,rgba(${f secondary.dark}, ${builtins.toString rice.transparency}) 0%, rgba(${f accent.dark}, ${builtins.toString rice.transparency}) 100%) !important;
}
.tabbrowser-tab[selected="true"] {
.tabbrowser-tab[selected="true"], .tab-text[selected=""],
.tab-close-button[selected=""] {
color: ${background} !important;
}
hbox#browser {

View File

@@ -39,6 +39,9 @@ in /* css */ ''
body, html, .bg-neutral-background, .threadline, reddit-sidebar-nav, shreddit-post, aside, .reddit-search-bar, comment-body-header, shreddit-comment-tree, #flex-left-nav-container {
background-color: transparent !important;
}
#search-dropdown-results-container {
background: rgba(${f background},0.8) !important;
}
#main-content {
background-color: rgba(${f background},0.5)!important;
}

View File

@@ -305,31 +305,40 @@
"constant" = accent.bright;
"constant.character.escape" = special.bright;
"constant.numeric" = foreground;
"constructor" = weird.base;
"constructor" = secondary.bright;
"debug" = yellow.base;
"diagnostic.modifiers" = [ "underline" ];
"diff.delta" = subtle.bright;
"diff.minus" = negative.bright;
"diff.plus" = positive.bright;
"error" = red.base;
"error" = negative.base;
"function" = secondary.bright;
"hint" = tertiary.bright;
"info" = foreground;
"keyword" = special.base;
"keyword.modifiers" = [ "italic" ];
"keyword" = {
fg = special.base;
modifiers = [ "bold" ];
};
"label" = foreground;
"namespace" = weird.bright;
"operator" = foreground;
"special" = special.base;
"string" = secondary.bright;
"type" = red.base;
"variable" = accent.base;
"variableother.member" = foreground;
"warning" = red.base;
"type" = {
fg = tertiary.base;
};
"variable" = { fg = accent.base; };
"variable.builtin" = { fg = accent.base; bg = subtle.darker; };
"variable.parameter" = { fg = accent.base; bg = accent.darker; };
"warning" = yellow.base;
"markup.heading" = accent.base;
"markup.heading" = {
fg = accent.base;
bg = accent.darker;
modifiers = [ "bold" ];
};
"markup.bold" = {
fg = tertiary.bright;
fg = secondary.bright;
modifiers = [ "bold" ];
};
"italic" = {
@@ -339,7 +348,7 @@
"markup.linktext" = accent.base;
"markup.linkurl" = {
fg = tertiary.dark;
modifiers = [ "underlined" ];
underline.style = "line";
};
"markup.list" = accent.bright;
"markup.quote" = weird.bright;
@@ -398,8 +407,8 @@
bg = background;
};
"ui.menu.selected" = {
fg = secondary.base;
bg = secondary.dark;
fg = secondary.bright;
bg = secondary.darker;
};
"ui.popup" = {
bg = accent.darker;
@@ -444,9 +453,9 @@
};
"ui.virtual.jump-label" = {
fg = special.base;
underline = {
style = "dotted";
};
bg = special.dark;
underline.style = "dotted";
modifiers = [ "bold" ];
};
"ui.window" = {
bg = accent.darker;

View File

@@ -163,6 +163,7 @@ in {
# Magic
{ on = "<C-h>"; run = "shell 'hx .' --block"; desc = "Open current directoy in Helix"; }
{ on = "<C-g>"; run = "shell 'lazygit' --block"; desc = "Open current directoy in Lazygit"; }
{ on = "<C-y>"; run = ''shell 'ghostty --command="yazi"' ''; desc = "Open current directoy in a new ghostty window"; }
];
tasks.keymap = [
# Task
@@ -403,8 +404,8 @@ in {
};
tasks = {
border = { fg = border2; };
title = {};
hovered = { underline = true; };
title = { fg = accent.base; bold = true; };
hovered = { fg = accent.bright; };
};
which = {
mask = { bg = black.base; };

View File

@@ -3,6 +3,7 @@
variables = {
EDITOR = "hx";
VISUAL = "hx";
TERMINAL = "ghostty";
};
systemPackages = with pkgs; [
helix