mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
29 lines
579 B
JavaScript
29 lines
579 B
JavaScript
module.exports = {
|
|
purge: [],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
typography: {
|
|
DEFAULT: {
|
|
css: {
|
|
code: {
|
|
fontWeight: 'normal',
|
|
backgroundColor: 'whitesmoke',
|
|
'&:before': {
|
|
content: "none !important",
|
|
},
|
|
'&:after': {
|
|
content: "none !important",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")]
|
|
}
|