17 lines
249 B
JavaScript
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: [],
|
|
};
|