color de fondo cambiado

This commit is contained in:
Kevin Alonso
2026-05-16 17:02:45 +02:00
parent 6c92896dfd
commit fa728f575f
2 changed files with 10 additions and 10 deletions

View File

@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Fondo con gradiente vertical azul --> <!-- Fondo con gradiente horizontal (oscuro en los laterales, claro en el centro) -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item> <item>
<shape android:shape="rectangle"> <shape android:shape="rectangle">
<gradient <gradient
android:angle="270" android:angle="0"
android:startColor="@color/helldivers_dark_bg" android:startColor="@color/helldivers_dark_secondary"
android:centerColor="@color/helldivers_dark_secondary" android:centerColor="@color/helldivers_dark_bg"
android:endColor="@color/helldivers_dark_tertiary" android:endColor="@color/helldivers_dark_secondary"
android:type="linear" /> android:type="linear" />
</shape> </shape>
</item> </item>

View File

@@ -4,9 +4,9 @@
<!-- Colores principales --> <!-- Colores principales -->
<color name="helldivers_black">#000000</color> <color name="helldivers_black">#000000</color>
<color name="helldivers_dark_bg">#006ab2</color> <color name="helldivers_dark_bg">#41639C</color>
<color name="helldivers_dark_secondary">#005a96</color> <color name="helldivers_dark_secondary">#2B4269</color>
<color name="helldivers_dark_tertiary">#004b7d</color> <color name="helldivers_dark_tertiary">#2B4269</color>
<!-- Colores neon/accent --> <!-- Colores neon/accent -->
<color name="helldivers_yellow">#FFFFFF</color> <color name="helldivers_yellow">#FFFFFF</color>
@@ -23,8 +23,8 @@
<color name="helldivers_gray_light">#C7C7CC</color> <color name="helldivers_gray_light">#C7C7CC</color>
<!-- Colores botones --> <!-- Colores botones -->
<color name="btn_bg_dark">#004b7d</color> <color name="btn_bg_dark">#2B4269</color>
<color name="btn_bg_pressed">#003c64</color> <color name="btn_bg_pressed">#1E2E4A</color>
<color name="btn_border_yellow">#FFFFFF</color> <color name="btn_border_yellow">#FFFFFF</color>
<color name="btn_border_blue">#00BFFF</color> <color name="btn_border_blue">#00BFFF</color>