Initial commit

This commit is contained in:
ltadeu6 2026-05-14 23:22:06 -03:00
commit 71af5efc4e
33 changed files with 3598 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<!-- Terminal ">" prompt in matrix green -->
<path
android:fillColor="#00FF41"
android:pathData="M30,30 L60,54 L30,78 L36,78 L66,54 L36,30 Z" />
<path
android:fillColor="#00FF41"
android:pathData="M68,72 L82,72 L82,78 L68,78 Z" />
</vector>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#0A0A0A</color>
<color name="matrix_green">#00FF41</color>
</resources>

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Matrix</string>
</resources>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base theme — Compose draws everything; this just sets window chrome -->
<style name="Theme.MatrixAndroid" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="android:windowBackground">#0A0A0A</item>
<item name="android:statusBarColor">#0A0A0A</item>
<item name="android:navigationBarColor">#0A0A0A</item>
<item name="android:windowLightStatusBar">false</item>
</style>
</resources>