mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
21bd324db5
* dark theme * theme changes Co-authored-by: Ali Abid <you@example.comgit> Co-authored-by: Ali Abid <ali.abid@gradio.app>
38 lines
770 B
JavaScript
38 lines
770 B
JavaScript
module.exports = {
|
|
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
|
|
mode: "jit",
|
|
darkMode: "class", // 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")]
|
|
};
|