mirror of
https://github.com/Queer-Lexikon/regenbogenkarte
synced 2024-11-10 14:44:13 +00:00
28 lines
580 B
JavaScript
28 lines
580 B
JavaScript
const colors = require("tailwindcss/colors");
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["**/*.{ts,svg,html}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ql: {
|
|
pink: "#faedfa",
|
|
purple: "#5f4e7a",
|
|
darkRed: "#620043",
|
|
},
|
|
accent: colors.pink,
|
|
neutral: colors.neutral,
|
|
},
|
|
fontFamily: {
|
|
sans: ["Ubuntu", ...defaultTheme.fontFamily.sans],
|
|
},
|
|
zIndex: {
|
|
emergencyButton: 1000,
|
|
menu: 1001,
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/forms")],
|
|
};
|