diff --git a/emhttp/plugins/dynamix/include/ThemeHelper.php b/emhttp/plugins/dynamix/include/ThemeHelper.php index 13bd5ad1f..f560be970 100644 --- a/emhttp/plugins/dynamix/include/ThemeHelper.php +++ b/emhttp/plugins/dynamix/include/ThemeHelper.php @@ -18,10 +18,10 @@ class ThemeHelper { private const LIGHT_THEMES = [self::THEME_WHITE, self::THEME_AZURE]; private const FGCOLORS = [ - self::THEME_BLACK => self::COLOR_BLACK, + self::THEME_AZURE => self::COLOR_BLACK, self::THEME_WHITE => self::COLOR_BLACK, + self::THEME_BLACK => self::COLOR_WHITE, self::THEME_GRAY => self::COLOR_WHITE, - self::THEME_AZURE => self::COLOR_WHITE ]; private const INIT_ERROR = 'ThemeHelper not initialized. Call initWithCurrentThemeSetting() first.';