diff options
| author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-07-27 01:34:31 +0100 | 
|---|---|---|
| committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-07-27 01:34:31 +0100 | 
| commit | a2456828b14ccb44cf41d8c4b36d14cac9f0704e (patch) | |
| tree | 2dd8ad46e50722c3efd1e9d82a8c4b22b1241615 /Emacs | |
| parent | 9b2ef288e440c7942d0d2b1c09c0852c912d5ac0 (diff) | |
| download | dotfiles-a2456828b14ccb44cf41d8c4b36d14cac9f0704e.tar.gz dotfiles-a2456828b14ccb44cf41d8c4b36d14cac9f0704e.tar.bz2 dotfiles-a2456828b14ccb44cf41d8c4b36d14cac9f0704e.zip | |
(Emacs)~changed theme back to personal
Don't even remember when I changed theme but it's gone back to
personal (my custom theme).  I changed a few things for the theme as
well, just a few colours.
Diffstat (limited to 'Emacs')
| -rw-r--r-- | Emacs/.config/emacs/.config/custom.el | 3 | ||||
| -rw-r--r-- | Emacs/.config/emacs/config.org | 2 | ||||
| -rw-r--r-- | Emacs/.config/emacs/elisp/personal-theme.el | 14 | 
3 files changed, 10 insertions, 9 deletions
| diff --git a/Emacs/.config/emacs/.config/custom.el b/Emacs/.config/emacs/.config/custom.el index 27f8519..373079e 100644 --- a/Emacs/.config/emacs/.config/custom.el +++ b/Emacs/.config/emacs/.config/custom.el @@ -3,7 +3,8 @@   ;; 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. - '(safe-local-variable-values '((projectile-globally-ignored-files "TAGS")))) + '(custom-safe-themes +   '("321d6d6e915ff3cbb5be2b20ba7122b0b392392e77a2e7d57f724651612dbfba" "28b9cb0c3bb549d272531f2bd6d229d024f988346a9005a03597fb678e27b93a" "b898153f7be9244fc36520477232e94e162de8412149b4433f90faa4ad06bb3c" "2f815b90f0ac11529d5e71e6d4d286bf85c35ef03b18aeb7177c2df975c316ea" default)))  (custom-set-faces   ;; custom-set-faces was added by Custom.   ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index dc7f58e..e61bb3d 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -76,7 +76,7 @@ Load my custom "personal-theme" theme (look at [[file:personal-theme.el][this fi    :init    (setq custom-theme-directory (concat user-emacs-directory "elisp/"))    :config -  (load-theme 'monokai t)) +  (load-theme 'personal t))  #+end_src  Set font size to 125 if no monitor is plugged in. diff --git a/Emacs/.config/emacs/elisp/personal-theme.el b/Emacs/.config/emacs/elisp/personal-theme.el index ff75041..c8afef3 100644 --- a/Emacs/.config/emacs/elisp/personal-theme.el +++ b/Emacs/.config/emacs/elisp/personal-theme.el @@ -1,5 +1,5 @@  (deftheme personal -  "Created 2020-09-06.") +  "Created 2021-07-27.")  (custom-theme-set-faces   'personal @@ -9,7 +9,7 @@   '(escape-glyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))   '(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))   '(minibuffer-prompt ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "medium blue")))) - '(highlight ((((class color) (min-colors 88) (background light)) (:background "darkseagreen2")) (((class color) (min-colors 88) (background dark)) (:background "darkolivegreen")) (((class color) (min-colors 16) (background light)) (:background "darkseagreen2")) (((class color) (min-colors 16) (background dark)) (:background "darkolivegreen")) (((class color) (min-colors 8)) (:foreground "black" :background "green")) (t (:inverse-video t)))) + '(highlight ((t (:background "gray17"))))   '(region ((t (:extend t :background "gray20"))))   '(shadow ((((class color grayscale) (min-colors 88) (background light)) (:foreground "grey50")) (((class color grayscale) (min-colors 88) (background dark)) (:foreground "grey70")) (((class color) (min-colors 8) (background light)) (:foreground "green")) (((class color) (min-colors 8) (background dark)) (:foreground "yellow"))))   '(secondary-selection ((((class color) (min-colors 88) (background light)) (:extend t :background "yellow1")) (((class color) (min-colors 88) (background dark)) (:extend t :background "SkyBlue4")) (((class color) (min-colors 16) (background light)) (:extend t :background "yellow")) (((class color) (min-colors 16) (background dark)) (:extend t :background "SkyBlue4")) (((class color) (min-colors 8)) (:extend t :foreground "black" :background "cyan")) (t (:inverse-video t)))) @@ -17,16 +17,16 @@   '(font-lock-builtin-face ((((class grayscale) (background light)) (:weight bold :foreground "LightGray")) (((class grayscale) (background dark)) (:weight bold :foreground "DimGray")) (((class color) (min-colors 88) (background light)) (:foreground "dark slate blue")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Orchid")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 8)) (:weight bold :foreground "blue")) (t (:weight bold))))   '(font-lock-comment-delimiter-face ((t (:slant italic :foreground "gray24"))))   '(font-lock-comment-face ((t (:slant italic :foreground "#868686")))) - '(font-lock-constant-face ((t (:foreground "slate gray" :weight bold :height 0.9 :family "Source Code Pro")))) + '(font-lock-constant-face ((t (:foreground "slate blue" :weight semi-bold :height 0.99 :family "Source Code Pro"))))   '(font-lock-doc-face ((t (:inherit (font-lock-string-face)))))   '(font-lock-function-name-face ((t (:weight semi-bold)))) - '(font-lock-keyword-face ((t (:family "Fira Code" :height 0.95 :weight bold :foreground "DeepSkyBlue4")))) + '(font-lock-keyword-face ((t (:foreground "DeepSkyBlue2" :weight bold :height 0.95 :family "Fira Code"))))   '(font-lock-negation-char-face ((t nil)))   '(font-lock-preprocessor-face ((t (:family "Source Code Pro" :foreground "#868686"))))   '(font-lock-regexp-grouping-backslash ((t (:inherit (bold)))))   '(font-lock-regexp-grouping-construct ((t (:inherit (bold)))))   '(font-lock-string-face ((t (:family "Fira Code" :foreground "yellow4")))) - '(font-lock-type-face ((t (:family "Hack" :height 0.95 :foreground "chartreuse")))) + '(font-lock-type-face ((t (:foreground "chartreuse" :height 0.95 :width ultra-expanded :family "Hack"))))   '(font-lock-variable-name-face ((t (:family "Source Code Variable" :foreground "#e6e6e6"))))   '(font-lock-warning-face ((t (:inherit (error)))))   '(button ((t (:inherit (link))))) @@ -52,9 +52,9 @@   '(company-preview ((((background light)) (:inherit (company-tooltip-selection company-tooltip))) (((background dark)) (:foreground "wheat" :background "blue4"))))   '(company-preview-common ((t (:inherit company-preview :foreground "grey"))))   '(org-block ((t (:background "gray3" :inherit shadow)))) - '(default ((t (:family "Source Code Pro" :foundry "ADBO" :width normal :height 113 :weight normal :slant normal :underline nil :overline nil :extend nil :strike-through nil :box nil :inverse-video nil :foreground "#b6b6b6" :background "#000000" :stipple nil :inherit nil))))   '(eshell-prompt ((t (:foreground "deep sky blue" :weight bold))))   '(whitespace-tab ((t (:background "gray5" :foreground "gray20")))) - '(whitespace-space ((t (:background "gray2" :foreground "darkgray"))))) + '(whitespace-space ((t (:background "gray2" :foreground "darkgray")))) + '(default ((t (:family "Source Code Pro" :foundry "ADBO" :width normal :height 113 :weight normal :slant normal :underline nil :overline nil :extend nil :strike-through nil :box nil :inverse-video nil :foreground "#b6b6b6" :background "#000000" :stipple nil :inherit nil)))))  (provide-theme 'personal) | 
