nostrdvm/ui/noogle/tailwind.config.js

23 lines
324 B
JavaScript
Raw Normal View History

2024-01-18 19:46:26 +01:00
/** @type {import('tailwindcss').Config} */
export default {
2024-01-31 15:06:58 +01:00
darkMode: "class",
2024-01-19 17:13:38 +01:00
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
2024-01-18 19:46:26 +01:00
theme: {
extend: {
colors:{
'nostr': '#6d52f1',
'nostr2': '#8453f1',
}
},
},
2024-01-19 17:13:38 +01:00
plugins: [require("daisyui")],
2024-01-18 19:46:26 +01:00
}