Replies: 1 comment 1 reply
-
Hey @ptdtan! I'm here to help you with Superset customization and any other questions you might have. Let's get started! To customize the appearance and theme of Superset to fit your branding, you can modify the For example, to change the primary color scheme, update the const defaultTheme = {
colors: {
primary: {
base: '#20A7C9', // Change this to your brand's primary color
// other color variations
},
// other color objects
},
// other properties
}; You can also adjust typography settings to match your brand's font styles: typography: {
families: {
sansSerif: `'Inter', Helvetica, Arial`, // Change to your brand's font
// other font settings
},
// other typography settings
}, Additionally, you can use the THEME_OVERRIDES = {
"borderRadius": 4,
"colors": {
"primary": {
"base": 'red', // Change this to your brand's primary color
},
// other color settings
}
} By modifying these properties, you can align Superset's appearance with your brand's visual identity [1][2]. |
Beta Was this translation helpful? Give feedback.
-
Hi @dosu, I'm new to Superset, how can I custom Superset looks and theme to fit my branding?
Beta Was this translation helpful? Give feedback.
All reactions