-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"soft-orange": "hsl(35, 77%, 62%)",
"soft-red": " hsl(5, 85%, 63%)",
"off-white": "hsl(36, 100%, 99%)",
"grayish-blue": "hsl(233, 8%, 79%)",
"dark-grayish-blue": "hsl(236, 13%, 42%)",
"very-dark-blue": "hsl(240, 100%, 5%)",
},
screens: {
widescreen: { raw: "(min-aspect-ratio: 3/2)" },
tallscreen: { raw: "(min-aspect-ratio: 1/2)" },
"c-md": "426px",
},
backgroundImage: {
mobile: "url('../public/images/image-web-3-mobile.jpg')",
desktop: "url('../public/images/image-web-3-desktop.jpg')",
},
fontFamily: {
inter: ["Inter", "sans-serif"],
},
keyframes: {
"open-menu": {
"0%": { transform: "scaleY(0)" },
"80%": { transform: "scaleY(1.2)" },
"100%": { transform: "scaleY(1)" },
},
},
animation: {
"open-menu": "open-menu 0.5s ease-in-out forwards",
},
},
plugins: [],
},
};