-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
52 lines (51 loc) · 1.1 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
// // stone-100
// light: '#f7fafc',
// stone-50
light: '#f9fafb',
// slate-900
dark: '#1a202c',
primary: {
// red-500
DEFAULT: '#f56565',
// red-600
dark: '#e53e3e',
// red-400
light: '#fc8181',
},
secondary: {
// green-500
DEFAULT: '#48bb78',
// green-600
dark: '#38a169',
// green-400
light: '#68d391',
},
tertiary: {
// amber-400
DEFAULT: '#fbbf24',
// amber-500
dark: '#f59e0b',
// amber-300
light: '#fcd34d',
},
quaternary: {
// rose-50
DEFAULT: '#fff1f2',
},
},
},
},
plugins: [],
}
export default config