-
Notifications
You must be signed in to change notification settings - Fork 37
/
tailwind.config.js
140 lines (139 loc) · 4.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
const { fontFamily } = require("tailwindcss/defaultTheme")
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: ["app/**/*.{ts,tsx}", "components/**/*.{ts,tsx}"],
theme: {
extend: {
container: {
center: true,
padding: "16px",
},
screens: {
"2xl": "1400px",
"3xl": "1600px",
medium: "978px",
},
translate: {
center: "translate(-50%, -50%)",
},
backgroundImage: {
"main-gradient":
"radial-gradient(114.29% 42.52% at 103.66% 58.94%, #D0F8F1 0%, #D1F3FF 18.23%, #ECF8FF 51.28%, #E1FFFA 80.21%, #D0F2FF 93.23%)",
"cover-gradient":
"linear-gradient(84deg, #FFF -1.95%, #C2E8F5 59.98%, #FFF 100.64%)",
"classic-gradient":
"radial-gradient(325.52% 79.63% at 100% -0.02%, #FFF 0%, rgba(255, 255, 255, 0.00) 100%), radial-gradient(205.45% 61.89% at 2.34% 99.98%, #FFF 0%, rgba(255, 255, 255, 0.00) 100%)",
"project-page-gradient":
"linear-gradient(180deg, #C2E8F5 -17.44%, #FFF 17.72%)",
},
colors: {
corduroy: "#4A5754",
orange: "#E1523A",
orangeDark: "#E3533A",
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
black: "#01030A",
anakiwa: {
default: "#D0F2FF",
50: "#F2FAFD",
100: "hsl(var(--anakiwa))",
100: "#E4F3FA",
200: "#C2E8F5",
300: "#A3DFF0",
400: "#50C3E0",
500: "#29ACCE",
600: "#1A8BAF",
700: "#166F8E",
900: "#184F62",
950: "#103241",
},
tuatara: {
100: "#E5E6E8",
200: "#CDCFD4",
300: "#AAADB6",
400: "#808590",
500: "#656A75",
600: "#565964",
700: "#4A4C54",
950: "#242528",
},
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
},
borderRadius: {
lg: `var(--radius)`,
md: `calc(var(--radius) - 2px)`,
sm: "calc(var(--radius) - 4px)",
},
fontFamily: {
sans: ["var(--font-sans)", ...fontFamily.sans],
display: ["var(--font-display)", "Space Grotesk"],
},
keyframes: {
"accordion-down": {
from: { height: 0 },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 },
},
"overlay-show": {
from: { opacity: 0 },
to: { opacity: 1 },
},
"content-show": {
from: { opacity: 0, transform: "translate(-50%, -48%) scale(0.96)" },
to: { opacity: 1, transform: "translate(-50%, -50%) scale(1)" },
},
"slide-down": {
from: { height: 0 },
to: { height: "var(--radix-accordion-content-height)" },
},
"slide-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: 0 },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
"overlay-show": "overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1)",
"content-show": "contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1)",
"slide-down": "slide-down 0.2s ease-out",
"slide-up": "slide-up 0.2s ease-out",
},
},
},
plugins: [require("tailwindcss-animate")],
}