Files
Charles de Dreuille e1c87b33ca Improve modes
Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
2026-02-25 10:15:28 +00:00

34 lines
691 B
TypeScript

export const allModes = {
'light backstage': {
themeMode: 'light',
themeName: 'backstage',
},
'dark backstage': {
themeMode: 'dark',
themeName: 'backstage',
},
'light spotify': {
themeMode: 'light',
themeName: 'spotify',
},
'dark spotify': {
themeMode: 'dark',
themeName: 'spotify',
},
'light spotify neutral-1': {
themeMode: 'light',
themeName: 'spotify',
background: 'neutral-1',
},
'light spotify neutral-2': {
themeMode: 'light',
themeName: 'spotify',
background: 'neutral-2',
},
'light spotify neutral-3': {
themeMode: 'light',
themeName: 'spotify',
background: 'neutral-3',
},
} as const;