Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 182x | import orchid from './orchid.json';
import arctic from './arctic.json';
import verdant from './verdant.json';
import midnight from './midnight.json';
import slate from './slate.json';
import deep from './deep.json';
export interface ThemePreset {
name: string;
label: string;
cssVars: {
dark: Record<string, string>;
};
}
export const themePresets: ThemePreset[] = [orchid, arctic, verdant, midnight, slate, deep];
|