-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
55 lines (51 loc) · 1.67 KB
/
Copy pathtailwind.config.cjs
File metadata and controls
55 lines (51 loc) · 1.67 KB
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
55
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.ts',
'./resources/js/**/*.tsx',
],
theme: {
extend: {
fontFamily: {
sans: ['Open Sans', ...defaultTheme.fontFamily.sans],
display: ['Montserrat', ...defaultTheme.fontFamily.sans]
},
fontSize: {
'2.5xl': '1.75rem',
'4.5xl': '2.5rem'
},
maxWidth: {
'body': '1072px',
},
minHeight: {
'16': '4rem',
},
typography: ({ theme }) => ({
DEFAULT: {
css: {
body: {
lineHeight: '1.5rem',
},
a: {
color: theme('colors.teal[600]'),
textDecorationLine: 'none',
'&:hover': {
color: theme('colors.amber[500]'),
},
},
'--tw-prose-body': theme('colors.neutral[900]'),
'--tw-prose-bullets': theme('colors.neutral[800]')
}
}
})
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
],
};