forked from AnushkaBanerjee/Waste-Management-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (46 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
import vctor from ''
import { light } from '@mui/material/styles/createPalette';
const {nextui} = require("@nextui-org/react");
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
roboto: ['Roboto', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
},
colors: {
blue :{
dark: '#059212',
default: '#06D001',
teal: '#4CCD99',
light: "#9BEC00",
darkTeal: "#007F73"
},
yellow: {
dark: '#FFC700',
default: '#EDDC44',
medium: "#FFC700",
light: "#FFF455",
extraLight: "#F3FF90"
},
grey:{
default: '#EDE9E9',
medium: '#A3AED0',
},
white:{
default: '#FFFFFF',}
},
rotate: {
'30': '30deg',
},
}
},
darkMode: "class",
plugins: [nextui()],
}