Task management app with Expo/React Native: - 3 tabs: Inbox, Lists, Settings - Task CRUD with subtasks, priorities, due dates - SQLite database via Drizzle ORM - i18n FR/EN (French default) - Dark mode support (light/dark/system) - Simpl- brand color palette (bleu/crème/terracotta) - NativeWind (Tailwind) styling - EAS Build config for Android (APK + AAB) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{js,jsx,ts,tsx}",
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bleu: {
|
|
DEFAULT: '#4A90A4',
|
|
light: '#6BAEC2',
|
|
dark: '#3A7389',
|
|
},
|
|
creme: {
|
|
DEFAULT: '#FFF8F0',
|
|
dark: '#F5EDE3',
|
|
},
|
|
terracotta: {
|
|
DEFAULT: '#C17767',
|
|
light: '#D49585',
|
|
dark: '#A45F50',
|
|
},
|
|
surface: {
|
|
light: '#FFFFFF',
|
|
dark: '#2A2A2A',
|
|
},
|
|
border: {
|
|
light: '#E5E7EB',
|
|
dark: '#3A3A3A',
|
|
},
|
|
priority: {
|
|
high: '#C17767',
|
|
medium: '#4A90A4',
|
|
low: '#8BA889',
|
|
none: '#9CA3AF',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
inter: ['Inter_400Regular'],
|
|
'inter-medium': ['Inter_500Medium'],
|
|
'inter-semibold': ['Inter_600SemiBold'],
|
|
'inter-bold': ['Inter_700Bold'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|