mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +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")]
|
||
|
}
|