-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
38 lines (38 loc) · 1.02 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"gray-50": "#EFE6E6",
"gray-100": "#DFCCCC",
"gray-500": "#5E0000",
"primary-100": "#ddece4",
"primary-300": "#c8e0d5",
"primary-500": "#ff9548",
"secondary-500": "#409570a6",
},
backgroundImage: (theme) => ({
"gradient-yellowred":
"linear-gradient(90deg, #FF616A 0%, #FFC837 100%)",
"mobile-home": "url('./assets/HomePage.png')",
}),
fontFamily: {
recoletaalt: ["RecoletaAlt-Regular", "sans-serif"],
voga: ["Voga", "sans-serif"],
},
content: {
evolvetext: "url('./assets/EvolveText.png')",
abstractwaves: "url('./assets/AbstractWaves.png')",
sparkles: "url('./assets/Sparkles.png')",
},
},
screens: {
sl: "320px",
xs: "480px",
sm: "768px",
md: "1060px",
},
},
plugins: [],
};