This commit is contained in:
Julian Tölle 2021-03-21 00:15:22 +01:00
parent 42ec5539dc
commit b536ee4124
23 changed files with 8696 additions and 223 deletions

20
tailwind.config.js Normal file
View file

@ -0,0 +1,20 @@
const colors = require("tailwindcss/colors");
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
gray: colors.blueGray,
amber: colors.amber,
blue: colors.fuchsia,
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};