(s: string)
| 57 | .filter((theme) => theme.type !== 'custom'); |
| 58 | const customThemeNames = Object.keys(customThemes); |
| 59 | const capitalize = (s: string) => s.charAt(0).toUpperCase() + s.slice(1); |
| 60 | // Generate theme items |
| 61 | const themeItems = [ |
| 62 | ...builtInThemes.map((theme) => ({ |