jonnybro.ru/tailwind.config.js
2024-03-07 21:20:36 +05:00

17 lines
249 B
JavaScript

/** @type {import("tailwindcss").Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
colors: {
zinc: {
920: "#131316",
},
neutral: {
920: "#121212",
},
},
},
},
plugins: [],
};