-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/*.{html,js}"],
theme: {
extend: {
colors: {
white: "#FFFFFF",
beige: "#F5F5DC",
"light-gray": "#D3D3D3",
brown: "#8B4513",
"mint-green": "#98FB98",
"light-blue": "#ADD8E6",
sand: "#F4A460",
},
fontFamily: {
sans: ["Helvetica", "Arial", "sans-serif"],
},
borderWidth: {
DEFAULT: "1px",
0: "0",
2: "2px",
3: "3px",
4: "4px",
6: "6px",
8: "8px",
},
borderRadius: {
DEFAULT: "0.25rem",
none: "0",
sm: "0.125rem",
md: "0.375rem",
lg: "0.5rem",
full: "9999px",
},
},
},
variants: {
extend: {
textColor: ["responsive", "hover", "focus", "group-hover"],
borderColor: ["responsive", "hover", "focus", "group-hover"],
},
},
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/line-clamp"),
],
daisyui: {
themes: ["japandi"],
},
};