-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
82 lines (79 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import { transform } from "typescript";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
greyish: "#464545",
darkGrey: "#2f2f2f",
blackTeal: "#1b1b1b",
lightOrange: "#ff7518",
darkOrange: "#f54703",
white: "#fdfbfd",
},
keyframes: {
// spark: {
// "25%,50%, 100%": {
// color: "#dd9551",
// boxShadow: "inset -2px -2px 10px 2px #dd9551",
// },
// "0%, 40%, 75%": {
// color: "#71717a",
// boxShadow: "none",
// },
// },
// sparkOut: {
// "25%,50%, 100%": {
// boxShadow: "0px 4px 1px 0px #dd955160",
// },
// "0%, 40%, 75%": {
// boxShadow: "0px 4px 1px 0px #dd955100",
// },
// },
breezy: {
"0%": {
boxShadow: "2px 7px #820000",
borderBottomWidth: "45px",
},
"30%": {
boxShadow: "4px 12px 2px 2px #820000",
borderBottomWidth: "42px",
},
"100%": {
boxShadow: "3px 10px 1px 1px #820000",
borderBottomWidth: "43.5px",
},
},
breezySM: {
"0%": {
boxShadow: "2px 3px #820000",
borderBottomWidth: "24px",
},
"30%": {
boxShadow: "3px 5px 2px 1px #820000",
borderBottomWidth: "23.5px",
},
"100%": {
boxShadow: "2px 4px 1px 1px #820000",
borderBottomWidth: "23px",
},
},
},
animation: {
spark: "spark 2s step-end forwards",
sparkOut: "sparkOut 2s step-end forwards",
breezy: "breezy 3s infinite alternate",
breezySM: "breezySM 5s infinite alternate",
},
},
fontFamily: {
inter: ["Inter var", "sans-serif"],
spectral: ["Spectral SC", "serif"],
games: ["Games", "sans-serif"],
uniSans: ["UniSans", "sans-serif"],
grandezza: ["Grandezza", "serif"],
},
},
plugins: [],
};