|
1 | 1 | /** @type {import('tailwindcss').Config} */ |
2 | 2 | module.exports = { |
3 | 3 | content: ['./src/**/*.{js,ts,jsx,tsx}', './src/**/*.stories.{js,ts,jsx,tsx}'], |
4 | | - theme: { |
5 | | - colors: { |
6 | | - transparent: 'transparent', |
7 | | - white: 'var(--color-white)', |
8 | | - black: 'var(--color-black)', |
9 | | - dark: 'var(--color-dark)', |
10 | | - light: 'var(--color-light)', |
11 | | - brand: 'var(--color-brand)', |
12 | | - prose: 'var(--color-prose)', |
13 | | - badge: { |
14 | | - background: 'var(--color-badge-background)', |
15 | | - foreground: 'var(--color-badge-foreground)', |
16 | | - }, |
17 | | - }, |
18 | | - extend: { |
19 | | - borderRadius: { |
20 | | - '2xs': 'var(--radius-xs)', |
21 | | - xs: 'calc(var(--radius-xs) + 1px)', |
22 | | - sm: 'calc(var(--radius-xs) + 2px)', |
23 | | - md: 'calc(var(--radius-s))', |
24 | | - lg: 'calc(var(--radius-s) + 1px)', |
25 | | - xl: 'calc(var(--radius-s) + 2px)', |
26 | | - '2xl': 'calc(var(--radius-m))', |
27 | | - }, |
28 | | - fontSize: { |
29 | | - '2xs': 'var(--text-2xs)', |
30 | | - xs: 'var(--text-xs)', |
31 | | - s: 'var(--text-s)', |
32 | | - m: 'var(--text-m)', |
33 | | - l: 'var(--text-l)', |
34 | | - xl: 'var(--text-xl)', |
35 | | - '2xl': 'var(--text-2xl)', |
36 | | - '3xl': 'var(--text-3xl)', |
37 | | - '4xl': 'var(--text-4xl)', |
38 | | - }, |
39 | | - fontFamily: { |
40 | | - mono: ['var(--font-mono)'], |
41 | | - }, |
42 | | - }, |
43 | | - }, |
44 | | - plugins: [require('@tailwindcss/typography')], |
| 4 | + presets: [require('./tailwind.base.config')], |
45 | 5 | } |
0 commit comments