( env: CliEnv = getCliEnv(), )
| 612 | } |
| 613 | |
| 614 | export const detectIDETheme = ( |
| 615 | env: CliEnv = getCliEnv(), |
| 616 | ): ThemeName | null => { |
| 617 | const theme = detectVSCodeTheme(env) |
| 618 | if (theme) return theme |
| 619 | |
| 620 | const jbTheme = detectJetBrainsTheme(env) |
| 621 | if (jbTheme) return jbTheme |
| 622 | |
| 623 | const zedTheme = detectZedTheme(env) |
| 624 | if (zedTheme) return zedTheme |
| 625 | |
| 626 | return null |
| 627 | } |
| 628 | |
| 629 | export const getIDEThemeConfigPaths = ( |
| 630 | env: CliEnv = getCliEnv(), |
nothing calls this directly
no test coverage detected