INNER CODE UNIT · TypeScript
ipadW
ParthJadhav/app-store-screenshots · skills/app-store-screenshots/template/src/lib/constants.ts:79
export function ipadW(cW: number, cH: number, clamp = 0.75) {
return Math.min(clamp, 0.72 * (cH / cW) * IPAD_RATIO);
}
// ---------- Themes ----------
export const DEFAULT_THEME_ID: ThemeId = "clean-light";
export const THEMES: Record<string, Theme> = {
"clean-light": {
id: "clean-light",
name: "Clean Light",
bg: "#F6F1EA",
bgAlt: "#171717",
fg: "#171717",
fgAlt: "#F6F1EA",
accent: "#5B7CFA",
muted: "#6B7280",
},