Drop use-package
[~bandali/configs] / lisp / bandali-theme.el
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
27 (require 'refinery-theme)
28 (load-theme 'refinery t)
29
30 (require 'smart-mode-line)
31 ;; thanks, but no thanks; don't make fixed-width fills.
32 (defun sml/fill-for-buffer-identification nil "")
33 (setq sml/theme 'respectful)
34 (sml/setup)
35 (smart-mode-line-enable)
36
37 (require 'minions)
38 (minions-mode)
39
40 (defvar b/org-mode-font-lock-keywords
41 '(("[ \t]*\\(#\\+\\(BEGIN\\|END\\|begin\\|end\\)_\\(\\S-+\\)\\)[ \t]*\\([^\n:]*\\)"
42 (1 '(:foreground "#5a5b5a" :background "#292b2b") t) ; directive
43 (3 '(:foreground "#81a2be" :background "#292b2b") t) ; kind
44 (4 '(:foreground "#c5c8c6") t))) ; title
45 "For use with the `doom-tomorrow-night' theme.")
46
47 (eval-when-compile
48 (declare-function exwm-systemtray--refresh "exwm-systemtray")
49 (declare-function erc-hl-nicks-reset-face-table "erc-hl-nicks"))
50
51 (defun b/lights-on ()
52 "Enable my favourite light theme."
53 (interactive)
54 (mapc #'disable-theme custom-enabled-themes)
55 (load-theme 'refinery t)
56 (when (featurep 'smart-mode-line)
57 (sml/apply-theme 'bandali))
58 (font-lock-remove-keywords
59 'org-mode b/org-mode-font-lock-keywords)
60 (when (featurep 'erc-hl-nicks)
61 (erc-hl-nicks-reset-face-table))
62 (when (featurep 'exwm-systemtray)
63 (exwm-systemtray--refresh)))
64
65 (defun b/lights-off ()
66 "Go dark."
67 (interactive)
68 (mapc #'disable-theme custom-enabled-themes)
69 (load-theme 'refinery-dark t)
70 (when (featurep 'smart-mode-line)
71 (sml/apply-theme 'dark))
72 (font-lock-add-keywords
73 'org-mode b/org-mode-font-lock-keywords t)
74 (when (featurep 'erc-hl-nicks)
75 (erc-hl-nicks-reset-face-table))
76 (when (featurep 'exwm-systemtray)
77 (exwm-systemtray--refresh)))
78
79 (global-set-key (kbd "C-c t d") #'b/lights-off)
80 (global-set-key (kbd "C-c t l") #'b/lights-on)
81
82 (provide 'bandali-theme)
83 ;;; bandali-theme.el ends here