feat: add Aurora Glass built-in theme

This commit is contained in:
Linus Rath
2026-06-03 19:30:51 +02:00
parent 9953557af0
commit 9863b9d88e
3 changed files with 271 additions and 4 deletions
+3 -2
View File
@@ -2,8 +2,8 @@ import { describe, it, expect } from 'vitest';
import { BUILTIN_THEMES } from '../builtin-themes';
describe('BUILTIN_THEMES', () => {
it('contains exactly 5 themes', () => {
expect(BUILTIN_THEMES).toHaveLength(5);
it('contains exactly 6 themes', () => {
expect(BUILTIN_THEMES).toHaveLength(6);
});
it('all themes have required fields', () => {
@@ -44,6 +44,7 @@ describe('BUILTIN_THEMES', () => {
expect(names).toContain('Catppuccin');
expect(names).toContain('Solarized');
expect(names).toContain('Roundcube Elastic');
expect(names).toContain('Aurora Glass');
});
it('theme IDs are unique', () => {