-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (73 loc) · 2.34 KB
/
tailwind.config.js
File metadata and controls
74 lines (73 loc) · 2.34 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
// import j from "./src/assets/v2/images/bgImg.png"
module.exports = {
content: ["./src/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
"primary-main-pink": "#B70569",
"primary-dark-pink": "#6D033F",
"primary-light-pink": "#F0CDE1",
"secondary-main-black": "#1A1A1A",
"primary-lighter-pink": "#F0CDE14D",
"primary-very-light-pink": "#F7E6F04D",
"primary-gray": "#707070",
gainsboro: "#E5E5E5",
"white-smoke": "#F0F0F0",
mortar: "#555",
"dark-blue": "#2A254B",
"community-pink-bg": "#FDC0E3",
"primary-dark-brown": "#260808",
"seal-brown": "#210D15",
"grey-text": "#808080",
"neutral-250": "#202020",
"cotton-candy": "#FDC0E33D",
tutu: "#F9E8F1",
charcoal: "#434343",
"floral-white": "#FFF8EA",
gamboge: "#EEA30A",
veryLightGrey: "#CFCFCF",
"lavendar-blush": "#FFF7FC",
gains: "#D8D8D8",
"Secondary-Grape": "#7D355D",
"Primary-Magenta": "#B70569",
"Secondary-Velvet": "#5C0335",
"SCA-Cloud": "#F4EFEC",
"SCA-Garden": "#BEE366",
"SCA-Zesty": "#DDFF8F",
"SCA-White": "#FEFEFE",
"SCA-Bloom": "#FF8FCE",
"SCA-Blush": "#FFB8E0",
"SCA-Citrine": "#FFF88F",
"SCA-Forest": "#094A32",
"SCA-Apricote": "#FF8A3F",
"SCA-Lavender": "#C78FFF",
},
fontSize: {
15: "15px",
},
backgroundImage: {
"hero-bg-gradient":
"radial-gradient(126.96% 275.84% at 90.24% 16.36%, #B70569 0%, rgba(183, 5, 105, 0.12) 0.01%, rgba(183, 5, 105, 0.08) 19.27%, rgba(183, 5, 105, 0.165605) 30.73%, rgba(183, 5, 105, 0) 81.77%, rgba(183, 5, 105, 0) 100%) ",
bgI: "url('./images/v2/bgImg2.png')",
magentaPattern: "url('./images/v2/magenta-pattern.png')",
olivePattern: "url('./images/v2/olive-pattern.jpg')",
blushPattern: "url('./images/v2/pink-blush-pattern.png')",
bgPinkPattern: "url('./images/v2/bg-blush.png')",
},
screens: {
"2md": "992px",
"2xl": "1950px",
},
fontFamily: {
BebasNeue: ["Bebas Neue", "sans-serif"],
figtree: ["Figtree", "sans-serif"],
},
gap: {
13: "3.125rem",
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
};