From 13dbf80023b181576cc1797c33ed0d0d04665239 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Mon, 3 Oct 2016 00:20:28 +0200 Subject: [PATCH] visible fringe --- zerodark-theme.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zerodark-theme.el b/zerodark-theme.el index 82d90f2..65ae7b0 100644 --- a/zerodark-theme.el +++ b/zerodark-theme.el @@ -197,7 +197,8 @@ The result is cached for one second to avoid hiccups." (default (if (true-color-p) "#abb2bf" "#afafaf")) (light (if (true-color-p) "#ccd4e3" "#d7d7d7")) (background (if (true-color-p) "#282c34" "#333333")) - (background-darker (if (true-color-p) "#21252b" "#222222")) + (background-dark (if (true-color-p) "#24282f" "#222222")) + (background-darker (if (true-color-p) "#22252c" "#222222")) (mode-line-inactive (if "#1c2129" "#222222")) (mode-line-active (if (true-color-p) "#6f337e" "#875f87")) (background-lighter (if (true-color-p) "#3a3f4b" "#5f5f5f")) @@ -233,7 +234,7 @@ The result is cached for one second to avoid hiccups." `(cursor ((,class (:background ,default)))) ;; Highlighting faces - `(fringe ((,class (:background ,background)))) + `(fringe ((,class (:background ,background-dark :foreground ,comment)))) `(border ((,class (:foreground ,background-lighter)))) `(vertical-border ((,class (:foreground ,background-lighter)))) `(highlight ((,class (:background ,highlight :foreground ,default :underline nil))))