kios-webapp/astro/tailwind.config.cjs
Max Schmidt d30d3e61b9 lool
Signed-off-by: Max Schmidt <max.schmidt@outlook.de>
2023-05-17 11:56:36 +02:00

21 lines
404 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
fontFamily: {
plex: ["Plex", "sans-serif"],
},
extend: {
colors: {
gray: {
DEFAULT: "#111111",
light: "#888888",
dark: "#222222",
},
},
},
},
safelist: [],
plugins: [],
};