1
0
Fork 0
websitedesign2025/tailwind.config.js

31 lines
785 B
JavaScript
Raw Normal View History

2024-10-16 16:05:06 -05:00
module.exports = {
mode: 'jit',
2024-10-16 16:05:06 -05:00
content: [
2025-01-07 13:57:35 -06:00
'./_drafts/**/*.{md,html}',
2024-10-16 16:05:06 -05:00
'./_includes/**/*.html',
'./_layouts/**/*.html',
2025-01-07 13:57:35 -06:00
'./_posts/*.{md,html}',
'./*.{md,html}',
'./blog/index.html',
'./about/index.html',
2024-10-16 16:05:06 -05:00
],
theme: {
extend: {
fontFamily: {
'baskerville': ['"Libre Baskerville"'],
'bevan': ['Bevan'],
'mplus2': ['"M PLUS 2"'],
},
colors: {
'livingstone': {
100: '#8d9bac',
200: '#7f9cbb',
300: '#6e9ecb',
400: '#579fdb',
500: '#2da1eb',
},
},
2024-10-16 16:05:06 -05:00
},
},
plugins: []
}