mirror of
https://github.com/Queer-Lexikon/regenbogenkarte
synced 2024-11-10 06:34:21 +00:00
e98c3de747
This commit includes all data from the current map, excluding: - the actual data - the deployment script to the server We've added a comprehensive README for newcomers, so that they can understand what's going on. Co-authored-by: xenia <xhartmann@posteo.de>
24 lines
518 B
JavaScript
24 lines
518 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],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/forms")],
|
|
};
|