-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
royalBlue: "#15cdfc",
chineseSilver: "#cccccc",
deepBlue: "#0f172a",
},
backgroundColor: {
"royal-blue": "#15cdfc",
"deep-blue": "#0f172a",
},
boxShadow: {
"3xl": "0 0 20px 0 rgb(255, 255, 224)",
},
keyframes: {
rotating: {
"0%, 100%": {
transform: "rotateX(0deg) rotateY(0deg) rotateZ(0deg)",
},
"16%": { transform: "rotateY(-90deg)" },
"33%": { transform: "rotateY(-90deg) rotateZ(90deg)" },
"50%": { transform: "rotateY(-180deg) rotateZ(90deg)" },
"66%": { transform: "rotateY(-270deg) rotateZ(90deg)" },
// "76%": { transform: "rotateY(-180deg) rotateZ(180deg)" },
"83%": { transform: "rotateX(00deg)" },
},
},
animation: {
"spin-cube": "rotating 12s ease-in-out infinite",
},
},
},
tailwindConfig: "./styles/tailwind.config.js",
plugins: [
require("prettier-plugin-tailwindcss"),
require("tailwindcss-transforms")({
"3d": true,
}),
],
};