forked from github/pelican
29 lines
793 B
JavaScript
29 lines
793 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./templates/*.html"],
|
|
theme: {
|
|
//spacing: {},
|
|
//fontSize: {
|
|
// sm: "0.8rem",
|
|
// base: "1.2rem",
|
|
// xl: "1.25rem",
|
|
// "2xl": "1.563rem",
|
|
// "3xl": "1.953rem",
|
|
// "4xl": "2.441rem",
|
|
// "5xl": "3.052rem",
|
|
// "6xl": "4.052rem",
|
|
// "7xl": "5.052rem",
|
|
//},
|
|
//fontFamily: {
|
|
//sans: ["Erode", "sans-serif"],
|
|
//serif: ["Recia", "serif"],
|
|
//},
|
|
// We don't use extend as we want to limit certain things like colors,
|
|
// fontsize to our own liking
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
//corePlugins: {
|
|
// preflight: false,
|
|
//},
|
|
};
|