Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1414x | import { FontSizeThemeConfig } from '../types'; export default (overrides: FontSizeThemeConfig) => ({ 100: 0.75, 150: 0.875, 200: 1, 300: 1.25, 400: 1.5, 500: 2, 600: 2.5, 700: 3, 800: 3.75, 900: 4.5, ...overrides }); |