summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-11-02 01:51:07 +0200
committerThanosApollo <[email protected]>2022-11-02 01:51:07 +0200
commitf843b572ed699b9f68a0ebe1480d688699b6a57d (patch)
treeb2dbea1ee236c532ff1ce68b7651bcba6107ad09
parentb5fa63f69183ac0280de4a6f5f2c012320265921 (diff)
add nyxt init.lisp
-rw-r--r--.config/nyxt/init.lisp57
1 files changed, 57 insertions, 0 deletions
diff --git a/.config/nyxt/init.lisp b/.config/nyxt/init.lisp
new file mode 100644
index 0000000..b973077
--- /dev/null
+++ b/.config/nyxt/init.lisp
@@ -0,0 +1,57 @@
+;; 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")))))))
+
+;;; 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")))))))