import type { ThemeStylePresetId } from './types'; import { THEME_PRESETS } from './themes'; export const THEME_STYLE_PRESET_ORDER = [ 'default', 'django-cfg', 'ios', 'macos', 'windows', 'soft', 'dense', 'high-contrast', ] as const satisfies readonly ThemeStylePresetId[]; export const THEME_STYLE_PRESETS = THEME_PRESETS;