boxons/app/shared/theme/index.ts

17 lines
273 B
TypeScript

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;