Base design done

This commit is contained in:
2025-08-16 20:29:01 +05:00
parent 0072a1ed2a
commit a447d80f36
13 changed files with 558 additions and 99 deletions

View File

@@ -1,19 +1,30 @@
const tintColorLight = '#2f95dc';
const tintColorDark = '#fff';
const primary = '#1C1C1E'; // A deep, dark gray, almost black
const secondary = '#2C2C2E'; // A slightly lighter gray for cards and surfaces
const accent = '#D4AF37'; // A gold/yellow accent for highlights and buttons
const text = '#FFFFFF';
const textSecondary = '#8E8E93'; // A muted gray for secondary text
export default {
light: {
text: '#000',
background: '#fff',
tint: tintColorLight,
tint: accent,
tabIconDefault: '#ccc',
tabIconSelected: tintColorLight,
tabIconSelected: accent,
primary,
secondary,
accent,
textSecondary,
},
dark: {
text: '#fff',
background: '#000',
tint: tintColorDark,
text: text,
background: primary,
tint: accent,
tabIconDefault: '#ccc',
tabIconSelected: tintColorDark,
tabIconSelected: accent,
primary,
secondary,
accent,
textSecondary,
},
};