mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 14:46:42 +02:00
- Rename dynamic routes from [slug].astro to [...slug].astro for multi-segment paths - Replace deprecated entry.slug with entry.id across all components and utils - Fix TypeScript implicit any types in TemplateFilters and prompt-templates - Add proper type narrowing for feature.note in pricing page - Remove unused marked import from FAQCard - Delete invalid placeholder content files - Add shared-landing-ui dependency and integrate StepsSection/PricingSection - Update tailwind config with shared-landing-ui content paths - Add global.css with Indigo/Violet dark theme variables 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
944 B
JavaScript
34 lines
944 B
JavaScript
import preset from '@picture/design-tokens/tailwind/preset';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
presets: [preset],
|
|
content: [
|
|
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
|
|
'../../packages/shared-landing-ui/src/**/*.{astro,html,js,jsx,ts,tsx}'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// CSS variable mappings for shared-landing-ui compatibility
|
|
background: {
|
|
page: 'var(--color-background-page, #000000)',
|
|
card: 'var(--color-background-card, #1a1a1a)',
|
|
'card-hover': 'var(--color-background-card-hover, #242424)'
|
|
},
|
|
text: {
|
|
primary: 'var(--color-text-primary, #ffffff)',
|
|
secondary: 'var(--color-text-secondary, #d1d5db)',
|
|
muted: 'var(--color-text-muted, #9ca3af)'
|
|
},
|
|
border: {
|
|
DEFAULT: 'var(--color-border, #383838)',
|
|
hover: 'var(--color-border-hover, #4f4f4f)'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography')
|
|
]
|
|
};
|