-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·43 lines (43 loc) · 914 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
executable file
·43 lines (43 loc) · 914 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
module.exports = {
content: [
'./src/**/*.{html,js,jsx,ts,tsx}',
'./public/*.html',
],
darkMode: 'class',
theme: {
extend: {
scrollbar: {
DEFAULT: {
track: 'bg-gray-200 dark:bg-gray-700',
thumb: 'bg-gray-400 dark:bg-gray-600',
hover: 'bg-gray-500 dark:bg-gray-500',
},
},
keyframes: {
slide: {
'0%': { width: '0%' },
'100%': { width: '100%' },
},
},
animation: {
slide: 'slide 1.5s forwards',
},
fontFamily: {
'aeonik-bold': ['AeonikBold', 'sans-serif'],
},
colors: {
'2F4454': '#2F4454',
primary: '#077f7f',
secondary: '#2f4454',
hover: '#f0f6f9',
}
},
},
plugins: [
require('tailwind-scrollbar'),
require('flowbite/plugin')({
charts: true,
}),
// ... other plugins
],
};