- apps/captain-mobile: Mobile API service - apps/flow-ui: Flow UI application - apps/mindlink: Mindlink application - apps/storage: Storage API and workers - apps/tzzr-cli: TZZR CLI tool - deck-frontend/backups: Historical TypeScript versions - hst-frontend: Standalone HST frontend Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
626 B
JavaScript
26 lines
626 B
JavaScript
// === CONFIGURATION ===
|
|
|
|
const CATS = {
|
|
hst: {name: "Hashtags", color: "#7c8aff"},
|
|
spe: {name: "Specs", color: "#FF9800"},
|
|
vue: {name: "Values", color: "#00BCD4"},
|
|
vsn: {name: "Visions", color: "#E91E63"},
|
|
msn: {name: "Missions", color: "#9C27B0"},
|
|
flg: {name: "Flags", color: "#4CAF50"}
|
|
};
|
|
|
|
const EDGE_COLORS = {
|
|
relation: "#8BC34A",
|
|
specialization: "#9C27B0",
|
|
mirror: "#607D8B",
|
|
dependency: "#2196F3",
|
|
sequence: "#4CAF50",
|
|
composition: "#FF9800",
|
|
hierarchy: "#E91E63",
|
|
library: "#00BCD4",
|
|
contextual: "#FFC107",
|
|
association: "#795548"
|
|
};
|
|
|
|
const API = "/api";
|