-
Notifications
You must be signed in to change notification settings - Fork 57
/
tailwind.config.js
64 lines (63 loc) Β· 1.34 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
58
59
60
61
62
63
64
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./pages/**/*.{js, jsx}", "./components/**/*.{js, jsx}"],
theme: {
screens: {
xs: "475px",
...defaultTheme.screens,
},
colors: {
transparent: "transparent",
current: "currentColor",
white: "#ffffff",
black: "#000000",
purple: "#8b31ff",
red: "#cf0000",
green: "#00ac56",
indigo: {
light: "#9f55ff",
dark: "#7000ff",
},
gray: {
light: {
1: "#f0f0f0",
2: "#dbdbdb",
3: "#aaaaaa",
4: "#8a8a8a",
},
dark: {
1: "#323133",
2: "#242225",
3: "#1e1b20",
4: "#1a171e",
5: "#120e16",
},
},
},
fontFamily: {
sans: ["var(--font-calibre)"],
mono: ["var(--font-jetbrains-mono)"],
},
extend: {
animation: {
meteor: "meteor 5s linear infinite",
},
keyframes: {
meteor: {
"0%": {
transform: "rotate(215deg) translateX(0)",
opacity: 1,
},
"70%": {
opacity: 1,
},
"100%": {
transform: "rotate(215deg) translateX(-500px)",
opacity: 0,
},
},
},
},
},
plugins: [],
};