mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 06:26:41 +02:00
Delete apps/memoro/apps/backend/ (NestJS) and apps/memoro/apps/audio-backend/ (NestJS) — all functionality has been ported to the new Hono/Bun servers (apps/server/ and apps/audio-server/). Also clean up root and memoro package.json scripts to remove references to the old @memoro/backend and @memoro/audio-backend packages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
37 lines
783 B
JavaScript
37 lines
783 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
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: {
|
|
// ManaDeck Purple Theme
|
|
primary: {
|
|
DEFAULT: '#7C3AED',
|
|
hover: '#8B5CF6',
|
|
glow: 'rgba(124, 58, 237, 0.3)',
|
|
},
|
|
background: {
|
|
page: '#0f0a1a',
|
|
card: '#1a1625',
|
|
'card-hover': '#2d2640',
|
|
},
|
|
text: {
|
|
primary: '#f9fafb',
|
|
secondary: '#d1d5db',
|
|
muted: '#6b7280',
|
|
},
|
|
border: {
|
|
DEFAULT: '#3d3555',
|
|
hover: '#4d4570',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
};
|