@littlespoon/theme
Install
Yarn:
yarn add @littlespoon/theme
npm:
npm install @littlespoon/theme --save
UNPKG
Usage
Import theme:
import theme from '@littlespoon/theme'
theme.colors.brand60()
Import colors:
import colors from '@littlespoon/theme/lib/colors'
colors.brand60()
Import color with alpha transparency:
import { brand60 } from '@littlespoon/theme/lib/colors/primary'
brand60(0.5)
Import fonts:
import { primary, secondary } from '@littlespoon/theme/lib/fonts'
primary.family
primary.weight.bold
Import primary font-family and font-weight:
import { family, weight } from '@littlespoon/theme/lib/fonts/primary'
family
weight.bold
Import breakpoints:
import breakpoints, { desktop } from '@littlespoon/theme/lib/breakpoints'
breakpoints.mobile
desktop
Generate media queries:
import { desktop, down, mobile, up } from '@littlespoon/theme/lib/breakpoints'
up(mobile, 'font-size: 42rem')
down(desktop, 'display: none')