GitHub user jarey-ds edited a comment on the discussion: How to custom Superset
looks and theme
@rohitushur if using the Helm chart and superset 4.x, you can define the same
entries declared above for the THEME_OVERRIDES env variable, in the following
values.yaml section:
```yaml
configOverrides:
themeoverrides: |
THEME_OVERRIDES = {
"borderRadius": 4,
"colors": {
"primary": {
"base": 'red',
},
}
}
```
If you're using superset 5.x, you can use the new method, described here:
https://superset.apache.org/docs/configuration/theming#1--create-a-theme
example:
``ỳaml
configOverrides:
theme: |
THEME = {
"token": {
"colorBgBase": "#faad14"
}
}
```
GitHub link:
https://github.com/apache/superset/discussions/30604#discussioncomment-13834001
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]