({ primary, secondary, textBase }: ICreateTheme)
| 14 | } |
| 15 | |
| 16 | export function createTheme({ primary, secondary, textBase }: ICreateTheme) { |
| 17 | return { |
| 18 | '--theme-primary': primary, |
| 19 | '--theme-secondary': secondary, |
| 20 | '--theme-text-base': textBase, |
| 21 | }; |
| 22 | } |