boxons/app/shared/theme/index.ts

17 lines
273 B
TypeScript
Raw Normal View History

2024-10-13 11:29:36 +00:00
import { colors } from './colors';
import { layout } from './layout';
export const theme = {
colors,
layout
};
declare module '@emotion/react' {
export interface Theme {
colors: typeof colors;
layout: typeof layout;
}
}
export type Theme = typeof theme;