(theme: ITheme)
| 1 | import { ITheme } from './base'; |
| 2 | |
| 3 | export function applyTheme(theme: ITheme) { |
| 4 | const root = document.documentElement; |
| 5 | Object.keys(theme).forEach((cssVar) => { |
| 6 | root.style.setProperty(cssVar, theme[cssVar]); |
| 7 | }); |
| 8 | } |
| 9 | |
| 10 | export interface ICreateTheme { |
| 11 | primary: string; |