style(ui): 전체 화면 폰트 크기 증가
- arena: 전투/결과/랭크 화면 폰트 조정 - front: 메인 화면 폰트 조정 - game: 게임플레이 위젯 전반 폰트 조정 (스킬, 장비, 인벤토리 등) - hall_of_fame: 명예의 전당 폰트 조정 - new_character: 캐릭터 생성 화면 폰트 조정 - settings: 설정 화면 폰트 조정 - 전반적인 가독성 향상
This commit is contained in:
@@ -81,19 +81,19 @@ class DeathOverlay extends StatelessWidget {
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text('☠', style: TextStyle(fontSize: 16, color: hpColor)),
|
||||
Text('☠', style: TextStyle(fontSize: 20, color: hpColor)),
|
||||
const SizedBox(width: 8),
|
||||
Text(
|
||||
'GAME OVER',
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 12,
|
||||
fontSize: 15,
|
||||
color: hpColor,
|
||||
letterSpacing: 2,
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
Text('☠', style: TextStyle(fontSize: 16, color: hpColor)),
|
||||
Text('☠', style: TextStyle(fontSize: 20, color: hpColor)),
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -185,7 +185,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
' ||||| ',
|
||||
style: TextStyle(
|
||||
fontFamily: 'JetBrainsMono',
|
||||
fontSize: 12,
|
||||
fontSize: 17,
|
||||
color: hpColor,
|
||||
height: 1.0,
|
||||
),
|
||||
@@ -196,7 +196,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
l10n.deathYouDied.toUpperCase(),
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 14,
|
||||
fontSize: 16,
|
||||
color: hpColor,
|
||||
letterSpacing: 2,
|
||||
shadows: [
|
||||
@@ -227,7 +227,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
traits.name,
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 11,
|
||||
fontSize: 14,
|
||||
color: gold,
|
||||
),
|
||||
),
|
||||
@@ -236,7 +236,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
'Lv.${deathInfo.levelAtDeath} ${GameDataL10n.getKlassName(context, traits.klass)}',
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 8,
|
||||
fontSize: 13,
|
||||
color: textPrimary,
|
||||
),
|
||||
),
|
||||
@@ -259,14 +259,14 @@ class DeathOverlay extends StatelessWidget {
|
||||
child: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Text('⚔', style: TextStyle(fontSize: 14, color: hpColor)),
|
||||
Text('⚔', style: TextStyle(fontSize: 18, color: hpColor)),
|
||||
const SizedBox(width: 8),
|
||||
Flexible(
|
||||
child: Text(
|
||||
causeText,
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 9,
|
||||
fontSize: 14,
|
||||
color: hpColor,
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
@@ -305,7 +305,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
const Text('🔥', style: TextStyle(fontSize: 16)),
|
||||
const Text('🔥', style: TextStyle(fontSize: 20)),
|
||||
const SizedBox(width: 8),
|
||||
Expanded(
|
||||
child: Column(
|
||||
@@ -315,7 +315,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
l10n.deathSacrificedToResurrect.toUpperCase(),
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 8,
|
||||
fontSize: 13,
|
||||
color: muted,
|
||||
),
|
||||
),
|
||||
@@ -324,7 +324,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
deathInfo.lostItemName!,
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 9,
|
||||
fontSize: 14,
|
||||
color: hpColor,
|
||||
),
|
||||
),
|
||||
@@ -370,13 +370,13 @@ class DeathOverlay extends StatelessWidget {
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Text(asciiIcon, style: TextStyle(fontSize: 14, color: valueColor)),
|
||||
Text(asciiIcon, style: TextStyle(fontSize: 18, color: valueColor)),
|
||||
const SizedBox(width: 8),
|
||||
Text(
|
||||
label,
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 8,
|
||||
fontSize: 13,
|
||||
color: muted,
|
||||
),
|
||||
),
|
||||
@@ -386,7 +386,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
value,
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 9,
|
||||
fontSize: 14,
|
||||
color: valueColor,
|
||||
),
|
||||
),
|
||||
@@ -427,7 +427,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
Text(
|
||||
'↺',
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
fontSize: 20,
|
||||
color: expColor,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
@@ -437,7 +437,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
l10n.deathResurrect.toUpperCase(),
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 10,
|
||||
fontSize: 14,
|
||||
color: expColor,
|
||||
letterSpacing: 1,
|
||||
),
|
||||
@@ -486,7 +486,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
Text(
|
||||
isAutoResurrectEnabled ? '◉' : '○',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontSize: 18,
|
||||
color: buttonColor,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
@@ -496,7 +496,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
l10n.deathAutoResurrect.toUpperCase(),
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 8,
|
||||
fontSize: 13,
|
||||
color: buttonColor,
|
||||
letterSpacing: 1,
|
||||
),
|
||||
@@ -507,7 +507,7 @@ class DeathOverlay extends StatelessWidget {
|
||||
'ON',
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 8,
|
||||
fontSize: 13,
|
||||
color: mpColor,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
@@ -531,13 +531,13 @@ class DeathOverlay extends StatelessWidget {
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
const Text('📜', style: TextStyle(fontSize: 12)),
|
||||
const Text('📜', style: TextStyle(fontSize: 17)),
|
||||
const SizedBox(width: 6),
|
||||
Text(
|
||||
l10n.deathCombatLog.toUpperCase(),
|
||||
style: TextStyle(
|
||||
fontFamily: 'PressStart2P',
|
||||
fontSize: 9,
|
||||
fontSize: 14,
|
||||
color: gold,
|
||||
),
|
||||
),
|
||||
@@ -572,14 +572,14 @@ class DeathOverlay extends StatelessWidget {
|
||||
padding: const EdgeInsets.symmetric(vertical: 1),
|
||||
child: Row(
|
||||
children: [
|
||||
Text(asciiIcon, style: TextStyle(fontSize: 10, color: color)),
|
||||
Text(asciiIcon, style: TextStyle(fontSize: 15, color: color)),
|
||||
const SizedBox(width: 4),
|
||||
Expanded(
|
||||
child: Text(
|
||||
message,
|
||||
style: TextStyle(
|
||||
fontFamily: 'JetBrainsMono',
|
||||
fontSize: 8,
|
||||
fontSize: 14,
|
||||
color: color,
|
||||
),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
|
||||
Reference in New Issue
Block a user