Merge pull request 'tailwind' (#651) from mmalmi/snort:main into main

This commit is contained in:
Martti Malmi
2023-10-15 18:28:07 +02:00
committed by Gitea
parent 28fa0b4bc8
commit a168465bdb
13 changed files with 1305 additions and 40 deletions

View File

@ -0,0 +1,23 @@
/** @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: [],
};