(theme: DesktopTheme, themeId: string, mode: "light" | "dark")
| 213 | } |
| 214 | |
| 215 | const applyTheme = (theme: DesktopTheme, themeId: string, mode: "light" | "dark") => { |
| 216 | applyThemeCss(theme, themeId, mode) |
| 217 | props.onThemeApplied?.(theme, mode) |
| 218 | } |
| 219 | |
| 220 | const ids = () => { |
| 221 | const extra = Object.keys(store.themes) |
no test coverage detected