branch: externals/ef-themes commit 34ab5300f2c72dcad5a0a0f1b4fd6f86cd3f2c2e Author: Pedro Cunha <apcu...@pm.me> Commit: Pedro Cunha <apcu...@pm.me>
Fix `:background-mode' property for ef-rosa and ef-melissa-dark Themes ef-rosa and ef-melissa-dark had a mismatched `:background-mode` property set to `'light` -- they're actually dark themes. --- ef-melissa-dark-theme.el | 2 +- ef-rosa-theme.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ef-melissa-dark-theme.el b/ef-melissa-dark-theme.el index ca0a3f7de9..280604c9f8 100644 --- a/ef-melissa-dark-theme.el +++ b/ef-melissa-dark-theme.el @@ -39,7 +39,7 @@ ;;;###theme-autoload (deftheme ef-melissa-dark "Legible dark theme with warm colors (yellow, red, green, cyan)." - :background-mode 'light + :background-mode 'dark :kind 'color-scheme :family 'ef) diff --git a/ef-rosa-theme.el b/ef-rosa-theme.el index 8586fbe3b4..2a1055440e 100644 --- a/ef-rosa-theme.el +++ b/ef-rosa-theme.el @@ -39,7 +39,7 @@ ;;;###theme-autoload (deftheme ef-rosa "Legible dark theme with magenta and green colors." - :background-mode 'light + :background-mode 'dark :kind 'color-scheme :family 'ef)