Files
cunningham/apps/demo/cunningham.ts
Nathan Vasse f48dac79c0 🔧(demo) update demo app to ts config file, customize one token
Showcase a situation where we want to customize a component's design token.
2023-01-11 11:01:56 +01:00

13 lines
155 B
TypeScript

export default {
theme: {
colors: {
primary: "purple",
},
},
components: {
button: {
"border-radius": "30px",
},
},
};