mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 12:06:42 +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
622 B
CSS
24 lines
622 B
CSS
/**
|
|
* ManaCore Theme - Blue Dark Theme
|
|
* Import this file in your landing page to use the ManaCore color scheme
|
|
*/
|
|
:root {
|
|
/* Primary colors - ManaCore Blue */
|
|
--color-primary: #3b82f6;
|
|
--color-primary-hover: #2563eb;
|
|
--color-primary-glow: rgba(59, 130, 246, 0.3);
|
|
|
|
/* Text colors */
|
|
--color-text-primary: #f9fafb;
|
|
--color-text-secondary: #d1d5db;
|
|
--color-text-muted: #6b7280;
|
|
|
|
/* Background colors */
|
|
--color-background-page: #081320;
|
|
--color-background-card: #1e293b;
|
|
--color-background-card-hover: #334155;
|
|
|
|
/* Border colors */
|
|
--color-border: #334155;
|
|
--color-border-hover: #475569;
|
|
}
|