summaryrefslogtreecommitdiffhomepage
path: root/attic/elisp
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2025-09-17 18:14:30 +0100
committerjao <jao@gnu.org>2025-09-17 18:14:30 +0100
commit62c269f2d89bec5705c41bfe15778bbcb0f0b859 (patch)
tree9115edf0637785bae657769bd9f3a7d0ebba7e6e /attic/elisp
parent3526fea3c98dfbaf10cdc6bb0d8b41ff947eb392 (diff)
downloadelibs-62c269f2d89bec5705c41bfe15778bbcb0f0b859.tar.gz
elibs-62c269f2d89bec5705c41bfe15778bbcb0f0b859.tar.bz2
theme tweaks
Diffstat (limited to 'attic/elisp')
-rw-r--r--attic/elisp/misc.el26
1 files changed, 26 insertions, 0 deletions
diff --git a/attic/elisp/misc.el b/attic/elisp/misc.el
index 3e12ec1..b43b3ae 100644
--- a/attic/elisp/misc.el
+++ b/attic/elisp/misc.el
@@ -1014,3 +1014,29 @@
(("n" . next-line)
("p" . previous-line)
("g" . jenkins-refresh-console-output))))
+
+;;; doric themes
+(use-package doric-themes
+ :if (jao-is-darwin)
+ :ensure t
+ :demand t
+ :config
+ ;; These are the default values.
+ (setq doric-themes-to-toggle '(doric-light doric-marble))
+ (setq doric-themes-to-rotate doric-themes-collection)
+
+ (doric-themes-select 'doric-marble)
+
+ (set-face-attribute 'default nil :family "Triplicate T4c" :height 120)
+ ;; (set-face-attribute 'default nil :family "0xProto" :height 110)
+ ;; (set-face-attribute 'default nil :family "Rec Mono Casual" :height 120)
+ ;; (set-face-attribute 'default nil :family "Rec Mono Linear" :height 120)
+ ;; (set-face-attribute 'default nil :family "Rec Mono Duotone" :height 120)
+ ;; (set-face-attribute 'default nil :family "Victor Mono" :height 120)
+ ;; (set-face-attribute 'variable-pitch nil :family "Aporetic Sans" :height 1.0)
+ ;; (set-face-attribute 'fixed-pitch nil :family "Aporetic Sans Mono" :height 1.0)
+
+ :bind
+ (("<f5>" . doric-themes-toggle)
+ ("C-<f5>" . doric-themes-select)
+ ("M-<f5>" . doric-themes-rotate)))