gradio/website/homepage/tailwind.config.js
2022-02-14 16:50:15 -05:00

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