summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2024-06-26 13:08:27 -0700
committerChristian Cunningham <cc@localhost>2024-06-26 13:08:27 -0700
commit8c87122e47428c7c18beed181cad5b7603233837 (patch)
treea9af9158f01ea29403c4625cb0378be05502ee80
parent13281fe995ba809b9550ac1a7f6fe030d0bd2c9a (diff)
New Light-theme Coloring
-rw-r--r--elchemy-personal.el5
-rw-r--r--elchemy-util.el2
-rw-r--r--elchemy.el6
3 files changed, 10 insertions, 3 deletions
diff --git a/elchemy-personal.el b/elchemy-personal.el
index 6a74800..3b453e7 100644
--- a/elchemy-personal.el
+++ b/elchemy-personal.el
@@ -45,9 +45,10 @@
(add-hook 'minibuffer-setup-hook
(lambda ()
(make-local-variable 'face-remapping-alist)
- (add-to-list 'face-remapping-alist '(default (:background "gray90")))))
+ (add-to-list 'face-remapping-alist '(default (:background "#DECEAF")))))
(custom-set-faces
- '(mode-line ((t (:background "grey95" :foreground "gray20"))))
+ '(mode-line ((t (:box (:line-width (1 . 1) :color "grey75" :style flat-button)))))
+ '(mode-line-inactive ((t (:foreground "gray20"))))
'(org-document-info-keyword ((t (:foreground "gray100" :height 0.1))))))
(provide 'elchemy-personal)
diff --git a/elchemy-util.el b/elchemy-util.el
index 43ed182..ac06e59 100644
--- a/elchemy-util.el
+++ b/elchemy-util.el
@@ -52,6 +52,8 @@
(set-face-attribute 'default nil :height elchemy/user/font-height)))
(add-to-list 'default-frame-alist '(fullscreen . maximized))
+(add-to-list 'default-frame-alist '(background-color . "#ECE2D0"))
+(add-to-list 'default-frame-alist '(foreground-color . "#7E1E30"))
(add-hook 'after-make-frame-functions 'elchemy/my-frame-config)
(add-hook 'after-init-hook 'elchemy/my-frame-config)
(custom-set-faces `(default ((t (:height ,elchemy/user/font-height)))))
diff --git a/elchemy.el b/elchemy.el
index 63aa651..c5eb916 100644
--- a/elchemy.el
+++ b/elchemy.el
@@ -26,7 +26,11 @@
;; 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.
- '(mode-line ((t (:height 1.1))))
+ '(cursor ((t (:background "gray30"))))
+ '(link ((t (:foreground "blue" :underline t))))
+ '(minibuffer-prompt ((t (:foreground "#771C9B"))))
+ '(mode-line ((t (:box (:line-width (1 . 1) :color "grey75" :style flat-button) :height 1.1))))
+ '(mode-line-inactive ((t (:foreground "gray20"))))
'(org-document-title ((t (:height 2.0 :underline nil))))
'(org-level-1 ((t (:inherit outline-1 :extend nil :weight extra-bold :height 1.4))))
'(org-level-2 ((t (:inherit outline-2 :extend nil :slant italic :weight bold :height 1.2))))