From af7de50a6967ec0beb7f8326907b04dd680c681e Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 16 Sep 2020 18:16:29 +0100 Subject: [PATCH] ~renamed theme with some extras --- .../emacs/{Grayscale-theme.el => personal-theme.el} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename Emacs/.config/emacs/{Grayscale-theme.el => personal-theme.el} (98%) diff --git a/Emacs/.config/emacs/Grayscale-theme.el b/Emacs/.config/emacs/personal-theme.el similarity index 98% rename from Emacs/.config/emacs/Grayscale-theme.el rename to Emacs/.config/emacs/personal-theme.el index 35b1d09..ff75041 100644 --- a/Emacs/.config/emacs/Grayscale-theme.el +++ b/Emacs/.config/emacs/personal-theme.el @@ -1,8 +1,8 @@ -(deftheme Grayscale - "Created 2020-08-28.") +(deftheme personal + "Created 2020-09-06.") (custom-theme-set-faces - 'Grayscale + 'personal '(cursor ((((background light)) (:background "black")) (((background dark)) (:background "white")))) '(fixed-pitch ((t (:family "Monospace")))) '(variable-pitch ((((type w32)) (:foundry "outline" :family "Arial")) (t (:family "Sans Serif")))) @@ -57,4 +57,4 @@ '(whitespace-tab ((t (:background "gray5" :foreground "gray20")))) '(whitespace-space ((t (:background "gray2" :foreground "darkgray"))))) -(provide-theme 'Grayscale) +(provide-theme 'personal)