forked from gndx/react-eth-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
75 lines (73 loc) · 1.8 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
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
75
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
container: {
center: true,
screens: {
sm: "100%",
md: "100%",
lg: "992px",
xl: "1280px",
},
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
robotoSlab: ["Roboto Slab", "serif"],
},
fontSize: {
xs: ".75rem",
xtiny: ".8125rem",
tiny: ".875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.375rem",
"3xl": "1.5rem",
"4xl": "1.5625rem",
"5xl": "1.625rem",
"6xl": "1.75rem",
"7xl": "2.5rem",
"8xl": "6rem",
},
extend: {
backgroundImage: {
homeBg: "url('/src/assets/images/background/bg.jpg')",
"homeBg-dark": "url('/src/assets/images/background/bgtwo.jpg')",
},
colors: {
gray: "#F3F6F6",
"gray-lite": "#44566C",
oriange: "#E93B81",
green: "#6AB5B9",
"oriange-lite": "#FD7590",
"color-50": "#C17CEB",
"color-100": "#FCF4FF",
"color-200": "#D566FF",
"color-300": "#FFF4F4",
"color-400": "#FF6080",
"color-500": "#F3FAFF",
"color-600": "#269FFF",
"color-700": "#FEFAF0",
"color-800": "#DDA10C",
"color-810": "#F8FBFB",
"color-820": "#8774FF",
"color-830": "#FF75D8",
"color-840": "#FF6786",
"color-910": "#A6A6A6",
"color-920": "#1D1D1D",
"color-930": "#FF6464",
"color-940": "#9272D4",
"color-950": "#5185D4",
"color-960": "#CA56F2",
"color-970": "#1C1C1C",
"color-980": "#0D0D0D",
"color-990": "#212425",
},
boxShadow: {
icon: "0 4px 6px 0px rgba(0, 0, 0, 0.08)",
},
},
},
plugins: [],
};