2022-09-04 08:26:20 +00:00
|
|
|
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],
|
|
|
|
},
|
2022-09-08 15:07:48 +00:00
|
|
|
zIndex: {
|
|
|
|
emergencyButton: 1000,
|
2022-10-25 11:36:49 +00:00
|
|
|
headerButton: 1000,
|
2022-09-08 15:07:48 +00:00
|
|
|
menu: 1001,
|
|
|
|
},
|
2022-09-04 08:26:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/forms")],
|
|
|
|
};
|