mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-26 07:54:38 +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
626 B
CSS
24 lines
626 B
CSS
/**
|
|
* ManaDeck Theme - Purple Dark Theme
|
|
* Import this file in your landing page to use the ManaDeck color scheme
|
|
*/
|
|
:root {
|
|
/* Primary colors - ManaDeck Purple */
|
|
--color-primary: #7C3AED;
|
|
--color-primary-hover: #8B5CF6;
|
|
--color-primary-glow: rgba(124, 58, 237, 0.3);
|
|
|
|
/* Text colors */
|
|
--color-text-primary: #f9fafb;
|
|
--color-text-secondary: #d1d5db;
|
|
--color-text-muted: #6b7280;
|
|
|
|
/* Background colors */
|
|
--color-background-page: #0f0a1a;
|
|
--color-background-card: #1a1625;
|
|
--color-background-card-hover: #2d2640;
|
|
|
|
/* Border colors */
|
|
--color-border: #3d3555;
|
|
--color-border-hover: #4d4570;
|
|
}
|