diff options
author | ThanosApollo <[email protected]> | 2022-11-02 05:08:30 +0200 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-11-02 05:08:30 +0200 |
commit | 4e21f4f8f9c0906d8aed468b495dcd448069e7af (patch) | |
tree | 033caacd8b6eb2236ff1d46e516b8fa16113770e /.config/nyxt/init.lisp | |
parent | f843b572ed699b9f68a0ebe1480d688699b6a57d (diff) |
Add dracula theming
Diffstat (limited to '.config/nyxt/init.lisp')
-rw-r--r-- | .config/nyxt/init.lisp | 60 |
1 files changed, 4 insertions, 56 deletions
diff --git a/.config/nyxt/init.lisp b/.config/nyxt/init.lisp index b973077..f43ca9b 100644 --- a/.config/nyxt/init.lisp +++ b/.config/nyxt/init.lisp @@ -1,57 +1,5 @@ -;; prompt -(define-configuration prompt-buffer - ((style (str:concat - %slot-default% - (cl-css:css - '((body - :background-color "black" - :color "#808080") - ("#prompt-area" - :background-color "black") - ;; The area you input text in. - ("#input" - :background-color "white") - (".source-name" - :color "black" - :background-color "gray") - (".source-content" - :background-color "black") - (".source-content th" - :border "1px solid lightgray" - :background-color "black") - ;; The currently highlighted option. - ("#selection" - :background-color "#37a8e4" - :color "black") - (.marked :background-color "darkgray" - :font-weight "bold" - :color "white") - (.selected :background-color "black" - :color "white"))))))) +(in-package #:nyxt-user) -;;; Panel buffers are the same in regards to style. -(define-configuration (internal-buffer panel-buffer) - ((style - (str:concat - %slot-default% - (cl-css:css - '((body - :background-color "black" - :color "lightgray") - (hr - :color "darkgray") - (a - :color "lightgray") - (.button - :color "lightgray" - :background-color "gray"))))))) - -;;Window -(define-configuration window - ((message-buffer-style - (str:concat - %slot-default% - (cl-css:css - '((body - :background-color "black" - :color "white"))))))) +;; Import Files +(nyxt::load-lisp "~/.config/nyxt/statusline.lisp") +(nyxt::load-lisp "~/.config/nyxt/stylesheet.lisp") |