-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.29 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: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js",
],
theme: {
extend: {
backgroundImage: {
history: "url('/public/assets/images/cold-brew.webp')",
main: "url('/public/assets/images/bg-main-coffee.webp')",
profile: "url('/public/assets/images/bg-profile.webp')",
cart: "url('/public/assets/images/bg-cart.webp')",
},
boxShadow: {
primary: "0px 6px 20px 0px #00000020;",
},
spacing: {
22: "7rem",
},
colors: {
primary: "#4F5665",
"primary-context": "#7C828A",
secondary: "#ffba33",
"secondary-200": "#f4a200",
tertiary: "#6A4029",
quartenary: "#0b132a",
},
borderWidth: {
1: "1px",
},
},
},
daisyui: {
themes: [
{
jokopi: {
primary: "#6A4029",
secondary: "#ffba33",
accent: "#0b132a",
neutral: "#9f9f9f",
"base-100": "#fff",
info: "#3ABFF8",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
"plain-white": "#FFF",
},
},
],
},
plugins: [require("daisyui")],
};