-
Notifications
You must be signed in to change notification settings - Fork 18
/
tailwind.config.js
42 lines (42 loc) · 1.21 KB
/
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
36
37
38
39
40
41
42
/** @type {import('tailwindcss').Config} */
export default {
content: ['./resources/**/*.blade.php', './resources/**/*.js', './resources/**/*.vue'],
important: '.tailwind-rules',
theme: {
extend: {
colors: {
gray: {
200: '#ededed',
300: '#cdcdcd',
500: '#969696',
600: '#777',
800: '#333',
},
sky: {
300: '#66ccf4',
400: '#37bcf1',
},
},
fontFamily: {
sans: ['GTWalsheim', 'sans-serif'],
serif: [
'Source Serif Pro',
'Minion',
'Georgia',
'Times New Roman',
'Times',
'serif',
],
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('tailwind-scrollbar')({ nocompatible: true }),
],
prefix: 'tw-',
corePlugins: {
preflight: false, // TODO Not needed. Re-enable after switching from Bootstrap
},
}