forked from laravelio/laravel.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (53 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
],
theme: {
container: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1280px',
},
},
extend: {
colors: {
lio: {
100: '#e6f6f3',
200: '#a3ecde',
300: '#6ee2cc',
400: '#43d4b8',
500: '#18bc9c',
600: '#14a88b',
700: '#0e8b73',
800: '#0a6553',
900: '#053c31',
},
gray: {
100: '#f9fafb',
200: '#dfdfdf',
300: '#cbcbcb',
400: '#b2b2b2',
500: '#989898',
600: '#7e7e7e',
700: '#636363',
800: '#484a4a',
900: '#343636',
},
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
maxWidth: {
14: '14rem',
},
},
},
variants: {},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};