Editor · VSCode
View theme →// slatewave/palette.ts
export const accent = '#5eead4';
export interface Theme {
name: string;
surface: 'editor' | 'terminal' | 'notes';
}
export function apply(theme: Theme): string {
return `${theme.name} on ${theme.surface}`;
}