Initial open-source self-hosted Songs2YT edition

This commit is contained in:
Songs2YT
2026-07-17 02:23:59 +02:00
commit 2aa8a84781
134 changed files with 17758 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
surface: {
DEFAULT: "#1a1a2e",
light: "#252540",
dark: "#12121f",
},
accent: {
DEFAULT: "#4a9eff",
hover: "#3a8eef",
},
},
},
},
plugins: [typography],
};
export default config;