-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (46 loc) · 995 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
colors: {
red:'#FF1000',
green:'#00FF00',
blue:'#0000FF',
white:'#FFFFFF',
yellow:{
'100':'#FFF8E5',
'200':'#FFEFCB',
'300':'#FFE6B1',
'400':'#FFDD97',
'500':'#FFD47D',
'600':'#FFCB63',
'700':'#FFC24A',
'800':'#FFB930',
'900':'#FFB017',
},
darkYellow:{
'100':'#E5D7C6',
'200':'#CBBEA7',
'300':'#B2A588',
'400':'#988C69',
'500':'#7F7350',
'600':'#665937',
'700':'#4C4020',
'800':'#332806',
'900':'#191000',
},
gray:{
'100':'#F3F3F3',
'200':'#E0E0E0',
'300':'#C8C8C8',
'400':'#AFAFAF',
'500':'#969696',
'600':'#7D7D7D',
'700':'#646464',
'800':'#4B4B4B',
'900':'#323232',
}
},
},
// plugins: [],
}