fix: redesing and add features

This commit is contained in:
2026-02-07 12:06:35 -06:00
parent 4f103c25b5
commit d55aac6605
40 changed files with 1486 additions and 403 deletions

23
src/constants/ui.js Normal file
View File

@@ -0,0 +1,23 @@
export const POKEDEX_COLORS = {
CHASSIS_MAIN: '#dc0a2d',
CHASSIS_DARK: '#89061c',
SCREEN_BG: '#18181b',
SCREEN_BEZEL: '#e4e4e7', // zinc-200
SCREEN_BORDER: '#89061c',
HINT_GREEN: '#22c55e',
HINT_RED: '#ef4444',
TEXT_MUTE: '#a1a1aa' // zinc-400
}
export const DIMENSIONS = {
WIDTH: '1200px',
HEIGHT: '900px',
SCREEN_ASPECT_RATIO: '3/4',
INFO_ASPECT_RATIO: '5/2'
}
export const MAX_SEARCH_LENGTH = 4
export const SIDE_MENU_ITEMS = ['POKEDEX', 'FAVORITES', 'SETTINGS', 'MAP', 'BAG']
export const KEYPAD_KEYS = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]