mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-15 17:12:59 -04:00
14 lines
493 B
JavaScript
14 lines
493 B
JavaScript
// Theme Public API
|
|
// Purpose: Gives UI consumers one stable import path for catalog resolution and layout constants.
|
|
// Scope: Re-exports theme behavior while CSS remains independently loaded by the app entrypoint.
|
|
|
|
export {
|
|
DEFAULT_PAGE_THEME_KEY,
|
|
PAGE_THEME_OPTIONS,
|
|
getPageTheme,
|
|
getPageThemeClass,
|
|
normalizePageThemeKey,
|
|
} from './catalog.js';
|
|
export { themeGapClass, themeStackClass } from './layout.js';
|
|
export { default as usePageThemeClass } from './usePageThemeClass.js';
|