Add VSCode themes plugin with 30+ popular themes (#336)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Gregory Schier
2025-12-31 10:05:55 -08:00
committed by GitHub
parent 6b9b207e1c
commit cd65ef8dbe
38 changed files with 2487 additions and 786 deletions
@@ -0,0 +1,77 @@
import type { Theme } from '@yaakapp/api';
export const solarizedDark: Theme = {
id: 'solarized-dark',
label: 'Solarized Dark',
dark: true,
base: {
surface: '#002b36',
surfaceHighlight: '#073642',
text: '#839496',
textSubtle: '#657b83',
textSubtlest: '#586e75',
primary: '#268bd2',
secondary: '#657b83',
info: '#268bd2',
success: '#859900',
notice: '#b58900',
warning: '#cb4b16',
danger: '#dc322f',
},
components: {
dialog: {
surface: '#002b36',
},
sidebar: {
surface: '#073642',
border: 'hsl(192,81%,17%)',
},
appHeader: {
surface: '#002b36',
border: 'hsl(192,81%,16%)',
},
responsePane: {
surface: '#073642',
border: 'hsl(192,81%,17%)',
},
button: {
primary: '#268bd2',
secondary: '#657b83',
info: '#268bd2',
success: '#859900',
notice: '#b58900',
warning: '#cb4b16',
danger: '#dc322f',
},
},
};
export const solarizedLight: Theme = {
id: 'solarized-light',
label: 'Solarized Light',
dark: false,
base: {
surface: '#fdf6e3',
surfaceHighlight: '#eee8d5',
text: '#657b83',
textSubtle: '#839496',
textSubtlest: '#93a1a1',
primary: '#268bd2',
secondary: '#839496',
info: '#268bd2',
success: '#859900',
notice: '#b58900',
warning: '#cb4b16',
danger: '#dc322f',
},
components: {
sidebar: {
surface: '#eee8d5',
border: '#d3cbb7',
},
appHeader: {
surface: '#eee8d5',
border: '#d3cbb7',
},
},
};