style(ui): 전체 화면 폰트 크기 증가

- arena: 전투/결과/랭크 화면 폰트 조정
- front: 메인 화면 폰트 조정
- game: 게임플레이 위젯 전반 폰트 조정 (스킬, 장비, 인벤토리 등)
- hall_of_fame: 명예의 전당 폰트 조정
- new_character: 캐릭터 생성 화면 폰트 조정
- settings: 설정 화면 폰트 조정
- 전반적인 가독성 향상
This commit is contained in:
JiWoong Sul
2026-01-15 19:07:34 +09:00
parent e882093d37
commit cbf96c2c0e
43 changed files with 347 additions and 338 deletions

View File

@@ -81,7 +81,7 @@ class GameClearDialog extends StatelessWidget {
l10n.hofVictory.toUpperCase(),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 12,
fontSize: 11,
color: goldColor,
),
),
@@ -99,7 +99,7 @@ class GameClearDialog extends StatelessWidget {
l10n.hofDefeatedGlitchGod,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 7,
fontSize: 11,
color: RetroColors.textPrimaryOf(context),
),
textAlign: TextAlign.center,
@@ -112,7 +112,7 @@ class GameClearDialog extends StatelessWidget {
entry.characterName,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 10,
fontSize: 11,
color: goldColor,
),
),
@@ -122,7 +122,7 @@ class GameClearDialog extends StatelessWidget {
'${GameDataL10n.getKlassName(context, entry.klass)}',
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 11,
color: RetroColors.textSecondaryOf(context),
),
),
@@ -156,7 +156,7 @@ class GameClearDialog extends StatelessWidget {
l10n.hofLegendEnshrined,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 11,
fontStyle: FontStyle.italic,
color: goldColor,
),
@@ -184,7 +184,7 @@ class GameClearDialog extends StatelessWidget {
l10n.hofViewHallOfFame.toUpperCase(),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 11,
color: RetroColors.textSecondaryOf(context),
),
),
@@ -205,7 +205,7 @@ class GameClearDialog extends StatelessWidget {
l10n.hofNewGame.toUpperCase(),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 11,
color: RetroColors.backgroundOf(context),
),
),
@@ -235,7 +235,7 @@ class GameClearDialog extends StatelessWidget {
value,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 8,
fontSize: 11,
color: goldColor,
),
),
@@ -244,7 +244,7 @@ class GameClearDialog extends StatelessWidget {
label,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 11,
color: RetroColors.textMutedOf(context),
),
),

View File

@@ -63,7 +63,7 @@ class HallOfFameEntryCard extends StatelessWidget {
style: TextStyle(
fontFamily: 'PressStart2P',
color: rankColor,
fontSize: 10,
fontSize: 13,
),
),
),
@@ -82,7 +82,7 @@ class HallOfFameEntryCard extends StatelessWidget {
entry.characterName,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 8,
fontSize: 13,
color: RetroColors.goldOf(context),
),
overflow: TextOverflow.ellipsis,
@@ -108,7 +108,7 @@ class HallOfFameEntryCard extends StatelessWidget {
style: TextStyle(
fontFamily: 'PressStart2P',
color: RetroColors.mpOf(context),
fontSize: 6,
fontSize: 11,
),
),
),
@@ -121,7 +121,7 @@ class HallOfFameEntryCard extends StatelessWidget {
'${GameDataL10n.getKlassName(context, entry.klass)}',
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 11,
color: RetroColors.textSecondaryOf(context),
),
),
@@ -168,7 +168,7 @@ class HallOfFameEntryCard extends StatelessWidget {
entry.formattedClearedDate,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 11,
color: RetroColors.textMutedOf(context),
),
),
@@ -227,7 +227,7 @@ class HallOfFameEntryCard extends StatelessWidget {
value,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 11,
color: color,
),
),

View File

