diff options
author | Thanos Apollo <[email protected]> | 2023-10-16 20:45:23 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-16 20:45:23 +0300 |
commit | fdd11abce2a0205bbc96077ca9c4cf1e85e8b98e (patch) | |
tree | 3edfe8ed0e07d3c3951676c2543a2f9d2894d0c1 /.config/nyxt/style.lisp | |
parent | fe9b8acaa2c05665d51695f3b3ce10b5a6fcc2d7 (diff) |
Remove nyxt
Diffstat (limited to '.config/nyxt/style.lisp')
-rw-r--r-- | .config/nyxt/style.lisp | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/.config/nyxt/style.lisp b/.config/nyxt/style.lisp deleted file mode 100644 index a9dbe37..0000000 --- a/.config/nyxt/style.lisp +++ /dev/null @@ -1,43 +0,0 @@ -(in-package #:nyxt-user) - -;; This automatically darkens WebKit-native interfaces and sends the -;; "prefers-color-scheme: dark" to all the supporting websites. -(setf (uiop:getenv "GTK_THEME") "Adwaita:dark") - -(define-configuration browser - "Configuring my reddish theme." - ((theme (make-instance - 'theme:theme - :background-color "black" - :accent-color "#CD5C5C" - :accent-alt-color "#6C2429" - :warning-color "#CEFF00" - :primary-color "rgb(170, 170, 170)" - :secondary-color "rgb(100, 100, 100)")))) - -(define-configuration :dark-mode - "Dark-mode is a simple mode for simple HTML pages to color those in a darker palette. - -I don't like the default gray-ish colors, though. Thus, I'm overriding -those to be a bit more laconia-like. - -I'm not using this mode, though: I have nx-dark-reader." - ((style - (theme:themed-css (theme *browser*) - `(* - :background-color ,(if (theme:dark-p theme:theme) - theme:background - theme:on-background) - "!important" - :background-image none "!important" - :color ,(if (theme:dark-p theme:theme) - theme:on-background - theme:background) - "!important") - `(a - :background-color ,(if (theme:dark-p theme:theme) - theme:background - theme:on-background) - "!important" - :background-image none "!important" - :color ,theme:primary "!important"))))) |