(value: ColorValue | undefined)
| 522 | } |
| 523 | |
| 524 | function getHex(value: ColorValue | undefined): HexColor | undefined { |
| 525 | if (!value?.startsWith("#")) return |
| 526 | return value as HexColor |
| 527 | } |
| 528 | |
| 529 | export function resolveTheme(theme: DesktopTheme): { light: ResolvedTheme; dark: ResolvedTheme } { |
| 530 | return { |
no outgoing calls
no test coverage detected