-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
48 lines (45 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
import colors from 'tailwindcss/colors'
import defaultTheme from 'tailwindcss/defaultTheme'
import * as flowbitPlugin from "flowbite/plugin"
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js",
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}'
],
theme: {
extend: {
screens: {
'xs': '475px',
...defaultTheme.screens,
},
colors: {
primary: {
...colors.amber,
DEFAULT: 'rgb(191 115 0)'
},
primary2:{
"50":"#EBF5FF",
"100":"#E1EFFE",
"200":"#C3DDFD",
"300":"#A4CAFE",
"400":"#76A9FA",
"500":"#3F83F8",
"600":"#1C64F2",
"700":"#1A56DB",
"800":"#1E429F",
"900":"#233876",
DEFAULT: '#233876'
}
},
boxShadow:{
sideBar: '0 .5rem 1rem 0 rgba(44, 51, 73, .1)'
}
},
},
plugins: [
flowbitPlugin
]
}