summaryrefslogtreecommitdiff
path: root/pancake.el
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2017-11-15 03:27:08 +0300
committerdefanor <defanor@uberspace.net>2017-11-15 03:27:08 +0300
commit266e0908e1ecc3f63b3f61b53a61fc5810d05ce3 (patch)
treef3639e95f653154bb5614c87c88255458806f66c /pancake.el
parent1e912085c649f3d6d72a64f19a952d2266c06e41 (diff)
Adjust default faces for Emacs with dark background
- Make the green paler, so that code blocks are easier to read. - Use a more saturated color for cyan, to make links easily distinguishable from grey text (assuming that in most cases the default face will be grey or close to it).
Diffstat (limited to 'pancake.el')
-rw-r--r--pancake.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/pancake.el b/pancake.el
index 0f70a1d..6b90757 100644
--- a/pancake.el
+++ b/pancake.el
@@ -52,7 +52,7 @@
:group 'pancake)
(defface pancake-color-green-foreground
- '((((type graphic) (class color) (background dark)) :foreground "light green")
+ '((((type graphic) (class color) (background dark)) :foreground "dark sea green")
(((type graphic) (class color) (background light)) :foreground "dark green")
(t :foreground "green"))
"Foreground face for green color."
@@ -80,7 +80,7 @@
:group 'pancake)
(defface pancake-color-cyan-foreground
- '((((type graphic) (class color) (background dark)) :foreground "light cyan")
+ '((((type graphic) (class color) (background dark)) :foreground "DarkSlateGray3")
(((type graphic) (class color) (background light)) :foreground "dark cyan")
(t :foreground "cyan"))
"Foreground face for cyan color."