@@ -51,7 +51,7 @@ class _HallOfFameScreenState extends State<HallOfFameScreen> {
l10n.uiHallOfFame.toUpperCase(),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 10,
fontSize: 14,
color: RetroColors.goldOf(context),
),
),
@@ -96,7 +96,7 @@ class _HallOfFameScreenState extends State<HallOfFameScreen> {
l10n.hofNoHeroes.toUpperCase(),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 10,
fontSize: 14,
color: RetroColors.textSecondaryOf(context),
),
),
@@ -105,7 +105,7 @@ class _HallOfFameScreenState extends State<HallOfFameScreen> {
l10n.hofDefeatGlitchGod,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 7,
fontSize: 12,
color: RetroColors.textMutedOf(context),
),
textAlign: TextAlign.center,
@@ -149,7 +149,7 @@ class _HallOfFameScreenState extends State<HallOfFameScreen> {
style: TextStyle(
fontFamily: 'PressStart2P',
color: goldColor,
fontSize: 10,
fontSize: 14,
letterSpacing: 1,
),
),
@@ -192,7 +192,10 @@ class _HallOfFameScreenState extends State<HallOfFameScreen> {
Text(
'${entry.characterName} (Lv.${entry.level})\n'
'${l10n.uiConfirmDelete}',
style: const TextStyle(fontFamily: 'PressStart2P', fontSize: 7),
style: const TextStyle(
fontFamily: 'PressStart2P',
fontSize: 12,
),
textAlign: TextAlign.center,
),
const SizedBox(height: 16),
@@ -238,7 +241,7 @@ class _HallOfFameScreenState extends State<HallOfFameScreen> {
SnackBar(
content: Text(
l10n.uiDeleted,
style: const TextStyle(fontFamily: 'PressStart2P', fontSize: 6),
style: const TextStyle(fontFamily: 'PressStart2P', fontSize: 11),
),
backgroundColor: RetroColors.mpOf(context),
duration: const Duration(seconds: 2),
@@ -252,7 +255,7 @@ class _HallOfFameScreenState extends State<HallOfFameScreen> {
SnackBar(
content: Text(
l10n.uiError,
style: const TextStyle(fontFamily: 'PressStart2P', fontSize: 6),
style: const TextStyle(fontFamily: 'PressStart2P', fontSize: 11),
),
backgroundColor: RetroColors.hpOf(context),
duration: const Duration(seconds: 2),

View File

@@ -35,7 +35,7 @@ class HeroDetailDialog extends StatelessWidget {
'Lv.${entry.level}',
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 10,
color: RetroColors.textSecondaryOf(context),
),
),
@@ -119,7 +119,7 @@ class HeroDetailDialog extends StatelessWidget {
title.toUpperCase(),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 7,
fontSize: 10,
color: goldColor,
),
),
@@ -333,7 +333,7 @@ class HeroDetailDialog extends StatelessWidget {
'$label ',
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 10,
color: color,
),
),
@@ -341,7 +341,7 @@ class HeroDetailDialog extends StatelessWidget {
value,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 10,
color: color,
),
),
@@ -376,7 +376,7 @@ class HeroDetailDialog extends StatelessWidget {
value,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 10,
color: goldColor,
),
),
@@ -384,7 +384,7 @@ class HeroDetailDialog extends StatelessWidget {
label,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 4,
fontSize: 10,
color: RetroColors.textMutedOf(context),
),
),
@@ -441,7 +441,7 @@ class HeroDetailDialog extends StatelessWidget {
slotLabel,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 10,
color: mutedColor,
),
),
@@ -462,7 +462,7 @@ class HeroDetailDialog extends StatelessWidget {
_getRarityLabel(item.rarity),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 4,
fontSize: 10,
color: rarityColor,
),
),
@@ -475,7 +475,7 @@ class HeroDetailDialog extends StatelessWidget {
translatedName,
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 10,
color: rarityColor,
),
),
@@ -561,7 +561,7 @@ class HeroDetailDialog extends StatelessWidget {
'$label $value',
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 10,
color: color,
),
),
@@ -651,7 +651,7 @@ class HeroDetailDialog extends StatelessWidget {
l10n.hofNoSkills.toUpperCase(),
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 6,
fontSize: 10,
color: RetroColors.textMutedOf(context),
),
),
@@ -679,7 +679,7 @@ class HeroDetailDialog extends StatelessWidget {
'$translatedName $rank',
style: TextStyle(
fontFamily: 'PressStart2P',
fontSize: 5,
fontSize: 10,
color: skillColor.shade400,
),
),