This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
dianciemacs/graphite-theme.el

24 lines
571 B
EmacsLisp
Raw Normal View History

(use-package autothemer)
(autothemer-deftheme
graphite
"A neon, shimmering theme for Emacs"
;; The color classes used by the theme. Theme supports GUI Emacs only.
2022-11-18 17:03:49 +00:00
((((class color) (min-colors #xFFFFFF)))
;; Specify the color palette, color columns correspond to each of the classes above.
(red "#781210")
(green "#69f961")
(blue "#64c7fc")
(magenta "#e572c8")
(lilac "#7b6b97")
(yellow "#f9ef61")
(cyan "#50fcce"))
;; Specifications for Emacs faces.
2022-11-18 17:00:19 +00:00
((default (:foreground cyan))
2022-11-18 17:03:49 +00:00
(error (:foreground red))))
(provide-theme 'graphite)