mirror of
https://github.com/studiokaiji/nostr-webhost.git
synced 2025-12-17 23:04:23 +01:00
20 lines
478 B
JavaScript
20 lines
478 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",
|
|
},
|
|
backgroundImage: {
|
|
"rainbow-gradient":
|
|
"linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783,#e60000)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|