-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (44 loc) · 995 Bytes
/
tailwind.config.js
File metadata and controls
45 lines (44 loc) · 995 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./node_modules/tailwind-datepicker-react/dist/**/*.js",
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/flowbite-react/**/*.js",
],
theme: {
extend: {
fontFamily: {
inter: "Inter"
},
colors: {
'dark1': '#0D0E12',
'dark2': '#0E1117',
'dark3': '#1F232D',
"bd": '#232830',
'bw': '#E5E7EB',
'blue1': '#3670FF',
'blue2': '#DCE3EE',
// 'dark4': '',
},
screens: {
'sm': {'max':'576px'}
},
transitionProperty: {
"height": "height",
"width": "width"
}
},
transitionProperty: {
"height": "height",
"width": "width"
}
},
plugins: [
require("flowbite/plugin")
],
darkMode: 'class',
}