managarten/apps/picture/apps/mobile/tailwind.config.js.backup
Wuesteon ff80aeec1f refactor: restructure
monorepo with apps/ and services/
  directories
2025-11-26 03:03:24 +01:00

20 lines
545 B
Text

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,ts,tsx}', './components/**/*.{js,ts,tsx}'],
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
dark: {
bg: '#000000', // Main background - pure black
surface: '#242424', // Cards, containers
elevated: '#2a2a2a', // Elevated elements
border: '#383838', // Borders
input: '#1f1f1f', // Input fields
}
}
},
},
plugins: [],
};