-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (54 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
"off-white": "#E8E8E8",
"dark-gray": "#333333",
black: "#010101",
},
fontFamily: {
"brown-sugar": ["Brown sugar", "cursive"],
satoshi: [
"Satoshi",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica Neue",
"Arial",
"sans-serif",
],
},
boxShadow: {
container: "0 4px 4px 2px #22222210",
},
backgroundImage: {
"metallic-gradient":
"linear-gradient(90deg, #55555550 0%, #FFFFFF50 49%, #55555550 100%)",
"metallic-text": "linear-gradient(90deg, #E8E8E8 0%, #666666 100%)",
"cta-primary": "linear-gradient(90deg, #AEB2FA 0%, #BBB999 100%)",
},
gridTemplateRows: {
form: "repeat(3, auto) 200px",
"form-md": "repeat(2, auto) 200px",
},
keyframes: {
shine: {
"0%": { "background-position": "100%" },
"100%": { "background-position": "-100%" },
},
right: {
"0%": { transform: "translateX(5px)" },
"100%": { transform: "translateX(0px)" },
},
},
animation: {
shine: "shine 5s linear infinite",
right: "right 1s linear infinite",
},
},
},
plugins: [],
}