Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
marvel
GitHub Repository: marvel/qnf
Path: blob/master/elisp/color-theme-meh.el
987 views
1
(defun color-theme-meh ()
2
(interactive)
3
(color-theme-install
4
'(color-theme-meh
5
((background-color . "#101e2e")
6
(background-mode . light)
7
(border-color . "#1a1a1a")
8
(cursor-color . "#919191")
9
(foreground-color . "#eeeeec")
10
(mouse-color . "black"))
11
(fringe ((t (:background "#1a1a1a"))))
12
(mode-line ((t (:foreground "#eeeeec" :background "#555753"))))
13
(region ((t (:background "#0d4519"))))
14
(font-lock-builtin-face ((t (:foreground "#729fcf"))))
15
(font-lock-comment-face ((t (:foreground "#3e5819"))))
16
(font-lock-function-name-face ((t (:foreground "#edd400"))))
17
(font-lock-keyword-face ((t (:foreground "#b32328"))))
18
(font-lock-string-face ((t (:foreground "#ad7fa8"))))
19
(font-lock-type-face ((t (:foreground"#8ae234"))))
20
(font-lock-variable-name-face ((t (:foreground "#eeeeec"))))
21
(minibuffer-prompt ((t (:foreground "#ffffff" :bold t))))
22
(font-lock-warning-face ((t (:foreground "Red" :bold t))))
23
)))
24
(provide 'color-theme-meh)
25
26