mistercrunch commented on code in PR #33851: URL: https://github.com/apache/superset/pull/33851#discussion_r2160090061
########## superset/config.py: ########## @@ -662,11 +669,17 @@ class D3TimeFormat(TypedDict, total=False): # This is merely a default EXTRA_CATEGORICAL_COLOR_SCHEMES: list[dict[str, Any]] = [] -# THEME_OVERRIDES is used for adding custom theme to superset, it follows the ant design +# THEME is used for setting a custom theme to Superset, it follows the ant design # theme structure # You can use the AntDesign theme editor to generate a theme structure # https://ant.design/theme-editor -THEME_OVERRIDES: dict[str, Any] = {} +# To expose a JSON theme editor modal that can be triggered from the navbar +# set the `ENABLE_THEME_EDITOR` feature flag to True. +# +# To set up the dark theme: +# THEME = {"algorithm": "dark"} + +THEME: dict[str, Any] = {} Review Comment: simple renaming here as overrides doesn't make sense anymore -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
