mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 03:21:08 +02:00
- Move finance, mail, moodlit to apps-archived for later development - Rename games/voxel-lava to games/voxelava 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <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: {
|
|
// ManaMail Indigo Theme
|
|
primary: {
|
|
DEFAULT: '#6366f1',
|
|
hover: '#818cf8',
|
|
glow: 'rgba(99, 102, 241, 0.3)',
|
|
},
|
|
background: {
|
|
page: '#0c1425',
|
|
card: '#131c2e',
|
|
'card-hover': '#1e2942',
|
|
},
|
|
text: {
|
|
primary: '#f9fafb',
|
|
secondary: '#d1d5db',
|
|
muted: '#6b7280',
|
|
},
|
|
border: {
|
|
DEFAULT: '#1e2942',
|
|
hover: '#2d3a56',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
};
|