mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 01:21:24 +02:00
20 lines
545 B
Text
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: [],
|
|
};
|