-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (61 loc) · 1.14 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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
"logo-blue": "#39529D",
"logo-lblue": "#779EE9",
"light-blue": "#C2D5F9",
"hover-blue": "#b2cbfa",
blue: "#779EE9",
white: "#FFFFFF",
black: "#000000",
"delete-red": "#ef4444",
"edit-green": "#059668",
gray: colors.gray,
slate: colors.slate,
zinc: colors.zinc,
...colors,
},
borderWidth: {
DEFAULT: "1px",
0: "0",
2: "2px",
3: "3px",
4: "4px",
6: "6px",
8: "8px",
},
// margin: {
// '2.75': '0.6875rem',
// },
extend: {
dropShadow: {
custom: "0px 4px 4px #98C0EB",
card: "0px 4px 4px 0px rgba(0, 0, 0, 0.75)",
},
height: {
100: "25rem",
120: "30rem",
110: "27.5rem",
140: "35rem",
},
aspectRatio: {
"9/16": "9/16",
"3/4": "3/4",
"1/1.5": "1/1.5",
"1.5/1": "1.5/1",
},
animation: {
shine: "shine 1s",
},
keyframes: {
shine: {
"100%": { left: "125%" },
},
},
},
},
plugins: [require("@headlessui/tailwindcss")({ prefix: "ui" })],
};