mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 00:19:39 +02:00
- Add svelte-i18n configuration with SSR support to all web apps - Create LanguageSelector component for each app with brand colors - Add German and English locale files - Integrate language switcher into login pages via headerControls snippet - Fix Tailwind v4 @source directives for shared package scanning - Update AppSlider styling to match login container design Apps updated: - Memoro (gold #f8d62b) - Märchenzauber (pink #FF6B9D) - ManaDeck (purple #8b5cf6) - ManaCore (indigo #6366f1) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
655 B
JavaScript
31 lines
655 B
JavaScript
import preset from '@manacore/shared-tailwind/preset';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
presets: [preset],
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
'../../../packages/shared-ui/src/**/*.{html,js,svelte,ts}',
|
|
'../../../packages/shared-auth-ui/src/**/*.{html,js,svelte,ts}'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// ManaCore specific primary blue
|
|
primary: {
|
|
50: '#eff6ff',
|
|
100: '#dbeafe',
|
|
200: '#bfdbfe',
|
|
300: '#93c5fd',
|
|
400: '#60a5fa',
|
|
500: '#3b82f6',
|
|
600: '#0055FF',
|
|
700: '#1d4ed8',
|
|
800: '#1e40af',
|
|
900: '#1e3a8a',
|
|
950: '#172554'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|