Files
cunningham/apps/demo/cunningham.ts
Nathan Panchout a420bcb1ab 🎨(demo) implement new tokens
implements the new token architecture
2025-09-23 15:58:43 +02:00

24 lines
431 B
TypeScript

import { defaultThemes } from "@openfun/cunningham-tokens";
const defaultConfig = {
themes: {
dark: {
components: {
card: {
"border-width": "none",
"box-shadow": "rgba(0, 8, 16, 0.3) 0px 16px 24px",
},
},
},
},
}
const config = {...defaultConfig, ...defaultThemes};
export default config;