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

@@ -381,15 +381,15 @@
]
},
"locked": {
"lastModified": 1726001766,
"narHash": "sha256-ADvEWfo0AuHR06ah1nnzOyhsG05/b5QpUc7vFNbiEfM=",
"owner": "MarceColl",
"lastModified": 1726505190,
"narHash": "sha256-cJ2h68WZ1dlPjwBfWxo8+uKUiW6ANOQNtA2gD88u/7c=",
"owner": "clementpoiret",
"repo": "zen-browser-flake",
"rev": "06505a088396e2c0b9ad100302502783a6bcdb40",
"rev": "34b874e80aa2d1e5b08fbce376f4d398971b6d74",
"type": "github"
},
"original": {
"owner": "MarceColl",
"owner": "clementpoiret",
"repo": "zen-browser-flake",
"type": "github"
}

View File

@@ -31,7 +31,8 @@
};
zen-browser = {
url = "github:MarceColl/zen-browser-flake";
# url = "github:MarceColl/zen-browser-flake";
url = "github:clementpoiret/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};

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";