-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
58 lines (58 loc) · 1.12 KB
/
tailwind.config.cjs
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
58
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,vue}"],
theme: {
extend: {
fontFamily: {
inter: ["'Inter'", "sans-serif"],
poppins: ["'Poppins'", "sans-serif"],
},
animation: {
"spin-once": "spin 1s ease-in-out 1",
hithere: "hithere 1s ease infinite",
},
keyframes: {
hithere: {
"30%": {
transform: "scale(1.2)",
},
"40%, 60%": {
transform: "rotate(-20deg) scale(1.2)",
},
"50%": {
transform: "rotate(20deg) scale(1.2)",
},
"70%": {
transform: "rotate(0deg) scale(1.2)",
},
"100%": {
transform: "scale(1)",
},
},
},
colors: {
dark: {
DEFAULT: "#181A1B",
50: "#AEB4B7",
100: "#A3AAAD",
200: "#8E969A",
300: "#788287",
400: "#656D71",
500: "#52585C",
600: "#3E4446",
700: "#2B2F31",
800: "#181A1B",
900: "#000000",
},
},
},
nightwind: {
typography: true,
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
],
};