mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 09:41:24 +02:00
Applied formatting to 1487+ files using pnpm format:write - TypeScript/JavaScript files - Svelte components - Astro pages - JSON configs - Markdown docs 13 files still need manual review (Astro JSX comments)
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./app/**/*.{js,ts,tsx}', './components/**/*.{js,ts,tsx}'],
|
|
darkMode: 'class',
|
|
presets: [require('nativewind/preset')],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: 'rgb(var(--background) / <alpha-value>)',
|
|
foreground: 'rgb(var(--foreground) / <alpha-value>)',
|
|
surface: 'rgb(var(--surface) / <alpha-value>)',
|
|
'surface-elevated': 'rgb(var(--surface-elevated) / <alpha-value>)',
|
|
muted: 'rgb(var(--muted) / <alpha-value>)',
|
|
'muted-foreground': 'rgb(var(--muted-foreground) / <alpha-value>)',
|
|
primary: {
|
|
DEFAULT: 'rgb(var(--primary) / <alpha-value>)',
|
|
foreground: 'rgb(var(--primary-foreground) / <alpha-value>)',
|
|
},
|
|
secondary: {
|
|
DEFAULT: 'rgb(var(--secondary) / <alpha-value>)',
|
|
foreground: 'rgb(var(--secondary-foreground) / <alpha-value>)',
|
|
},
|
|
accent: {
|
|
DEFAULT: 'rgb(var(--accent) / <alpha-value>)',
|
|
foreground: 'rgb(var(--accent-foreground) / <alpha-value>)',
|
|
},
|
|
destructive: {
|
|
DEFAULT: 'rgb(var(--destructive) / <alpha-value>)',
|
|
foreground: 'rgb(var(--destructive-foreground) / <alpha-value>)',
|
|
},
|
|
border: 'rgb(var(--border) / <alpha-value>)',
|
|
input: 'rgb(var(--input) / <alpha-value>)',
|
|
ring: 'rgb(var(--ring) / <alpha-value>)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|