-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (35 loc) · 1.01 KB
/
tailwind.config.js
File metadata and controls
38 lines (35 loc) · 1.01 KB
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
/** @type {import('tailwindcss').Config} */
import flowbite from 'flowbite/plugin'
import typography from 'flowbite-typography'
import colors from 'tailwindcss/colors'
export default {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}'
],
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
color: theme('colors.slate.600'),
'h1,h2,h3': {
color: theme('colors.gray.800'),
},
}
}
}),
button:{
primary: 'bg-blue-500 text-white hover:bg-blue-600'
},
colors:{
primary: colors.violet,
transparent: 'transparent',
},
},
},
plugins: [
flowbite,
typography
]
};