feat: move theme to separate repository
This commit is contained in:
parent
37edbbedd0
commit
9e74183c86
|
@ -1,23 +0,0 @@
|
|||
(use-package autothemer)
|
||||
|
||||
(autothemer-deftheme
|
||||
graphite
|
||||
"A neon, shimmering theme for Emacs"
|
||||
|
||||
;; The color classes used by the theme. Theme supports GUI Emacs only.
|
||||
((((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.
|
||||
((default (:foreground cyan))
|
||||
(error (:foreground red))))
|
||||
|
||||
(provide-theme 'graphite)
|
|
@ -55,7 +55,11 @@
|
|||
(doom-themes-treemacs-config) ; Enable theming of treemacs
|
||||
(doom-themes-org-config) ; And org-mode
|
||||
|
||||
;; Set theme to doom-tokyo-night, Dianicemacs' default
|
||||
;; Set theme to `graphite', Dianicemacs' default
|
||||
(use-package autothemer)
|
||||
(use-package graphite-theme
|
||||
:straight (:package "graphite" :host nil
|
||||
:type git :repo "ssh://81.151.235.84/graphite-emacs"))
|
||||
(load-theme 'graphite t)
|
||||
|
||||
;; rainbow-mode - Colourful colour codes!
|
||||
|
|
Reference in a new issue