-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (45 loc) · 1.17 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
// mode: "jit",
// theme: {
// extend: {},
// },
theme: {
extend: {
colors: {
"deep-blue": "#010026",
blue: "#2CBCE9",
red: "#DC4492",
yellow: "#FDCC49",
"dark-gray": "#757575",
"opaque-black": "rgba(0,0,0,0.35)",
},
backgroundImage: (theme) => ({
"gradient-rainbow":
"linear-gradient(81.66deg, #00B5EE 7.21%, #FF45A4 45.05%, #FFBA00 78.07%)",
"gradient-rainblue":
"linear-gradient(90deg, #24CBFF 14.53%, #FC59FF 69.36%, #FFBD0C 117.73%)",
}),
fontFamily: {
playfair: ["Playfair Display", "serif"],
opensans: ["Open Sans", "sans-serif"],
},
content: {
brush: "url('./assets/brush.png')",
person1: "url('./assets/person-1.png')",
person2: "url('./assets/person-2.png')",
person3: "url('./assets/person-3.png')",
},
},
screens: {
mobile: "300px",
xs: "480px",
sm: "570px",
md: "768px",
lg: "1024px",
xl: "1366px",
},
},
plugins: [],
};