e1c87b33ca
Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
34 lines
691 B
TypeScript
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;
|