mirror of
https://github.com/studiokaiji/nostr-webhost.git
synced 2025-12-17 06:44:28 +01:00
16 lines
313 B
JavaScript
16 lines
313 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
fontFamily: {
|
|
body: ["Josefin Sans", "ui-sans-serif", "system-ui"],
|
|
},
|
|
extend: {
|
|
colors: {
|
|
primary: "#8e30eb",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|