14 lines
482 B
TypeScript
14 lines
482 B
TypeScript
/**
|
|
* @glam/theme - MUI theme configuration for GLAM frontends
|
|
*
|
|
* Provides:
|
|
* - Base theme with shared typography, spacing, breakpoints
|
|
* - Site-specific themes:
|
|
* - bronhouder: Blue palette (heritage custodian portal)
|
|
* - archief: Green palette (archief assistent)
|
|
*/
|
|
|
|
export { baseTheme, createSiteTheme } from './base';
|
|
export { bronhouderTheme } from './bronhouder';
|
|
export { archiefTheme } from './archief';
|
|
export type { SiteTheme, ThemeOptions } from './types';
|