mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-06 12:47:44 +00:00
* Fix DocsAppBar list markup * Implement TW Typography plugin, implement default prose styles * Improved prose docs * Reorg typography csss * Update typography structure to format * Updated typography documentation and provide migration path * Feedback from Bart implemented * Revert to all.css as base stylesheet * ... * ...
19 lines
411 B
JavaScript
19 lines
411 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme');
|
|
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', ...defaultTheme.fontFamily.sans]
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
require('@tailwindcss/typography'),
|
|
...require('./src/lib/tailwind/skeleton.cjs')({ intellisense: false })
|
|
]
|
|
};
|