-
Notifications
You must be signed in to change notification settings - Fork 1
/
nyxt-emacs-theme
60 lines (56 loc) · 1.72 KB
/
nyxt-emacs-theme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(in-package #:nyxt-user)
(define-configuration window
((message-buffer-style
(str:concat
%slot-default%
(cl-css:css
'((body
:background-color "black"
:color "white")))))))
(define-configuration prompt-buffer
((style (str:concat
%slot-default%
(cl-css:css
'((body
:background-color "black"
:color "white")
("#prompt-area"
:background-color "purple")
("#input"
:background-color "white")
(".source-name"
:color "white"
:background-color "gray")
(".source-content"
:background-color "black")
(".source-content th"
:border "1px solid purple"
:background-color "white")
("#selection"
:background-color "gray"
:color "purple")
(.marked :background-color "gray"
:font-weight "bold"
:color "white")
(.selected :background-color "black"
:color "white")))))))
(define-configuration status-buffer
((style (str:concat
%slot-default%
(cl-css:css
'(("#container"
;; Columns: controls, url
:grid-template-columns "0% 40% 0% 60%")
("#controls"
:border-top "1px solid white")
("#url"
:background-color "purple"
:color "white"
:border-top "1px solid purple")
("#modes"
:background-color "purple"
:border-top "1px solid purple")
("#tabs"
:background-color "black"
:color "black"
:border-top "1px solid white")))))))