zap.stream/tailwind.config.js

14 lines
250 B
JavaScript
Raw Normal View History

2023-12-04 12:18:16 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
"gray-1": "#171717",
2023-12-04 12:56:20 +00:00
"gray-2": "#222",
},
},
2023-12-04 12:18:16 +00:00
},
plugins: [],
};