| 1 | export type Theme = 'light' | 'dark' | 'system'; |
| 2 | |
| 3 | export interface ThemeConfig { |
| 4 | name: string; |
| 5 | value: Theme; |
| 6 | icon: string; |
| 7 | } |
| 8 | |
| 9 | export const themes: ThemeConfig[] = [ |
| 10 | { |
nothing calls this directly
no outgoing calls
no test coverage detected