gradio/frontend/tailwind.config.js

37 lines
753 B
JavaScript
Raw Normal View History

2021-05-13 00:29:18 +08:00
module.exports = {
2021-08-07 05:04:28 +08:00
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
2021-05-13 00:29:18 +08:00
darkMode: false, // or 'media' or 'class'
theme: {
2021-05-30 08:09:01 +08:00
extend: {
typography: {
DEFAULT: {
css: {
h1: {
2021-08-07 08:20:16 +08:00
fontWeight: "semibold"
2021-05-30 08:09:01 +08:00
},
h2: {
2021-08-07 08:20:16 +08:00
fontWeight: "semibold"
2021-05-30 08:09:01 +08:00
},
h3: {
2021-08-07 08:20:16 +08:00
fontWeight: "semibold"
2021-05-30 08:09:01 +08:00
},
h4: {
2021-08-07 08:20:16 +08:00
fontWeight: "semibold"
2021-05-30 08:09:01 +08:00
},
h5: {
2021-08-07 08:20:16 +08:00
fontWeight: "semibold"
2021-05-30 08:09:01 +08:00
},
h6: {
2021-08-07 08:20:16 +08:00
fontWeight: "semibold"
}
}
}
}
}
2021-05-13 00:29:18 +08:00
},
variants: {
2021-08-07 08:20:16 +08:00
extend: {}
2021-05-13 00:29:18 +08:00
},
2021-08-07 08:20:16 +08:00
plugins: [require("@tailwindcss/typography")]
2021-08-07 05:04:28 +08:00
};