-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
61 lines (61 loc) · 1.32 KB
/
tailwind.config.js
File metadata and controls
61 lines (61 loc) · 1.32 KB
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
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: {
dark: '#FC8634',
base: '#FFB959',
light: '#FFE6D4',
},
neutral: {
25: '#FFFFFF',
50: '#F3F4F4',
100: '#E7E8E9',
200: '#DFDFD2',
300: '#B3A6A6',
400: '#707479',
500: '#404640',
600: '#101820',
700: '#0D151A',
800: '#0A0E13',
900: '#060A0D',
1000: '#050606',
},
yellow: {
dark: '#F9C916',
base: '#FCDEA4',
light: '#FFFAE0',
},
orange: {
dark: '#EC8C3A',
base: '#FB6423',
light: '#FFE8D5',
},
red: {
dark: '#C4270F',
base: '#FA4023',
light: '#FFE4E0',
},
green: {
dark: '#00A67A',
base: '#18E1B6',
light: '#CDFEE8',
extraLight: '#EBFFF6',
},
blue: {
dark: '#0F3C8E',
base: '#1649FF',
light: '#D7EAFF',
},
},
},
},
plugins: [],
}