Initialize Schnappix Photo Booth application with custom UVC camera, silent Wi-Fi IPP printing, local gallery storage, and kiosk screen pinning support

This commit is contained in:
2026-05-25 16:44:15 +02:00
parent 5958319772
commit 872e1ffc86
51 changed files with 8931 additions and 1 deletions
+37
View File
@@ -0,0 +1,37 @@
export const THEME = {
colors: {
background: '#0B0B0E',
surface: '#121217',
surfaceSecondary: '#1C1C24',
primary: '#6C5DD3',
primaryDark: '#564AB1',
accent: '#FF7A9A',
text: '#FFFFFF',
textMuted: '#8F90A6',
border: 'rgba(255, 255, 255, 0.08)',
glassBackground: 'rgba(18, 18, 23, 0.75)',
overlay: 'rgba(0, 0, 0, 0.85)',
success: '#3F8CFF',
error: '#FF6A55',
},
fonts: {
// Falls back to system sans-serif which is clean and modern on Android/iOS
regular: 'System',
bold: 'System',
},
spacing: {
xs: 4,
sm: 8,
md: 16,
lg: 24,
xl: 32,
xxl: 48,
},
borderRadius: {
sm: 6,
md: 12,
lg: 20,
xl: 30,
round: 9999,
},
};