mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 06:41:23 +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>
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: [],
|
|
};
|