-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (47 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
48
49
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/flowbite-react/lib/esm/**/*.js',
'./node_modules/react-tailwindcss-datepicker/dist/index.esm.js'
],
theme: {
extend: {
colors: {
'sedimark-orange': {
DEFAULT: '#ff6d43'
},
'sedimark-deep-blue': {
DEFAULT: '#1A56DB'
},
'sedimark-dark-deep-blue': {
DEFAULT: '#32567A'
},
'sedimark-light-blue': {
DEFAULT: '#EBF5FF'
},
'sedimark-light-gray': {
DEFAULT: '#E5E7EB'
},
'sedimark-black': {
DEFAULT: '#000000'
},
'sedimark-white': {
DEFAULT: '#ffffff'
},
'sedimark-clear-blue': {
DEFAULT: '#E1EFFE'
},
'sedimark-medium-gray': {
DEFAULT: '#c0c5c6'
},
'sedimark-dark-gray': {
DEFAULT: '#1F2A37'
}
}
}
},
plugins: [
require('flowbite/plugin'),
require('@tailwindcss/forms')
]
}