* Reloads styles.
()
| 119 | * Reloads styles. |
| 120 | */ |
| 121 | function reloadStyles(): void { |
| 122 | if (_themeState.theme) { |
| 123 | for (const styleRecord of _themeState.registeredStyles) { |
| 124 | applyThemableStyles(styleRecord.themableStyle, styleRecord); |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Find theme tokens and replaces them with provided theme values. |
no test coverage detected