(theme: ThemeName)
| 58 | * Custom themes are not supported here — falls back to dark. |
| 59 | */ |
| 60 | export function getColorPaletteSync(theme: ThemeName): ColorPalette { |
| 61 | if (theme === 'light') return getBuiltInPalette('light'); |
| 62 | return getBuiltInPalette('dark'); |
| 63 | } |
nothing calls this directly
no test coverage detected