forked from NativePHP/nativephp.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (28 loc) · 856 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (28 loc) · 856 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
/** @type {import('tailwindcss').Config} */
const { fontFamily } = require('tailwindcss/defaultTheme')
export default {
darkMode: 'selector',
content: [
'./resources/**/*.{js,blade.php}',
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./app/**/*.php',
],
safelist: ['inline', 'text-red-600', 'mr-2', 'font-bold', 'no-underline'],
theme: {
extend: {
colors: {
mirage: '#141624',
haiti: '#16182C',
cloud: '#2b2e53',
},
fontFamily: {
poppins: "'Poppins', Verdana, sans-serif",
},
},
container: {
center: true,
},
},
plugins: [require('@tailwindcss/typography')],
}