Backend (Fastify + TS): FluentForms webhook -> NocoDB row + QR + MailerSend email; PIN auth; scan/lookup/redeem with per-code serialization; reusable QR codes with count-based check-in; admin search. App (Expo, one codebase): Android APK + iPhone PWA. Login, camera scanner (native + web barcode-detector split), green/red overlay with sound + haptics, admin lookup/redeem. Session token persisted per device. Ops: multi-stage Dockerfile serving API + PWA same-origin, compose bound to 127.0.0.1; Forgejo Actions runner + tag-triggered signed APK build for Obtainium. Docs in README.md and INSTALL.md. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
export const theme = {
|
|
bg: "#0f1a12",
|
|
card: "#16241a",
|
|
cardBorder: "#24382a",
|
|
text: "#eaf2ec",
|
|
textDim: "#9db3a4",
|
|
primary: "#2e7d32",
|
|
primaryDark: "#1b5e20",
|
|
success: "#1b7f3b",
|
|
successBright: "#25c05a",
|
|
danger: "#8f1d1d",
|
|
dangerBright: "#e04343",
|
|
warn: "#b8860b",
|
|
};
|