managarten/packages/shared-landing-ui/src/themes/memoro.css
Till-JS c6c4c5a552 feat(landing): add shared-landing-ui package and manadeck landing page
- 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>
2025-11-25 03:03:41 +01:00

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;
}