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

42 lines
874 B
JavaScript
Raw Permalink 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",
"cocoa-brown": {
DEFAULT: "#261C1C",
},
2023-03-27 23:33:24 +02:00
red: {
2023-03-28 22:09:40 +02:00
DEFAULT: "#CB162A",
},
2023-03-27 23:33:24 +02:00
yellow: {
2023-03-28 22:09:40 +02:00
DEFAULT: "#F7BF43",
50: "#FDEECC",
100: "#FCE7B8",
200: "#FADA91",
300: "#F9CC6A",
400: "#F7BF43",
500: "#F5AD0D",
600: "#C28808",
700: "#8C6206",
800: "#563C04",
900: "#201701",
},
},
extend: {
fontFamily: { vinque: "Vinque, serif" },
animation: {
"pulse-once": "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) 2",
}
2021-04-24 01:30:09 +02:00
},
},
variants: {
extend: {},
},
plugins: [],
};