mirror of
https://github.com/Boof2015/astra-mobile.git
synced 2026-08-19 04:06:43 +02:00
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
import { colors } from './colors';
|
|
import { fonts, fontSize, lineHeight } from './typography';
|
|
import { spacing, radius, layout, durations } from './spacing';
|
|
|
|
export const theme = {
|
|
colors,
|
|
fonts,
|
|
fontSize,
|
|
lineHeight,
|
|
spacing,
|
|
radius,
|
|
layout,
|
|
durations,
|
|
} as const;
|
|
|
|
export type Theme = typeof theme;
|
|
|
|
export { colors, fonts, fontSize, lineHeight, spacing, radius, layout, durations };
|