1
0
Fork 0
websitedesign2025/tailwind.config.js

30 lines
727 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: [
'./_drafts/**/*.html',
'./_includes/**/*.html',
'./_layouts/**/*.html',
'./_posts/*.md',
'./*.md',
'./*.html',
],
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: []
}