mirror of
https://github.com/xHyroM/website.git
synced 2024-11-13 02:58:07 +01:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
dark: "#0D0D0D",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|