Initial commit: InkFlow — EPUB vers livre audio local (MLX/Kokoro)

This commit is contained in:
2026-06-21 00:10:11 +02:00
commit d3bb91394b
71 changed files with 8138 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
ink: {
bg: "#14110f",
panel: "#1d1916",
edge: "#2c2622",
muted: "#9a8c7d",
text: "#ede4d8",
accent: "#d9a441",
accent2: "#b9763f",
},
},
fontFamily: {
serif: ["Georgia", "Cambria", "serif"],
},
},
},
plugins: [],
};