-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (35 loc) · 923 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
'node_modules/flowbite-vue/**/*.{js,jsx,ts,tsx}',
'node_modules/flowbite/**/*.{js,jsx,ts,tsx}'
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif']
},
container: {
center: true,
padding: '1rem',
screens: {
'2xl': '1140px'
}
},
colors: {
primary: '#616bc4',
primaryDark: '#41488A',
sliver: '#718096',
darkText: '#c5c5c5',
}
},
},
plugins: [
require('flowbite/plugin'),
require('@tailwindcss/forms'),
],
}