Slide 32
Slide 32 text
const source = {
// Main theme
styles: {
Button: {
button: {
backgroundColor: 'lightpink',
color: 'blue',
padding: '0.6em',
fontWeight: 800,
},
},
},
presets: {
// dark style variation
dark: {
Button: {
button: {
backgroundColor: 'violet',
color: 'white',
},
},
},
},
}
const appTheme = theme(source)