Add Solarized Dark and Solarized Light themes (#19064)

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
This commit is contained in:
Ramón Medrano Llamas
2026-02-16 23:01:52 +01:00
committed by GitHub
parent ddd28f6431
commit b38e0984b9
7 changed files with 446 additions and 57 deletions
@@ -114,10 +114,14 @@ export function ThemeDialog({
.getAvailableThemes()
.map((theme) => {
const fullTheme = themeManager.getTheme(theme.name);
const capitalizedType = capitalize(theme.type);
const typeDisplay = theme.name.endsWith(capitalizedType)
? ''
: capitalizedType;
return generateThemeItem(
theme.name,
capitalize(theme.type),
typeDisplay,
fullTheme,
terminalBackgroundColor,
);