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