aboutsummaryrefslogtreecommitdiffstats
path: root/elpa/doom-themes-20220504.1557/doom-ir-black-theme.el
blob: fbddc70e76e87d7b3980690b0ffc9035bedb6615 (plain) (blame)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
;;; doom-ir-black-theme.el --- port of ir_black -*- lexical-bindings: t; no-byte-compile: t; -*-
;;
;; Author: Todd Werth <todd@infinite.red>
;; Ported by: Kevin Kainan Li <legendre6891@users.noreply.github.com>
;; Created: January 10, 2019
;; Version: 2.0.0
;; Keywords: custom themes, faces
;; Homepage: https://github.com/hlissner/emacs-doom-themes
;; Package-Requires: ((emacs "25.1") (cl-lib "0.5") (doom-themes "2.2.1"))
;;
;;; Commentary:
;;
;; Ported from the original ir_black theme in hlissner/emacs-doom-themes#255.
;;
;;; Code:

(require 'doom-themes)


;;
;;; Variables

(defgroup doom-ir-black-theme nil
  "Options for the `doom-ir-black' theme."
  :group 'doom-themes)

(defcustom doom-ir-black-brighter-comments nil
  "If non-nil, comments will be highlighted in more vivid colors."
  :group 'doom-ir-black-theme
  :type 'boolean)

(defcustom doom-ir-black-padded-modeline doom-themes-padded-modeline
  "If non-nil, adds a 4px padding to the mode-line.
Can be an integer to determine the exact padding."
  :group 'doom-ir-black-theme
  :type '(or integer boolean))


;;
;;; Theme definition

(def-doom-theme doom-ir-black
  "A port of the original IR Black colorscheme."

  ;; name        default   256       16
  ((bg         '("#000000" "black"   "black"        ))
   (fg         '("#f6f3e8" "#f6f3e8" "brightwhite"  ))

   ;; These are off-color variants of bg/fg, used primarily for `solaire-mode',
   ;; but can also be useful as a basis for subtle highlights (e.g. for hl-line
   ;; or region), especially when paired with the `doom-darken', `doom-lighten',
   ;; and `doom-blend' helper functions.
   (bg-alt     '("#121212" "black"   "black"        ))
   (fg-alt     '("#5B6268" "#2d2d2d" "white"        ))

   ;; These should represent a spectrum from bg to fg, where base0 is a starker
   ;; bg and base8 is a starker fg. For example, if bg is light grey and fg is
   ;; dark grey, base0 should be white and base8 should be black.
   (base0      '("#1B2229" "black"   "black"        ))
   (base1      '("#1c1f24" "#1e1e1e" "brightblack"  ))
   (base2      '("#202328" "#2e2e2e" "brightblack"  ))
   (base3      '("#23272e" "#262626" "brightblack"  ))
   (base4      '("#3f444a" "#3f3f3f" "brightblack"  ))
   (base5      '("#5B6268" "#525252" "brightblack"  ))
   (base6      '("#73797e" "#6b6b6b" "brightblack"  ))
   (base7      '("#9ca0a4" "#979797" "brightblack"  ))
   (base8      '("#DFDFDF" "#dfdfdf" "white"        ))

   (white      '("#ffffff" "#ffffff" "white"))
   (grey       base4)
   (red        '("#ff6c60" "#ff6c60" "red"          ))
   (orange     '("#E9C062" "#E9C062" "brightred"    ))
   (orange-alt '("#FFD2A7" "#FFD2A7" "brightred"    ))
   (green      '("#A8FF60" "#A8FF60" "green"        ))
   (green-alt  '("#99CC99" "#99CC99" "green"        ))
   (teal       '("#00A0A0" "#00A0A0" "brightgreen"  ))
   (yellow     '("#FFFFB6" "#FFFFB6" "yellow"       ))
   (blue       '("#96CBFE" "#96CBFE" "brightblue"   ))
   (dark-blue  '("#2257A0" "#2257A0" "blue"         ))
   (magenta    '("#FF73FD" "#FF73FD" "magenta"      ))
   (violet     '("#a9a1e1" "#a9a1e1" "brightmagenta"))
   (cyan       '("#C6C5FE" "#C6C5FE" "brightcyan"   ))
   (dark-cyan  '("#5699AF" "#5699AF" "cyan"         ))

   ;; face categories -- required for all themes
   (highlight      blue)
   (vertical-bar   base5)
   (selection      cyan)
   (builtin        magenta)
   (comments       (if doom-ir-black-brighter-comments dark-cyan base5))
   (doc-comments   (doom-lighten (if doom-ir-black-brighter-comments dark-cyan base5) 0.25))
   (constants      green-alt)
   (functions      orange-alt)
   (keywords       blue)
   (methods        cyan)
   (operators      white)
   (type           yellow)
   (strings        green)
   (variables      (doom-lighten magenta 0.4))
   (numbers        magenta)
   (region         `(,(doom-lighten (car bg-alt) 0.15) ,@(doom-lighten (cdr base0) 0.35)))
   (error          red)
   (warning        yellow)
   (success        green)
   (vc-modified    orange)
   (vc-added       green)
   (vc-deleted     red)

   ;; custom categories
   (-modeline-pad
    (when doom-ir-black-padded-modeline
      (if (integerp doom-ir-black-padded-modeline) doom-ir-black-padded-modeline 4)))

   (modeline-fg          white)
   (modeline-fg-alt      base5)
   (modeline-bg          base4)
   (modeline-bg-inactive base3))


  ;;;; Base theme face overrides
  (((font-lock-comment-face &override)
    :background (if doom-ir-black-brighter-comments (doom-lighten bg 0.05)))
   ((line-number &override) :foreground base5)
   ((line-number-current-line &override) :foreground "#FFFF00" :weight 'bold)
   (mode-line
    :background modeline-bg :foreground modeline-fg
    :box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg)))
   (mode-line-inactive
    :background modeline-bg-inactive :foreground modeline-fg-alt
    :box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-inactive)))

   ;;;; css-mode <built-in> / scss-mode
   (css-proprietary-property :foreground orange)
   (css-property             :foreground green)
   (css-selector             :foreground blue)
   ;;;; elscreen
   (elscreen-tab-other-screen-face :background "#353a42" :foreground "#1e2022")
   ;;;; evil
   (evil-goggles-default-face :inherit 'region :background (doom-blend region bg 0.5))
   ;;;; ivy
   (ivy-current-match :background dark-blue :distant-foreground base0 :weight 'normal)
   ;;;; markdown-mode
   (markdown-markup-face :foreground base5)
   (markdown-header-face :inherit 'bold :foreground red)
   (markdown-code-face :background (doom-lighten base3 0.05)))

  ;;;; Base theme variable overrides-
  ;; ()
  )

;;; doom-ir-black-theme.el ends here