snort/packages/app/tailwind.config.js

24 lines
513 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "media",
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
"neutral-999": "#090909",
},
textColor: {
"nostr-blue": "var(--repost)",
"nostr-green": "var(--success)",
"nostr-orange": "var(--zap)",
"nostr-red": "var(--heart)",
"nostr-purple": "var(--highlight)",
},
spacing: {
px: "1px",
},
},
},
plugins: [],
};