/**
* Theme Presets Registry
* Exports all built-in theme presets as a single record.
*/
import { ThemeStandard } from '../types.js';
import { HYVA_THEME } from './hyva.js';
import { LUMA_THEME } from './luma.js';
import { BREEZE_THEME } from './breeze.js';
import { PORTO_THEME } from './porto.js';
export { HYVA_THEME } from './hyva.js';
export { LUMA_THEME } from './luma.js';
export { BREEZE_THEME } from './breeze.js';
export { PORTO_THEME } from './porto.js';
/**
* All built-in theme presets indexed by theme ID.
*/
export const THEME_PRESETS: Record<string, ThemeStandard> = {
hyva: HYVA_THEME,
luma: LUMA_THEME,
breeze: BREEZE_THEME,
porto: PORTO_THEME,
};