diff options
author | jao <jao@gnu.org> | 2022-06-20 02:45:13 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-06-20 02:45:13 +0100 |
commit | c9305db0c689febd47b7d58a25ed3b135ce8864c (patch) | |
tree | a4adffd2a61e180282a0854c5ab90f37173481bb /lib | |
parent | b9c7025d9f185dda75e21acf290d28c6af4338c2 (diff) | |
download | elibs-c9305db0c689febd47b7d58a25ed3b135ce8864c.tar.gz elibs-c9305db0c689febd47b7d58a25ed3b135ce8864c.tar.bz2 |
nits
Diffstat (limited to 'lib')
-rw-r--r-- | lib/themes/jao-light-theme.el | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/lib/themes/jao-light-theme.el b/lib/themes/jao-light-theme.el index b61d444..7d9be36 100644 --- a/lib/themes/jao-light-theme.el +++ b/lib/themes/jao-light-theme.el @@ -16,10 +16,6 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <https://www.gnu.org/licenses/>. -(defvar jao-theme-light-bold - (cond ((> emacs-major-version 28) 'medium) - (t 'semibold))) - (jao-define-custom-theme jao-light (:names (bg-lightest "gray98") (bg-light "gray95") @@ -36,15 +32,13 @@ (warning "orange4") (red "burlywood4") (blue "#023770") + (pale-blue "honeydew3") (green "#005555") (lightgreen "darkgreen") (yellow "lightyellow")) (:face-size 9) - (:face-family "Fira Code") - ;; (:face-family "Hack") - ;; (:face-family "DejaVu Sans Mono") - ;; (:face-family "Iosevka Comfy Fixed") - (:bold-weight jao-theme-light-bold) + (:face-family "DejaVu Sans Mono") + (:bold-weight 'semibold) (:palette (fg "black") (bg "white") (box "gray80") @@ -88,6 +82,9 @@ (diff-hl-change (c "white" pale-blue)) (diff-hl-insert (c "white" "honeydew2")) (diff-hl-delete (c "white" "wheat1")) + (diff-hl-margin-change (c pale-blue)) + (diff-hl-margin-insert (c "honeydew2")) + (diff-hl-margin-delete (c "wheat1")) (fill-column-indicator (c "grey80")) (fringe (c "grey70" nil)) (gnus-button (c blue)) |