forked from singodiyashubham87/Draw-it-out
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.01 KB
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx}", "./*.html"],
darkMode: "class",
theme: {
extend: {
colors: {
bgBlack: "#212325",
lightBlue: "#9CDAF1",
darkBlue: "#368186",
lightRed: "#F4CBB2",
lightGrey: "#ABABAB",
darkGrey: "#2E3136",
linkedin: "#0077b5",
twitter: "#1da1f2",
youtube: "#c31a1e",
github: "#333",
},
fontFamily: {
primary: "Arvo",
},
screens: {
xxl: "1751px",
mmd: "851px",
gsm: "571px",
msm: "491px",
vsm: "441px",
vvsm: "351px",
},
boxShadow: {
vsm: "0px 0px 3px #a5a8a8",
mdm: "0px 0px 5px #727575",
},
backgroundImage: {
instagram:
"radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%)",
},
textColor: {
instagram: "#e1306c",
},
},
},
plugins: [],
};