snort_community/tailwind.config.js
2023-12-18 15:04:05 +00:00

14 lines
244 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
nostr: "#5b2cb3",
link: "#AC88FF",
},
},
},
plugins: [],
};