about summary refs log tree commit diff
path: root/home/modules
diff options
context:
space:
mode:
Diffstat (limited to 'home/modules')
-rw-r--r--home/modules/profiles/browsing/qutebrowser-settings.nix65
1 files changed, 34 insertions, 31 deletions
diff --git a/home/modules/profiles/browsing/qutebrowser-settings.nix b/home/modules/profiles/browsing/qutebrowser-settings.nix
index 4e7fcae..3dc73d9 100644
--- a/home/modules/profiles/browsing/qutebrowser-settings.nix
+++ b/home/modules/profiles/browsing/qutebrowser-settings.nix
@@ -1,23 +1,26 @@
 let
-   base00 = "#18191f";
-   base01 = "#222329";
-   base02 = "#2c2d33";
-   base03 = "#3c3d43";
-   base04 = "#b5ac9b";
-   base05 = "#cbc0ab";
-   base06 = "#e0d6bd";
-   base07 = "#f1ebd1";
-   base08 = "#b8aad9";
-   base09 = "#b17f81";
-   base0A = "#d4ae80";
-   base0B = "#8aa387";
-   base0C = "#9ba292";
-   base0D = "#c495a2";
-   base0E = "#8896ae";
-   base0F = "#d0d0c7";
+  # Nightlamp theme by boopy <hi@boopy.dev>
+  # Modified to increase visibility on qutebrowser
+  base00 = "#18191f";
+  base01 = "#222329";
+  base02 = "#2c2d33";
+  base03 = "#3c3d43";
+  base04 = "#090a10";
+  base05 = "#cbc0ab";
+  base06 = "#e0d6bd";
+  base07 = "#27282e";
+  base08 = "#b17f81";
+  base09 = "#e9b189";
+  base0A = "#d4ae80";
+  base0B = "#8aa387";
+  base0C = "#7aacaa";
+  base0D = "#84a0c6";
+  base0E = "#a093c7";
+  base0F = "#c495a2";
 in
 {
   # Base16 qutebrowser template by theova
+  # Modified by boopy <hi@boopy.dev>
 
   # Value to use for `prefers-color-scheme:` for websites.
   # Valid values: light, dark, auto.
@@ -167,55 +170,55 @@ in
   colors.prompts.selected.fg = base05;
 
   # Foreground color of the statusbar.
-  colors.statusbar.normal.fg = base0B;
+  colors.statusbar.normal.fg = base05;
 
   # Background color of the statusbar.
   colors.statusbar.normal.bg = base00;
 
   # Foreground color of the statusbar in insert mode.
-  colors.statusbar.insert.fg = base00;
+  colors.statusbar.insert.fg = base06;
 
   # Background color of the statusbar in insert mode.
-  colors.statusbar.insert.bg = base0D;
+  colors.statusbar.insert.bg = base00;
 
   # Foreground color of the statusbar in passthrough mode.
-  colors.statusbar.passthrough.fg = base00;
+  colors.statusbar.passthrough.fg = base09;
 
   # Background color of the statusbar in passthrough mode.
-  colors.statusbar.passthrough.bg = base0C;
+  colors.statusbar.passthrough.bg = base00;
 
   # Foreground color of the statusbar in private browsing mode.
-  colors.statusbar.private.fg = base00;
+  colors.statusbar.private.fg = base06;
 
   # Background color of the statusbar in private browsing mode.
   colors.statusbar.private.bg = base01;
 
   # Foreground color of the statusbar in command mode.
-  colors.statusbar.command.fg = base05;
+  colors.statusbar.command.fg = base0E;
 
   # Background color of the statusbar in command mode.
   colors.statusbar.command.bg = base00;
 
   # Foreground color of the statusbar in private browsing + command mode.
-  colors.statusbar.command.private.fg = base05;
+  colors.statusbar.command.private.fg = base06;
 
   # Background color of the statusbar in private browsing + command mode.
   colors.statusbar.command.private.bg = base00;
 
   # Foreground color of the statusbar in caret mode.
-  colors.statusbar.caret.fg = base00;
+  colors.statusbar.caret.fg = base09;
 
   # Background color of the statusbar in caret mode.
-  colors.statusbar.caret.bg = base0E;
+  colors.statusbar.caret.bg = base00;
 
   # Foreground color of the statusbar in caret mode with a selection.
-  colors.statusbar.caret.selection.fg = base00;
+  colors.statusbar.caret.selection.fg = base09;
 
   # Background color of the statusbar in caret mode with a selection.
-  colors.statusbar.caret.selection.bg = base0D;
+  colors.statusbar.caret.selection.bg = base00;
 
   # Background color of the progress bar.
-  colors.statusbar.progress.bg = base0D;
+  colors.statusbar.progress.bg = base00;
 
   # Default foreground color of the URL in the statusbar.
   colors.statusbar.url.fg = base05;
@@ -228,14 +231,14 @@ in
 
   # Foreground color of the URL in the statusbar on successful load
   # (http).
-  colors.statusbar.url.success.http.fg = base0C;
+  colors.statusbar.url.success.http.fg = base0B;
 
   # Foreground color of the URL in the statusbar on successful load
   # (https).
   colors.statusbar.url.success.https.fg = base0B;
 
   # Foreground color of the URL in the statusbar when there's a warning.
-  colors.statusbar.url.warn.fg = base0E;
+  colors.statusbar.url.warn.fg = base0A;
 
   # Background color of the tab bar.
   colors.tabs.bar.bg = base00;