| 1 |
import themeColorsMap from './_maps/colors/theme-colors'; |
| 2 |
import tintsMap from './_maps/colors/tints'; |
| 3 |
import darkTintsMap from './_maps/colors/dark-tints'; |
| 4 |
|
| 5 |
import spacingMap from './_maps/spacing/spacing'; |
| 6 |
|
| 7 |
import headingMap from './_maps/typography/heading'; |
| 8 |
import textMap from './_maps/typography/text'; |
| 9 |
import lineHeightMap from './_maps/typography/line-height'; |
| 10 |
import sizeMap from './_maps/typography/size'; |
| 11 |
|
| 12 |
import fontWeightMap from './_maps/font/font-weight'; |
| 13 |
|
| 14 |
export const themeColors = themeColorsMap; |
| 15 |
export const tints = tintsMap; |
| 16 |
export const darkTints = darkTintsMap; |
| 17 |
|
| 18 |
export const spacing = spacingMap; |
| 19 |
|
| 20 |
export const heading = headingMap; |
| 21 |
export const text = textMap; |
| 22 |
export const lineHeight = lineHeightMap; |
| 23 |
export const size = sizeMap; |
| 24 |
export const fontWeight = fontWeightMap; |
| 25 |
|