mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 20:59:40 +02:00
- 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>
11 lines
271 B
TypeScript
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',
|
|
};
|
|
};
|