Initial commit — YT Hub
Self-hosted personal YouTube management app. FastAPI + SQLite backend, React + Vite + Tailwind frontend. Dockerfiles and compose included for Portainer deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
24
frontend/tailwind.config.js
Normal file
24
frontend/tailwind.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
|
||||
darkMode: "class",
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ["DM Sans", "system-ui", "sans-serif"],
|
||||
display: ["Space Grotesk", "system-ui", "sans-serif"],
|
||||
},
|
||||
colors: {
|
||||
accent: {
|
||||
DEFAULT: "#f5a623",
|
||||
light: "#fbbf45",
|
||||
dark: "#d4891a",
|
||||
},
|
||||
},
|
||||
aspectRatio: {
|
||||
video: "16 / 9",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
Reference in New Issue
Block a user