This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch template_less
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 9dedb588ba20638b7be21d63969779be564ac536
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Sat Mar 29 15:30:35 2025 -0700

    altering comment for THEME_OVERRIDES in superset/config.py
---
 superset/config.py | 21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/superset/config.py b/superset/config.py
index e0ebbb3f2e..b604094bfe 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -657,23 +657,10 @@ COMMON_BOOTSTRAP_OVERRIDES_FUNC: Callable[  # noqa: E731
 # This is merely a default
 EXTRA_CATEGORICAL_COLOR_SCHEMES: list[dict[str, Any]] = []
 
-# THEME_OVERRIDES is used for adding custom theme to superset
-# example code for "My theme" custom scheme
-# THEME_OVERRIDES = {
-#   "borderRadius": 4,
-#   "colors": {
-#     "primary": {
-#       "base": 'red',
-#     },
-#     "secondary": {
-#       "base": 'green',
-#     },
-#     "grayscale": {
-#       "base": 'orange',
-#     }
-#   }
-# }
-
+# THEME_OVERRIDES is used for adding 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] = {}
 
 # EXTRA_SEQUENTIAL_COLOR_SCHEMES is used for adding custom sequential color 
schemes

Reply via email to