index.js 225 字节
Newer Older
1
import { createCss } from '@stitches/css'
2 3
import { createStyled } from '@stitches/styled'

4
export const css = createCss({
5 6 7 8 9 10 11
  tokens: {
    colors: {
      RED: 'tomato',
    },
  },
})

12
export const styled = createStyled(css)