mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 16:26:42 +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>
44 lines
1.5 KiB
CSS
44 lines
1.5 KiB
CSS
/* Theme CSS Variables */
|
|
/* This file defines CSS variables that are dynamically updated based on the selected theme and mode */
|
|
|
|
:root {
|
|
/* Default theme (Standard Light) */
|
|
--theme-primary-50: rgb(245 243 255);
|
|
--theme-primary-100: rgb(237 233 254);
|
|
--theme-primary-200: rgb(221 214 254);
|
|
--theme-primary-300: rgb(196 181 253);
|
|
--theme-primary-400: rgb(167 139 250);
|
|
--theme-primary-500: rgb(139 92 246);
|
|
--theme-primary-600: rgb(124 58 237);
|
|
--theme-primary-700: rgb(109 40 217);
|
|
--theme-primary-800: rgb(91 33 182);
|
|
--theme-primary-900: rgb(76 29 149);
|
|
--theme-primary-950: rgb(46 16 101);
|
|
|
|
--theme-background-base: rgb(248 250 252);
|
|
--theme-background-surface: rgb(255 255 255);
|
|
--theme-background-elevated: rgb(255 255 255);
|
|
--theme-background-overlay: rgba(0 0 0 / 0.5);
|
|
|
|
--theme-text-primary: rgb(15 23 42);
|
|
--theme-text-secondary: rgb(71 85 105);
|
|
--theme-text-tertiary: rgb(148 163 184);
|
|
--theme-text-inverse: rgb(255 255 255);
|
|
|
|
--theme-border-default: rgb(203 213 225);
|
|
--theme-border-subtle: rgb(226 232 240);
|
|
--theme-border-strong: rgb(148 163 184);
|
|
|
|
--theme-state-success: rgb(34 197 94);
|
|
--theme-state-warning: rgb(251 146 60);
|
|
--theme-state-error: rgb(239 68 68);
|
|
--theme-state-info: rgb(59 130 246);
|
|
|
|
--theme-interactive-hover: rgb(248 250 252);
|
|
--theme-interactive-active: rgb(241 245 249);
|
|
--theme-interactive-focus: rgb(139 92 246);
|
|
--theme-interactive-disabled: rgb(226 232 240);
|
|
}
|
|
|
|
/* CSS variables are now dynamically updated by the theme store */
|
|
/* No need for static theme definitions here anymore */
|