(theme: ITheme)
| 109 | * @param {theme} theme JSON object of theme tokens to values. |
| 110 | */ |
| 111 | export function loadTheme(theme: ITheme): void { |
| 112 | _themeState.theme = theme; |
| 113 | |
| 114 | // reload styles. |
| 115 | reloadStyles(); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Reloads styles. |
no test coverage detected