-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
nano-theme-dark.el
37 lines (35 loc) · 1.72 KB
/
nano-theme-dark.el
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
;; ---------------------------------------------------------------------
;; GNU Emacs / N Λ N O - Emacs made simple
;; Copyright (C) 2020 - N Λ N O developers
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;; ---------------------------------------------------------------------
(require 'nano-base-colors)
(defun nano-theme-set-dark ()
"Apply dark Nano theme base."
;; Colors from Nord theme at https://www.nordtheme.com
(setq frame-background-mode 'dark)
(setq nano-color-foreground "#ECEFF4") ;; Snow Storm 3 / nord 6
(setq nano-color-background "#2E3440") ;; Polar Night 0 / nord 0
(setq nano-color-highlight "#3B4252") ;; Polar Night 1 / nord 1
(setq nano-color-critical "#EBCB8B") ;; Aurora / nord 11
(setq nano-color-salient "#81A1C1") ;; Frost / nord 9
(setq nano-color-strong "#ECEFF4") ;; Snow Storm 3 / nord 6
(setq nano-color-popout "#D08770") ;; Aurora / nord 12
(setq nano-color-subtle "#434C5E") ;; Polar Night 2 / nord 2
(setq nano-color-faded "#677691") ;;
;; to allow for toggling of the themes.
(setq nano-theme-var "dark")
)
(provide 'nano-theme-dark)