mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 03:06:41 +02:00
- Create @manacore/shared-landing-ui package with reusable components (FeatureSection, StepsSection, FAQSection, CTASection, Card atoms) - Add complete landing page for manadeck app - Refactor märchenzauber landing to use shared components (remove local CTA, FAQ, Features, HowItWorks sections) - Add German localization for manacore and memoro landing pages - Update workspace configuration and package dependencies 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
630 B
CSS
24 lines
630 B
CSS
/**
|
|
* Memoro Theme - Yellow/Gold Dark Theme
|
|
* Import this file in your landing page to use the Memoro color scheme
|
|
*/
|
|
:root {
|
|
/* Primary colors - Memoro Yellow/Gold */
|
|
--color-primary: #806b00;
|
|
--color-primary-hover: #ae9200;
|
|
--color-primary-glow: rgba(248, 214, 43, 0.3);
|
|
|
|
/* Text colors */
|
|
--color-text-primary: #ffffff;
|
|
--color-text-secondary: #9ca3af;
|
|
--color-text-muted: #6b7280;
|
|
|
|
/* Background colors */
|
|
--color-background-page: #0D0C12;
|
|
--color-background-card: #1a1a1a;
|
|
--color-background-card-hover: #262626;
|
|
|
|
/* Border colors */
|
|
--color-border: #333333;
|
|
--color-border-hover: #404040;
|
|
}
|