You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
triangles.fun/tailwind.config.js

21 lines
368 B

module.exports = {
purge: {
enabled: !process.env.ROLLUP_WATCH,
mode: "all",
content: ["./public/index.html", "./src/**/*.svelte"],
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
scale: {
175: "1.75",
200: "2",
225: "2.25",
},
},
},
variants: {
extend: {},
},
plugins: [],
}