managarten/apps-archived/moodlit/apps/mobile/utils/theme.ts
Till-JS ace7fa8f7f chore: archive finance, mail, moodlit apps and rename voxel-lava
- Move finance, mail, moodlit to apps-archived for later development
- Rename games/voxel-lava to games/voxelava

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-05 13:13:15 +01:00

11 lines
271 B
TypeScript

// App ist permanent im Dark Mode mit komplett schwarzem Theme
export const getThemeColors = () => {
return {
bg: 'bg-black',
cardBg: 'bg-card-dark',
text: 'text-white',
textSecondary: 'text-gray-400',
border: 'border-gray-800',
input: 'bg-gray-800',
};
};