forked from BernardOnuh/PuppyLoveFrontEnd-main
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (69 loc) · 1.47 KB
/
Copy pathtailwind.config.js
File metadata and controls
74 lines (69 loc) · 1.47 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
62
63
64
65
66
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#F59332',
dark:"#545454",
vdark:"#1F1F1F",
light:"#FF860F",
},
white:{
DEFAULT: '#FFFFFF',
light:"#8A8A8A",
vdark:"#333333",
vlight:"#FFFFFF5C",
vlight:"#F5F5F5",
},
grey:{
DEFAULT:"rgba(107, 107, 107, 0.21) ",
dark:"#B0B0B0",
light:"#E6E6E6",
darkest:"#8C8C8C",
},
black:{
DEFAULT: '#131313',
light:"#70707029",
dark:"#8C8C8C",
darkest:"#6B6B6B36",
vdark:"#292929",
},
yellow:{
DEFAULT: '#F17F3D',
vdark:"#393939",
light:"#ADADAD",
},
red:{
DEFAULT: '#E91C24',
}
},
},
screens: {
'xs': '0px',
'sm': '640px',
'md': '762px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1511px',
'3xl': '1920px',
},
fontSize: {
'xs': '12px',
'sm': '14px',
'tiny': '16px',
'base': '18px',
'lg': '20px',
'xl': '24px',
'2xl': '32px',
'3xl': '36px',
'4xl': '48px',
'5xl': '60px',
},
},
plugins: [],
});