mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 13:01:02 +00:00
20 lines
445 B
JavaScript
20 lines
445 B
JavaScript
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: [],
|
|
};
|