forked from Rockachopa/Timmy-time-dashboard
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
|
|
/**
|
||
|
|
* Thin re-exports so consumers don't need to know about internal theme plumbing.
|
||
|
|
* Full implementation lives in lib/_core/theme.ts.
|
||
|
|
*/
|
||
|
|
export {
|
||
|
|
Colors,
|
||
|
|
Fonts,
|
||
|
|
SchemeColors,
|
||
|
|
ThemeColors,
|
||
|
|
type ColorScheme,
|
||
|
|
type ThemeColorPalette,
|
||
|
|
} from "@/lib/_core/theme";
|