Switch to EXWM
[~bandali/configs] / .emacs.d / lisp / bandali-theme.el
CommitLineData
9c48decc
AB
1;;; bandali-theme.el --- bandali's custom theme setup -*- lexical-binding: t; -*-
2
3;; Copyright (C) 2018-2020 Amin Bandali
4
5;; Author: Amin Bandali <bandali@gnu.org>
6;; Keywords: faces
7
8;; This program is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or
11;; (at your option) any later version.
12
13;; This program is distributed in the hope that it will be useful,
14;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;; GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public License
19;; along with this program. If not, see <https://www.gnu.org/licenses/>.
20
21;;; Commentary:
22
23;; My custom theme setup.
24
25;;; Code:
26
1f5c92ff 27(add-to-list 'load-path (b/lisp "refinery-theme"))
8c4704d0
AB
28(with-eval-after-load 'package
29 (require 'refinery-theme)
30 (load-theme 'refinery t))
c84be134 31
8c4704d0
AB
32;; (require 'smart-mode-line)
33;; ;; thanks, but no thanks; don't make fixed-width fills.
34;; (defun sml/fill-for-buffer-identification nil "")
35;; (setq sml/theme 'respectful)
36;; (let ((sml/no-confirm-load-theme t))
37;; (sml/setup)
38;; (smart-mode-line-enable))
c84be134 39
8c4704d0
AB
40;; (require 'minions)
41;; (minions-mode)
9c48decc
AB
42
43(defvar b/org-mode-font-lock-keywords
44 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
45 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
46 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
47 (4 '(:foreground "#c5c8c6") t))) ; title
48 "For use with the `doom-tomorrow-night' theme.")
49
50(eval-when-compile
1eb20313
AB
51 (declare-function exwm-systemtray--refresh "exwm-systemtray")
52 (declare-function erc-hl-nicks-reset-face-table "erc-hl-nicks"))
9c48decc
AB
53
54(defun b/lights-on ()
55 "Enable my favourite light theme."
56 (interactive)
57 (mapc #'disable-theme custom-enabled-themes)
58 (load-theme 'refinery t)
9c48decc
AB
59 (font-lock-remove-keywords
60 'org-mode b/org-mode-font-lock-keywords)
9c48decc
AB
61 (when (featurep 'exwm-systemtray)
62 (exwm-systemtray--refresh)))
63
64(defun b/lights-off ()
65 "Go dark."
66 (interactive)
67 (mapc #'disable-theme custom-enabled-themes)
c84be134 68 (load-theme 'refinery-dark t)
9c48decc
AB
69 (font-lock-add-keywords
70 'org-mode b/org-mode-font-lock-keywords t)
9c48decc
AB
71 (when (featurep 'exwm-systemtray)
72 (exwm-systemtray--refresh)))
73
c84be134
AB
74(global-set-key (kbd "C-c t d") #'b/lights-off)
75(global-set-key (kbd "C-c t l") #'b/lights-on)
9c48decc
AB
76
77(provide 'bandali-theme)
78;;; bandali-theme.el ends here