mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 04:49:40 +02:00
Restructure the context app (formerly basetext) to follow the monorepo pattern with proper workspace configuration. Changes: - Move app files to apps/context/apps/mobile/ - Rename package to @context/mobile - Update bundle ID to com.manacore.context - Create pnpm-workspace.yaml for project workspace - Add dev scripts to root package.json - Update CLAUDE.md with project documentation The app structure is prepared for future web/backend additions. Note: Existing TypeScript errors in the original codebase are preserved. These should be fixed in a follow-up PR. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
889 B
CSS
36 lines
889 B
CSS
@import 'tailwindcss';
|
|
@plugin '@tailwindcss/forms';
|
|
@plugin '@tailwindcss/typography';
|
|
@config '../tailwind.config.js';
|
|
|
|
/* Import theme CSS variables */
|
|
@import '$lib/themes/themes.css';
|
|
|
|
/* Define custom utilities for theme colors */
|
|
@layer utilities {
|
|
.bg-theme-base {
|
|
background-color: var(--theme-background-base);
|
|
}
|
|
.bg-theme-surface {
|
|
background-color: var(--theme-background-surface);
|
|
}
|
|
.bg-theme-elevated {
|
|
background-color: var(--theme-background-elevated);
|
|
}
|
|
.bg-theme-overlay {
|
|
background-color: var(--theme-background-overlay);
|
|
}
|
|
.bg-theme-subtle {
|
|
background-color: var(--theme-background-subtle, var(--theme-background-elevated));
|
|
}
|
|
}
|
|
|
|
/* Apply theme background colors using CSS variables */
|
|
html,
|
|
body {
|
|
background-color: var(--theme-background-base);
|
|
color: var(--theme-text-primary);
|
|
transition:
|
|
background-color 0.3s ease,
|
|
color 0.3s ease;
|
|
}
|