mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 20:19:39 +02:00
Move these apps to apps-archived/ as they are not actively developed: - inventory: Inventory management app - presi: Presentation tool - storage: Cloud storage app These can be reactivated by moving back to apps/ when needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
726 B
JavaScript
36 lines
726 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: {
|
|
primary: {
|
|
DEFAULT: '#f97316',
|
|
hover: '#fb923c',
|
|
glow: 'rgba(249, 115, 22, 0.3)',
|
|
},
|
|
background: {
|
|
page: '#0a0a0f',
|
|
card: '#141419',
|
|
'card-hover': '#1c1c24',
|
|
},
|
|
text: {
|
|
primary: '#f9fafb',
|
|
secondary: '#d1d5db',
|
|
muted: '#6b7280',
|
|
},
|
|
border: {
|
|
DEFAULT: '#27272a',
|
|
hover: '#3f3f46',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|