branch: externals/doric-themes commit 88ee73c69e5826157885bbae54ea274bad97672d Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Make changes to account for new base colour names --- doric-themes.el | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/doric-themes.el b/doric-themes.el index 679fa270b7..4a39995905 100644 --- a/doric-themes.el +++ b/doric-themes.el @@ -1328,18 +1328,18 @@ Run `doric-themes-after-load-theme-hook' after loading a theme." `(ansi-color-black ((t :background "black" :foreground "black"))) `(ansi-color-bright-white ((t :background "white" :foreground "white"))) `(ansi-color-white ((t :background "gray70" :foreground "gray70"))) - `(ansi-color-bright-red ((t :background ,fg-faint-red :foreground ,fg-faint-red))) - `(ansi-color-red ((t :background ,fg-faint-red :foreground ,fg-faint-red))) - `(ansi-color-bright-green ((t :background ,fg-faint-green :foreground ,fg-faint-green))) - `(ansi-color-green ((t :background ,fg-faint-green :foreground ,fg-faint-green))) - `(ansi-color-bright-yellow ((t :background ,fg-faint-yellow :foreground ,fg-faint-yellow))) - `(ansi-color-yellow ((t :background ,fg-faint-yellow :foreground ,fg-faint-yellow))) - `(ansi-color-bright-blue ((t :background ,fg-faint-blue :foreground ,fg-faint-blue))) - `(ansi-color-blue ((t :background ,fg-faint-blue :foreground ,fg-faint-blue))) - `(ansi-color-bright-magenta ((t :background ,fg-faint-magenta :foreground ,fg-faint-magenta))) - `(ansi-color-magenta ((t :background ,fg-faint-magenta :foreground ,fg-faint-magenta))) - `(ansi-color-bright-cyan ((t :background ,fg-faint-cyan :foreground ,fg-faint-cyan))) - `(ansi-color-cyan ((t :background ,fg-faint-cyan :foreground ,fg-faint-cyan))) + `(ansi-color-bright-red ((t :background ,fg-red :foreground ,fg-red))) + `(ansi-color-red ((t :background ,fg-red :foreground ,fg-red))) + `(ansi-color-bright-green ((t :background ,fg-green :foreground ,fg-green))) + `(ansi-color-green ((t :background ,fg-green :foreground ,fg-green))) + `(ansi-color-bright-yellow ((t :background ,fg-yellow :foreground ,fg-yellow))) + `(ansi-color-yellow ((t :background ,fg-yellow :foreground ,fg-yellow))) + `(ansi-color-bright-blue ((t :background ,fg-blue :foreground ,fg-blue))) + `(ansi-color-blue ((t :background ,fg-blue :foreground ,fg-blue))) + `(ansi-color-bright-magenta ((t :background ,fg-magenta :foreground ,fg-magenta))) + `(ansi-color-magenta ((t :background ,fg-magenta :foreground ,fg-magenta))) + `(ansi-color-bright-cyan ((t :background ,fg-cyan :foreground ,fg-cyan))) + `(ansi-color-cyan ((t :background ,fg-cyan :foreground ,fg-cyan))) `(aw-leading-char-face ((t :inherit bold-italic :height 1.5 :foreground ,fg-accent))) @@ -1364,9 +1364,9 @@ Run `doric-themes-after-load-theme-hook' after loading a theme." ,@(doric-themes-prepare-faces doric-themes-accent-foreground-only-faces :foreground 'fg-accent) ,@(doric-themes-prepare-faces doric-themes-main-foreground-only-faces :foreground 'fg-main) - ,@(doric-themes-prepare-faces doric-themes-error-foreground-only-faces :inherit ''bold :foreground 'fg-faint-red) - ,@(doric-themes-prepare-faces doric-themes-warning-foreground-only-faces :inherit ''bold :foreground 'fg-faint-yellow) - ,@(doric-themes-prepare-faces doric-themes-success-foreground-only-faces :inherit ''bold :foreground 'fg-faint-green) + ,@(doric-themes-prepare-faces doric-themes-error-foreground-only-faces :inherit ''bold :foreground 'fg-red) + ,@(doric-themes-prepare-faces doric-themes-warning-foreground-only-faces :inherit ''bold :foreground 'fg-yellow) + ,@(doric-themes-prepare-faces doric-themes-success-foreground-only-faces :inherit ''bold :foreground 'fg-green) ,@(doric-themes-prepare-faces doric-themes-bold-faces :inherit ''bold :foreground 'fg-shadow-intense) ,@(doric-themes-prepare-faces doric-themes-bold-italic-faces :inherit ''bold-italic :foreground 'fg-shadow-subtle)