import type { ThemeStylePresetId } from '../types'; import type { ThemePreset } from './types'; import { defaultPreset } from './default'; import { djangoCfgPreset } from './django-cfg'; import { iosPreset } from './ios'; import { macosPreset } from './macos'; import { windowsPreset } from './windows'; import { softPreset } from './soft'; import { densePreset } from './dense'; import { highContrastPreset } from './high-contrast'; export type { ThemePreset }; export const THEME_PRESETS: Record = { 'default': defaultPreset, 'django-cfg': djangoCfgPreset, 'ios': iosPreset, 'macos': macosPreset, 'windows': windowsPreset, 'soft': softPreset, 'dense': densePreset, 'high-contrast': highContrastPreset, };