forked from mage-os-nl/mage-os.nl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
31 lines (30 loc) · 877 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
"./content/**/*.{php,phtml,md}",
"./templates/**/*.{php,phtml}",
"./resources/svg/*.svg",
],
theme: {
extend: {
fontFamily: {
'sans': ['Montserrat', 'sans-serif'],
'obviously-variable': ['obviously-variable', ...defaultTheme.fontFamily.sans],
'obviously-super': ['obviously-super', ...defaultTheme.fontFamily.sans],
'obviously-condensed': ['obviously-condensed', ...defaultTheme.fontFamily.sans],
'obviously-narrow': ['obviously-narrow', ...defaultTheme.fontFamily.sans],
},
typography: {
DEFAULT: {
css: {
maxWidth: '100ch',
}
}
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}