-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
76 lines (76 loc) · 2.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"login-background": "url('/assets/images/colorful-stingrays.svg')",
"about-background": "url('/assets/images/about/abstract.png')",
card1_bg: "url('/assets/images/about/card1_bg.jpg')",
card2_bg: "url('/assets/images/about/card2_bg.jpg')",
card3_bg: "url('/assets/images/about/card3_bg.jpg')",
"restaurant-login-bg": "url('/assets/images/oooscillate.svg')",
"management-bg": "url('/assets/images/llleaves.svg')",
"food-pattern": "url('/assets/images/food line drawings.png')",
},
colors: {
primary: {
orange: "#ffbb25",
red: "#e63a3a",
grey: "#282723",
green: "#1AC98B",
blue: "#000AFF",
rose: "#FF1E46",
purple: "#7500BC",
},
secondary: {
red: "#960a0a",
orange: "#ED7E00",
green: "#00CD52",
blue: "#0EC5FF",
purple: "#7D5CFF",
},
tertiary: {
yellow: "#ffedc0",
grey: "#232323",
green: "#0A964A",
blue: "#1D3E73",
purple: "#A383FF",
},
accent: {
yellow: "#ffda7f",
"yellow-light": "#fff1bd",
"red-dark": "#df3d3d",
green: "#C0FFE1",
blue: "#E5F3FF",
purple: "#EEDDFF",
},
warning: {
"yellow-light": "#ffdd68",
},
danger: {
red: "#ff324b",
"red-dark": "#f80407",
green: "#385145",
blue: "#326BFF",
},
grey: {
"light-1": "#dbdbdb",
"light-2": "#f6f6f6",
"light-3": "#c6c6c6",
medium: "#747474",
"dark-2": "#5b5b5b",
"dark-3": "#484848",
"dark-4": "#212121",
},
},
animation: {},
keyframes: {},
},
},
plugins: [],
};