-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (42 loc) · 1005 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (42 loc) · 1005 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx}'],
darkMode: 'selector', // Already correct
theme: {
extend: {
colors: {
primary: {
50: '#ffefdc',
100: '#ffdbba',
200: '#ffc797',
300: '#ffb274',
400: '#ff9e51',
500: '#fa8624', // Base color
600: '#c56a1c',
700: '#904e15',
800: '#5b310d',
900: '#261906',
950: '#120b03',
},
secondary: {
50: '#d9fffe',
100: '#b3eeed',
200: '#8de3e2',
300: '#67d9d8',
400: '#40cecd',
500: '#018b87', // Base color
600: '#016e6b',
700: '#01514f',
800: '#013433',
900: '#001817',
950: '#000c0c',
},
background: {
light: '#FFF8F3',
dark: '#1A202C',
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};