-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (45 loc) · 1.1 KB
/
tailwind.config.js
File metadata and controls
46 lines (45 loc) · 1.1 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
screens: {
widescreen: { raw: "(min-aspect-ratio: 3/2)" },
tallscreen: { raw: "(min-aspect-ratio: 1/2)" },
},
keyframes: {
conrotate: {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(360deg)" },
},
},
animation: {
conrotate: "conrotate 5s linear infinite ",
},
textColor: {
skin: {
dark: "var(--dark)",
main: "var(--main-color)",
"dark-light": "var(--dark-light)",
white: "var(--white)",
"white-light": "var(--white-light)",
},
},
backgroundColor: {
skin: {
dark: "var(--dark)",
main: "var(main-color)",
"dark-light": "var(--dark-light)",
white: "var(--white)",
"white-light": "var(--white-light)",
},
},
fontFamily: {
skin: {
cursiv: "var(--cursive-font)",
},
},
},
},
plugins: [],
};