const BASE_BORDER_WIDTH = 1; const BASE_SPACE = 8; const BASE_SIZE = 8; const NEUTRAL_FONT = 'BeVietnamPro'; const PLAYFUL_FONT = 'Saiga'; const BASE_FONT_SIZE = 10; const BASE_RADIUS = 4; const scale = { borderWidth: BASE_BORDER_WIDTH, space: BASE_SPACE, size: BASE_SIZE, font: { neutral: NEUTRAL_FONT, playful: PLAYFUL_FONT, }, fontSize: BASE_FONT_SIZE, radius: BASE_RADIUS, }; type Scale = typeof scale; export { scale }; export type { Scale };