-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.ts
103 lines (102 loc) · 3.37 KB
/
tailwind.config.ts
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
"4xl": { max: "2699px" },
"3xl": { max: "1750px" },
"2xl": { max: "1535px" },
xl: { max: "1200px" },
lg: { max: "1023px" },
md: { max: "767px" },
sm: { max: "639px" },
},
extend: {
colors: {
primary: "#A3F5AA",
secondary: "#333333",
tertiary: "#474747",
success: "#B4F9BA",
"fuse-black": "#1A1A1A",
"carbon-gray": "#5A5A5A",
"oslo-gray": "#8E8E8E",
"ironside-gray": "#606060",
"smokey-gray": "#6F6F6F",
"davy-gray": "#545454",
"gray-cloud": "#B6B6B6",
"gray-goose": "#D0D0D0",
"pale-slate": "#BFBFBF",
"storm-dust": "#636363",
"monsoon": "#868686",
"star-dust": "#9C9C9C",
"cactus": "#566A57",
"dune": "#333333",
"buff": "#F3F5A3",
"light-green": "#92EF90",
},
fontFamily: {
mona: ["var(--font-mona-sans)"],
pixeloid: ["var(--font-pixeloid-sans)"],
},
spacing: {
0.5: "0.125rem",
"1/9": "11.1%",
"8/9": "88.9%",
"3/10": "30%",
"1/10": "10%",
"9/10": "90%",
},
fontSize: {
"5xl": "2.5rem",
},
keyframes: {
blink: {
'0%': { 'border-color': 'rgba(255, 255, 255, 1)' },
'50%': { 'border-color': 'rgba(255, 255, 255, 0.5)' },
'100%': { 'border-color': 'rgba(255, 255, 255, 1)' },
},
slideInFromTop: {
'0%': { 'transform': 'translateY(-50%)', 'opacity': '0' },
'100%': { 'transform': 'translateY(0)', 'opacity': '1' },
},
slideInFromBottom: {
'0%': { 'transform': 'translateY(100%)' },
'100%': { 'transform': 'translateY(0)' },
},
slideInFromBottom50: {
'0%': { 'transform': 'translateY(50%)' },
'100%': { 'transform': 'translateY(0)' },
},
},
animation: {
'blink-underline': 'blink 1s linear infinite',
'slide-in-bg-layer1': '2s ease-out 0s 1 slideInFromBottom50 forwards',
'slide-in-bg-layer2': '2s ease-out 0.4s 1 slideInFromBottom50 forwards',
'slide-in-bg-layer3': '2s ease-out 0.7s 1 slideInFromBottom50 forwards',
'slide-in-bg-layer4': '2.5s ease-out 1.2s 1 slideInFromBottom50 forwards',
'slide-in-bg-layer5': '3s ease-out 0s 1 slideInFromBottom forwards',
'slide-in-bg-stars1': '20s ease-out 0s 1 slideInFromBottom50 forwards',
'slide-in-bg-stars2': '30s ease-out 0s 1 slideInFromBottom50 forwards',
'slide-in-heading': '1s ease-out 1.6s 1 slideInFromTop forwards',
},
backgroundImage: {
'radial-gradient-green': "radial-gradient(50% 50% at 50% 50%, rgba(163, 245, 170, 0.15) 0%, rgba(163, 245, 170, 0.00) 100%)",
'linear-gradient-white-to-green': "linear-gradient(295deg, rgba(180, 249, 186, 0.31) 14.76%, rgba(255, 255, 255, 0.00) 63.47%)",
},
backgroundSize: {
'100%': '100%',
'80%': '80%',
'auto-100%': 'auto 100%',
},
boxShadow: {
'green': "0px 19px 50px 0px rgba(163, 245, 170, 0.15)"
},
},
},
plugins: [],
};
export default config;