mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-06 11:16:04 -06:00
15 lines
239 B
JavaScript
15 lines
239 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
zinc: {
|
|
850: "#1D1D20",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|