mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
Render queue progress indicators, download improvements, and producer build optimizations. Independent of keyframe feature.
40 lines
987 B
JavaScript
40 lines
987 B
JavaScript
import { resolve, dirname } from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [resolve(__dirname, "./src/**/*.{ts,tsx}"), resolve(__dirname, "./index.html")],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
studio: {
|
|
bg: "#0a0a0a",
|
|
surface: "#141414",
|
|
border: "#262626",
|
|
text: "#e5e5e5",
|
|
muted: "#737373",
|
|
accent: "#3CE6AC",
|
|
},
|
|
panel: {
|
|
bg: "#0C0C0E",
|
|
input: "#161618",
|
|
surface: "#18181B",
|
|
hover: "#27272A",
|
|
border: "#1E1E1E",
|
|
"border-input": "#27272A",
|
|
"text-1": "#E4E4E7",
|
|
"text-2": "#A1A1AA",
|
|
"text-3": "#71717A",
|
|
"text-4": "#52525B",
|
|
"text-5": "#3F3F46",
|
|
accent: "#3CE6AC",
|
|
danger: "#EF4444",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|