-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
44 lines (44 loc) · 1.11 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
grey: {
0: "#4a4a4a",
1: "#7f7f7f",
2: "#888888",
3: "#a5a5a5",
4: "#bfbfbf",
5: "#d8d8d8",
55: "#E0E0E0",
6: "#f2f2f2",
7: "#fafafa",
},
},
boxShadow: {
image: "0 1px 12px #000b",
},
width: {
narrow: "40rem",
wide: "68rem",
},
transitionTimingFunction: {
cubic: "cubic-bezier(0.33, 1, 0.68, 1)",
quart: "cubic-bezier(0.25, 1, 0.5, 1)",
quint: "cubic-bezier(0.22, 1, 0.36, 1)",
expo: "cubic-bezier(0.16, 1, 0.3, 1)",
circ: "cubic-bezier(0, 0.55, 0.45, 1)",
smooth: "cubic-bezier(0.19, 1, 0.22, 1)",
},
dropShadow: {
"text-1": "1px 1px 4px rgba(0, 0, 0, 1)",
"2xl": "2px 1px 10px rgba(0, 0, 0, 1)",
},
gap: {
mid: "3rem",
},
},
},
plugins: [require("@tailwindcss/typography")],
};