Files
skeleton/tailwind.config.cjs
Chris Simmons cde0983491 Improve Typography System (#1374)
* 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

* ...

* ...
2023-05-01 12:44:03 -05:00

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 })
]
};