Dracula Pro Theme

- Use dracula emacs theme and change colors to dracula PRO
- Set theme in init.el to dracula PRO
This commit is contained in:
Sravan Balaji
2021-04-28 10:24:24 -04:00
parent 05239c60e1
commit fea4563252
2 changed files with 817 additions and 5 deletions

48
init.el
View File

@@ -67,10 +67,14 @@
:custom (doom-modeline-height 15)
)
;; Doom Themes
(use-package doom-themes
:init (load-theme 'doom-dracula t)
)
;; ;; Doom Themes
;; (use-package doom-themes
;; :init (load-theme 'doom-dracula t)
;; )
;; Dracula Pro Theme
(add-to-list 'custom-theme-load-path "~/.config/emacs/themes")
(load-theme 'dracula-pro t)
;; NOTE: The first time you load your configuration on a new machine, you'll
;; need to run the following command interactively so that mode line icons
@@ -84,8 +88,42 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ansi-color-names-vector
["#282a36" "#ff5555" "#50fa7b" "#f1fa8c" "#61bfff" "#ff79c6" "#8be9fd" "#f8f8f2"])
'(custom-safe-themes
'("64811e7fdbf77f278cf304e27f901f1095cc0090b5c032b0a9759c4df3fa82cc" "e6ff132edb1bfa0645e2ba032c44ce94a3bd3c15e3929cdf6c049802cf059a2a" "e5c595b20563da64003b24f655310089a14e5741c681c5072f24a4f376b8e2ce" default))
'(fci-rule-color "#6272a4")
'(jdee-db-active-breakpoint-face-colors (cons "#1E2029" "#bd93f9"))
'(jdee-db-requested-breakpoint-face-colors (cons "#1E2029" "#50fa7b"))
'(jdee-db-spec-breakpoint-face-colors (cons "#1E2029" "#565761"))
'(objed-cursor-color "#ff5555")
'(package-selected-packages
'(forge evil-magit magit counsel-projectile projectile hydra evil-collection evil general helpful counsel ivy-rich which-key rainbow-delimiters doom-modeline use-package ivy command-log-mode)))
'(autothemer forge evil-magit magit counsel-projectile projectile hydra evil-collection evil general helpful counsel ivy-rich which-key rainbow-delimiters doom-modeline use-package ivy command-log-mode))
'(pdf-view-midnight-colors (cons "#f8f8f2" "#282a36"))
'(rustic-ansi-faces
["#282a36" "#ff5555" "#50fa7b" "#f1fa8c" "#61bfff" "#ff79c6" "#8be9fd" "#f8f8f2"])
'(vc-annotate-background "#282a36")
'(vc-annotate-color-map
(list
(cons 20 "#50fa7b")
(cons 40 "#85fa80")
(cons 60 "#bbf986")
(cons 80 "#f1fa8c")
(cons 100 "#f5e381")
(cons 120 "#face76")
(cons 140 "#ffb86c")
(cons 160 "#ffa38a")
(cons 180 "#ff8ea8")
(cons 200 "#ff79c6")
(cons 220 "#ff6da0")
(cons 240 "#ff617a")
(cons 260 "#ff5555")
(cons 280 "#d45558")
(cons 300 "#aa565a")
(cons 320 "#80565d")
(cons 340 "#6272a4")
(cons 360 "#6272a4")))
'(vc-annotate-very-old-color nil))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.