-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
mb: "375px",
},
extend: {
colors: {
veryDarkBlue: "hsl(217, 54%, 11%)",
darkBlueNormal: "hsl(216, 50%, 16%)",
darkBlue: "hsl(215, 32%, 27%)",
softBlue: "hsl(215, 51%, 70%)",
Orange: "hsl(25, 97%, 53%)",
White: "hsl(0, 0%, 100%)",
LightGrey: "hsl(217, 12%, 63%)",
MediumGrey: "hsl(216, 12%, 54%)",
cyan: "hsl(178, 100%, 50%)",
},
fontFamily: {
Orb: ["Orbitron", ...defaultTheme.fontFamily.sans],
overpass: ["Overpass", ...defaultTheme.fontFamily.sans],
},
keyframes: {
spin: {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(180deg)" },
},
spin_reverse: {
"0%": { transform: "rotate(180deg)" },
"100%": { transform: "rotate(0deg)" },
},
"fade-in-down": {
"0%": {
opacity: "0",
transform: "translateY(-10px)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
animation: {
"spin-fast": "spin 0.3s linear",
"spin-reverse": "spin_reverse 0.4s linear",
"fade-in-down": "fade-in-down 0.5s ease-out",
},
},
},
plugins: [],
};