-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
30 lines (28 loc) · 993 Bytes
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import type { Config } from 'tailwindcss';
import color from 'tailwindcss/colors';
const config = {
darkMode: ['class'],
content: ['./components/**/*.{ts,tsx}', './app/**/*.{ts,tsx}'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: color.black,
white: color.white,
brand: color.sky,
primary: 'hsl(var(--primary))',
secondary: 'hsl(var(--secondary))',
tertiary: 'hsl(var(--tertiary))',
typography: 'hsl(var(--typography))',
'primary-reverse': 'hsl(var(--primary-reverse))',
'secondary-reverse': 'hsl(var(--secondary-reverse))',
'tertiary-reverse': 'hsl(var(--tertiary-reverse))',
'typography-reverse': 'hsl(var(--typography-reverse))',
border: 'hsl(var(--border))',
background: 'hsl(var(--background))',
'body-background': 'hsl(var(--body-background))',
},
},
plugins: [require('tailwindcss-animate')],
} satisfies Config;
export default config;