-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
50 lines (50 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"gray-20": "#F3EFEB",
"gray-50": "#DBDBDF",
"gray-100": "#C2C2C4",
"gray-500": "#292B34",
"primary-100": "#e0b0a2",
"primary-300": "#d1785e",
"primary-500": "#D33C0F",
"secondary-400": "#85301e",
"secondary-500": "#4E180D",
},
backgroundImage: (theme) => ({
// gray gradient: background: linear-gradient(90deg, rgba(194,194,196,1) 0%, rgba(243,239,235,1) 100%);
"gradient-siennacream":
"linear-gradient(90deg, rgba(211,60,15,1) 0%, rgba(243,239,235,1) 100%)",
"mobile-home": "url('./assets/ArrowUp.png')",
}),
fontFamily: {
bevan: ["Domine"],
},
content: {
activatetextprimary: "url('./assets/ActivateTextPrimary.png')",
activatetextdark: "url('./assets/ActivateTextDark.png')",
logomono:
"url('./assets/activate-gym-high-resolution-logo-black-on-transparent-background.png')",
logocolor:
"url('./assets/activate-gym-high-resolution-logo-color-on-transparent-background.png')",
arrowright: "url('./assets/ArrowRight.png')",
arrowup: "url('./assets/ArrowUp.png')",
arrowdown: "url('./assets/ArrowDown.png')",
boxing: "url('./assets/Boxing.jpg')",
crunches: "url('./assets/Crunches.jpg')",
outsidesquat: "url('./assets/OutsideSquat.jpg')",
personaltraining: "url('./assets/PersonalTraining.jpg')",
strengthtraining: "url('./assets/StrengthTraining.jpg')",
},
},
screens: {
xs: "480px",
sm: "768px",
md: "1060px",
},
},
plugins: [],
};