UI enhancements.

This commit is contained in:
vsuryakumar
2023-01-25 11:26:09 +05:30
parent 90de71e076
commit e98a4e62b4
11 changed files with 255 additions and 197 deletions

View File

@@ -8,4 +8,8 @@
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="gray">#808080</color>
<color name="blue_app">#219AD6</color>
<color name="blue_app_dark">#0082C3</color>
<color name="blue_app_light">#80219AD6</color>
</resources>

View File

@@ -48,4 +48,14 @@
<string name="gender_error">Gender can\'t be empty</string>
<string name="age_error_out_of_bound">Age should be valid</string>
<string name="test_results">Test Results</string>
<string name="name_in_textview"><b>Name</b> : %1$s</string>
<string name="gender_in_textview"><b>Gender</b> : %1$s</string>
<string name="age_in_textview"><b>Age</b> : %1$s years</string>
<string name="results_in_textview"><b>Results</b> :</string>
<string name="negative">Negative\ \ </string>
<string name="download_report">Download\nReport</string>
<string name="home">Home</string>
<string name="new_test">New Test</string>
</resources>

View File

@@ -22,6 +22,13 @@
<item name="android:translationY">-0.62sp</item>
</style>
<style name="title3">
<item name="android:textSize">12sp</item>
<item name="android:letterSpacing">-0.03</item>
<item name="android:textColor">#000000</item>
<item name="fontFamily">@font/poppins400</item>
</style>
</resources>

View File

@@ -2,8 +2,9 @@
<!-- Base application theme. -->
<style name="Theme.RefactoredApp" parent="Theme.MaterialComponents.Light.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorPrimary">@color/blue_app</item>
<!-- <item name="colorPrimaryVariant">@color/purple_700</item>-->
<item name="colorPrimaryVariant">@color/blue_app_dark</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>