6 Commits
v0.4.0 ... main

Author SHA1 Message Date
b1c0f97c65 Merge pull request 'build/apk-subida' (#4) from KevGore/Helldivers-app-movil:build/apk-subida into main
All checks were successful
Build Android APK / build (push) Successful in 3m1s
Reviewed-on: #4
2026-05-16 18:05:19 +00:00
Kevin Alonso
6f4ddfca23 Merge branch 'build/apk-subida' of https://git-dangilcal.duckdns.org/KevGore/Helldivers-app-movil into build/apk-subida 2026-05-16 19:55:54 +02:00
Kevin Alonso
d3f0a2692a volver movido a la izquierda 2026-05-16 19:54:01 +02:00
dafa6c4409 Merge pull request 'color de fondo cambiado' (#3) from KevGore/Helldivers-app-movil:build/apk-subida into main
All checks were successful
Build Android APK / build (push) Successful in 3m3s
Reviewed-on: #3
2026-05-16 15:21:44 +00:00
ced7d4c946 Merge branch 'main' into build/apk-subida 2026-05-16 15:21:34 +00:00
Kevin Alonso
fa728f575f color de fondo cambiado 2026-05-16 17:02:45 +02:00
4 changed files with 18 additions and 18 deletions

View File

@@ -1,13 +1,13 @@
<?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">
<item>
<shape android:shape="rectangle">
<gradient
android:angle="270"
android:startColor="@color/helldivers_dark_bg"
android:centerColor="@color/helldivers_dark_secondary"
android:endColor="@color/helldivers_dark_tertiary"
android:angle="0"
android:startColor="@color/helldivers_dark_secondary"
android:centerColor="@color/helldivers_dark_bg"
android:endColor="@color/helldivers_dark_secondary"
android:type="linear" />
</shape>
</item>

View File

@@ -191,11 +191,11 @@
<!-- Volver -->
<ImageButton
android:id="@+id/btn_volver"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_alignParentStart="true"
android:layout_width="53dp"
android:layout_height="53dp"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/btn_helldivers_secondary"
android:contentDescription="Volver"

View File

@@ -7,11 +7,11 @@
<ImageButton
android:id="@+id/btn_volver"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_alignParentStart="true"
android:layout_width="53dp"
android:layout_height="53dp"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/btn_helldivers_secondary"
android:contentDescription="Volver"

View File

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