Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x 1x 1x | // src/constants.ts
// Centralized constants for OrchestKit demo videos
/**
* OrchestKit stats - single source of truth
* Update these values when OrchestKit versions change
*/
export const ORCHESTKIT_STATS = {
skills: 170,
agents: 35,
hooks: 148,
ccVersion: "CC 2.1.16",
} as const;
/**
* Video configuration defaults
*/
export const VIDEO_CONFIG = {
fps: 30,
width: 1920,
height: 1080,
verticalWidth: 1080,
verticalHeight: 1920,
} as const;
/**
* Color palette
*/
export const COLORS = {
primary: "#8b5cf6",
secondary: "#22c55e",
accent: "#06b6d4",
warning: "#f59e0b",
error: "#ef4444",
pink: "#ec4899",
orange: "#f97316",
background: "#0a0a0f",
surface: "#1a1a2e",
} as const;
|