-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 1003 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (38 loc) · 1003 Bytes
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
/** @type {import('tailwindcss').Config} */
export const content = ["./index.html", "./src/**/*.{js,jsx}"];
export const mode = "jit";
export const theme = {
extend: {
colors: {
glass: "#272B2F",
primary: "#FF6700",
secondary: "#FFFFFF",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
animation: {
slide: "slide 5s linear infinite",
},
keyframes: {
slide: {
"0%": { transform: "translateY(100%)", opacity: 0.1 },
"15%": { transform: "translateY(0)", opacity: 1 },
"30%": { transform: "translateY(0)", opacity: 1 },
"45%": { transform: "translateY(-100%)", opacity: 1 },
"100%": { transform: "translateY(-100%)", opacity: 0.1 },
},
},
},
screens: {
xs: "480px",
ss: "620px",
sm: "768px",
md: "1060px",
lg: "1200px",
xl: "1700px",
},
};
export const plugins = [];