Mod: Minor tweaks for Ephemeral, Dark+ and Wilmesdorf. Fixes #431.

This commit is contained in:
Emmanuel Bustos 2020-03-31 07:06:31 -06:00
parent bbb3725af9
commit ea8b314dd9
3 changed files with 35 additions and 30 deletions

View file

@ -54,7 +54,7 @@ Can be an integer to determine the exact padding."
;; face categories -- required for all themes
(highlight base6)
(vertical-bar base2)
(vertical-bar bg-alt)
(selection base4)
(builtin magenta)
(comments green)
@ -111,7 +111,7 @@ Can be an integer to determine the exact padding."
:background modeline-bg-alt :foreground modeline-fg-alt
:box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-alt)))
(fringe :background base2)
(fringe :background bg-alt)
;; --- major-mode faces ------------------------
;; all-the-icons

View file

@ -79,7 +79,7 @@
;; face categories -- required for all themes
(highlight alt-blue)
(vertical-bar base1)
(vertical-bar bg-alt)
(selection blue)
(builtin yellow)
(comments light-grey)
@ -147,10 +147,10 @@
;; modeline
(doom-modeline-bar :background (if -modeline-bright modeline-bg highlight))
(doom-modeline-highlight :foreground (doom-lighten base2 0.3))
(doom-modeline-project-dir :foreground teal :inherit 'bold )
(doom-modeline-project-dir :foreground teal :inherit 'bold)
(doom-modeline-buffer-path :foreground red)
(doom-modeline-buffer-file :foreground fg)
(doom-modeline-buffer-major-mode :foreground teal)
(doom-modeline-buffer-major-mode :foreground teal :weight 'bold)
(doom-modeline-buffer-modified :foreground violet)
(doom-modeline-panel :background base0)
(doom-modeline-urgent :foreground modeline-fg)

View file

@ -17,33 +17,33 @@ determine the exact padding."
"A dark theme inspired by Atom City Lights"
;; name default 256 16
((bg '("#282b33" nil nil ))
(bg-alt '("#1f2024" nil nil ))
(base0 '("#222228" "black" "black" ))
(base1 '("#282b33" "#1e1e1e" "brightblack" ))
(base2 '("#34373e" "#2e2e2e" "brightblack" ))
(base3 '("#41454b" "#262626" "brightblack" ))
(base4 '("#515462" "#3f3f3f" "brightblack" ))
(base5 '("#888395" "#525252" "brightblack" ))
(base6 '("#929292" "#6b6b6b" "brightblack" ))
(base7 '("#727269" "#979797" "brightblack" ))
(base8 '("#eceff4" "#dfdfdf" "white" ))
(fg-alt '("#c9d9ff" "#bfbfbf" "brightwhite" ))
(fg '("#c6c6c6" "#2d2d2d" "white" ))
((bg '("#282b33" "#282b33" nil ))
(bg-alt '("#1f2024" "#1f2024" nil ))
(base0 '("#222228" "#222228" "black" ))
(base1 '("#282b33" "#282b33" "brightblack" ))
(base2 '("#34373e" "#34373e" "brightblack" ))
(base3 '("#41454b" "#41454b" "brightblack" ))
(base4 '("#515462" "#515462" "brightblack" ))
(base5 '("#888395" "#888395" "brightblack" ))
(base6 '("#929292" "#929292" "brightblack" ))
(base7 '("#727269" "#727269" "brightblack" ))
(base8 '("#eceff4" "#eceff4" "white" ))
(fg-alt '("#c9d9ff" "#c9d9ff" "brightwhite" ))
(fg '("#c6c6c6" "#c6c6c6" "white" ))
(grey base4)
(red '("#e1c1ee" "#ff6655" "red" ))
(orange '("#a6c1e0" "#dd8844" "brightred" ))
(green '("#5b94ab" "#99bb66" "green" ))
(teal '("#7ebebd" "#44b9b1" "brightgreen" ))
(yellow '("#cfcf9c" "#ECBE7B" "yellow" ))
(blue '("#819cd6" "#51afef" "brightblue" ))
(light-blue '("#90a6db" "#ECBE7B" "yellow" ))
(dark-blue '("#616c96" "#2257A0" "blue" ))
(magenta '("#a6c1e0" "#c678dd" "magenta" ))
(violet '("#b0a2e7" "#a9a1e1" "brightmagenta"))
(cyan '("#7289bc" "#46D9FF" "brightcyan" ))
(dark-cyan '("#6e7899" "#5699AF" "cyan" ))
(red '("#e1c1ee" "#e1c1ee" "red" ))
(orange '("#a6c1e0" "#a6c1e0" "brightred" ))
(green '("#5b94ab" "#5b94ab" "green" ))
(teal '("#7ebebd" "#7ebebd" "brightgreen" ))
(yellow '("#cfcf9c" "#cfcf9c" "yellow" ))
(blue '("#819cd6" "#819cd6" "brightblue" ))
(light-blue '("#90a6db" "#90a6db" "yellow" ))
(dark-blue '("#616c96" "#616c96" "blue" ))
(magenta '("#a6c1e0" "#a6c1e0" "magenta" ))
(violet '("#b0a2e7" "#b0a2e7" "brightmagenta"))
(cyan '("#7289bc" "#7289bc" "brightcyan" ))
(dark-cyan '("#6e7899" "#6e7899" "cyan" ))
;; face categories -- required for all themes
(highlight blue)
@ -124,6 +124,11 @@ determine the exact padding."
(css-property :foreground green)
(css-selector :foreground blue)
;; mic-paren
(paren-face-match :foreground teal :background base0 :weight 'ultra-bold)
(paren-face-mismatch :foreground red :background violet :weight 'ultra-bold)
(paren-face-no-match :inherit 'paren-face-mismatch :weight 'ultra-bold)
;; markdown-mode
(markdown-markup-face :foreground base5)
(markdown-header-face :inherit 'bold :foreground red)