-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1.13 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
keyframes: {
fadeModal: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
animation: {
fadeModal: "fadeModal 0.2s ease-in-out",
},
colors: {
"cta-dark": "hsl(335, 77%, 37%)",
"cta-light": "hsl(335, 77%, 95%)",
"accent-1": " hsl(217, 82%, 30%)",
"accent-1-light": "hsl(217, 82%, 90%)",
"light-1": "hsl(217,82%, 96%)",
"accent-2": "hsl(202, 100%, 8%)",
"accent-2-light": "hsl(210, 100%, 55%)",
"dark-transparent": "hsla(0, 0%, 0%, 0.5)",
},
fontFamily: {
satisfy: ["Satisfy", "cursive"],
montserrat: ["Montserrat", "sans-serif"],
},
},
skeletonScreen: {
DEFAULT: {
baseColor: "#c7c7c7",
movingColor:
"linear-gradient(to right, transparent 0%, #E8E8E8 50%, transparent 100%)",
duration: "1s",
timing: "cubic-bezier(0.4, 0.0, 0.2, 1)",
},
},
},
plugins: [require("@gradin/tailwindcss-skeleton-screen")],
darkMode: "class",
};