-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
84 lines (81 loc) · 2.15 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
77
78
79
80
81
82
83
84
const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"
],
theme: {
fontFamily: {
inter: ["Inter", "sans-serif"],
"edu-sa": ["Edu SA Beginner", "cursive"],
mono: ["Roboto Mono", "monospace"],
},
extend: {
colors: {
white: "#fff",
primary: "#000000",
success:"#883DCF",
transparent: "#ffffff00",
background: '#fff',
darkBackground: "#fadcb7",
secondary: {
red: "#ED2939",
yellow: "#FFAB00",
orange: "#ffa534",
green: "#38CB89",
blue: "#377DFF",
purple: "#926BA8",
cream: "#F6D2C8",
brown: "#3C2D24",
darkgreen: "#296f6c",
darkblue: "#327590"
},
neutral: {
1: "#FEFEFE",
2: "#F3F5F7",
3: "#E8ECEF",
4: "#6C7275",
5: "#343839",
6: "#232627",
7: "#141718",
8: "#F5F5F5",
9: "#C2C2C2",
10: "#F2F5F7",
11: "#858585"
},
'richBlue': {
'50': '#ecffff',
'100': '#ceffff',
'200': '#a4fbfd',
'300': '#5bf5fb',
'400': '#1fe6f1',
'500': '#03c9d7',
'600': '#05a1b5',
'700': '#0c8092',
'800': '#146776',
'900': '#155564',
'950': '#073845',
},
'dashboard': {
'black': '#0F1016',
'grey': '#777980',
'grey-2': '#667085'
},
},
backgroundImage: {
'hero-section': "url('assets/bgimage.jpeg')",
'revenueImg': "url('assets/icons/Ornament_Total_Revenue.svg')",
'orderImg': "url('assets/icons/Ornament_Total_Order.svg')",
'productImg': "url('assets/icons/Ornament_Total_Products.svg')",
'customerImg': "url('assets/icons/Ornament_Total_Customer.svg')"
},
maxWidth: {
maxContent: "1260px",
maxContentTab: "650px"
},
},
},
darkMode: "class",
plugins: [nextui()],
};