mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
39 lines
765 B
JavaScript
39 lines
765 B
JavaScript
module.exports = {
|
|
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
typography: {
|
|
DEFAULT: {
|
|
css: {
|
|
h1: {
|
|
fontWeight: "semibold"
|
|
},
|
|
h2: {
|
|
fontWeight: "semibold"
|
|
},
|
|
h3: {
|
|
fontWeight: "semibold"
|
|
},
|
|
h4: {
|
|
fontWeight: "semibold"
|
|
},
|
|
h5: {
|
|
fontWeight: "semibold"
|
|
},
|
|
h6: {
|
|
fontWeight: "semibold"
|
|
},
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|