ein-pfeil-am-rechten-fleck.de/tailwind.config.cjs

20 lines
411 B
JavaScript
Raw Normal View History

2021-04-24 01:30:09 +02:00
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
2021-04-24 01:30:09 +02:00
module.exports = {
content: ["./src/**/*.{html,js,svelte,ts}"],
2021-04-24 01:30:09 +02:00
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
gray: colors.blueGray,
amber: colors.amber,
blue: colors.fuchsia,
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};