website/tailwind.config.cjs

13 lines
276 B
JavaScript
Raw Normal View History

2022-12-04 14:46:22 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2022-12-04 15:30:42 +01:00
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
dark: "#0D0D0D",
},
},
},
plugins: [],
};