(darkTheme: boolean)
| 16 | } |
| 17 | |
| 18 | function getThemePalette(darkTheme: boolean) { |
| 19 | const theme = darkTheme ? 'dark-theme' : ''; |
| 20 | return SandDanceExplorer.themePalettes[theme]; |
| 21 | } |
| 22 | |
| 23 | function getViewerOptions(darkTheme: boolean) { |
| 24 | const color = getTextcolor(); |
no outgoing calls
no test coverage detected