Files
astra-mobile/src/theme/index.ts
T
2026-05-25 21:54:43 -04:00

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 };