-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
32 lines (29 loc) · 970 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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
colors: {
'c-green-100': 'rgb(162, 209, 146)',
'c-green-300': 'rgb(101, 147, 87)',
'c-green-400': 'rgb(99, 145, 85)',
'c-green-500': 'rgb(90, 132, 78)',
'c-green-600': 'rgb(84, 122, 74)',
'c-green-700': 'rgb(80, 112, 72)'
},
fontSize: {
'xxs': '11px'
},
animation: {
'spin-fast': 'spin 300ms linear infinite',
}
},
},
plugins: [require('@tailwindcss/forms')],
};