mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-01 19:42:03 +00:00
## Summary - Run `oxfmt .` across the entire codebase to establish formatted baseline - 299 files changed — mechanical formatting only, no logic changes - Double quotes, semicolons, 2-space indent, trailing commas, 100 print width Part 3/4 of [VA-851](https://linear.app/heygen/issue/VA-851/pre-migration-configure-eslint-prettier-and-conventional-commits) ## Test plan - [x] `pnpm format:check` — all 426 files pass - [x] `pnpm -r typecheck` — all packages pass - [x] `pnpm build` — all packages build - [x] All 348 tests pass
25 lines
569 B
JavaScript
25 lines
569 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: "#00E3FF",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|