/** @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) / )', foreground: 'rgb(var(--foreground) / )', surface: 'rgb(var(--surface) / )', 'surface-elevated': 'rgb(var(--surface-elevated) / )', muted: 'rgb(var(--muted) / )', 'muted-foreground': 'rgb(var(--muted-foreground) / )', primary: { DEFAULT: 'rgb(var(--primary) / )', foreground: 'rgb(var(--primary-foreground) / )', }, secondary: { DEFAULT: 'rgb(var(--secondary) / )', foreground: 'rgb(var(--secondary-foreground) / )', }, accent: { DEFAULT: 'rgb(var(--accent) / )', foreground: 'rgb(var(--accent-foreground) / )', }, destructive: { DEFAULT: 'rgb(var(--destructive) / )', foreground: 'rgb(var(--destructive-foreground) / )', }, border: 'rgb(var(--border) / )', input: 'rgb(var(--input) / )', ring: 'rgb(var(--ring) / )', }, }, }, plugins: [], };