colors: Drop unused colors
Use white and transparent colors from android package Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:shape="rectangle">
|
android:shape="rectangle">
|
||||||
<solid android:color="@color/colorTransparent" />
|
<solid android:color="@android:color/transparent" />
|
||||||
<size
|
<size
|
||||||
android:width="@dimen/margin_small"
|
android:width="@dimen/margin_small"
|
||||||
android:height="@dimen/margin_small" />
|
android:height="@dimen/margin_small" />
|
||||||
</shape>
|
</shape>
|
||||||
|
|||||||
@@ -54,5 +54,5 @@
|
|||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:srcCompat="@drawable/ic_add"
|
app:srcCompat="@drawable/ic_add"
|
||||||
app:tint="@color/colorWhite" />
|
app:tint="@android:color/white" />
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|||||||
@@ -27,8 +27,8 @@
|
|||||||
android:id="@+id/navigation_view"
|
android:id="@+id/navigation_view"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@color/colorTransparent"
|
android:background="@android:color/transparent"
|
||||||
android:padding="@dimen/padding_small"
|
android:padding="@dimen/padding_small"
|
||||||
app:elevation="0dp"
|
app:elevation="0dp"
|
||||||
app:menu="@menu/menu_app" />
|
app:menu="@menu/menu_app" />
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|||||||
@@ -27,8 +27,8 @@
|
|||||||
android:id="@+id/navigation_view"
|
android:id="@+id/navigation_view"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@color/colorTransparent"
|
android:background="@android:color/transparent"
|
||||||
android:padding="@dimen/padding_small"
|
android:padding="@dimen/padding_small"
|
||||||
app:elevation="0dp"
|
app:elevation="0dp"
|
||||||
app:menu="@menu/menu_download_single" />
|
app:menu="@menu/menu_download_single" />
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|||||||
@@ -4,6 +4,6 @@
|
|||||||
<style name="AppTheme" parent="Theme.Material3.DynamicColors.Dark.NoActionBar">
|
<style name="AppTheme" parent="Theme.Material3.DynamicColors.Dark.NoActionBar">
|
||||||
<item name="chipStyle">@style/Chip.Filter</item>
|
<item name="chipStyle">@style/Chip.Filter</item>
|
||||||
<item name="preferenceTheme">@style/AppTheme.PreferenceThemeOverlay</item>
|
<item name="preferenceTheme">@style/AppTheme.PreferenceThemeOverlay</item>
|
||||||
<item name="android:statusBarColor">@color/colorTransparent</item>
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -20,17 +20,9 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<!--Common Colors-->
|
<!--Common Colors-->
|
||||||
<color name="colorAccent">#6C63FF</color>
|
<color name="colorAccent">#6C63FF</color>
|
||||||
<color name="colorWhite">#FFFFFF</color>
|
|
||||||
<color name="colorTransparent">#00000000</color>
|
|
||||||
|
|
||||||
<!--Tab Colors-->
|
<!-- AppDetailsFragment | Dialog -->
|
||||||
<color name="colorTabSelected">?colorAccent</color>
|
|
||||||
<color name="txtTabDefault">#44F2F2F2</color>
|
|
||||||
<color name="txtTabSelected">#F2F2F2</color>
|
|
||||||
|
|
||||||
<color name="colorBlue">#4768FD</color>
|
|
||||||
<color name="colorRed">#E4002B</color>
|
<color name="colorRed">#E4002B</color>
|
||||||
<color name="colorRedAlt">#ff4c4c</color>
|
|
||||||
<color name="colorOrange">#FF9933</color>
|
<color name="colorOrange">#FF9933</color>
|
||||||
<color name="colorGreen">#49A942</color>
|
<color name="colorGreen">#49A942</color>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<item name="chipStyle">@style/Chip.Filter</item>
|
<item name="chipStyle">@style/Chip.Filter</item>
|
||||||
<item name="preferenceTheme">@style/AppTheme.PreferenceThemeOverlay</item>
|
<item name="preferenceTheme">@style/AppTheme.PreferenceThemeOverlay</item>
|
||||||
<item name="bottomSheetStyle">@style/AppTheme.BottomSheetStyle</item>
|
<item name="bottomSheetStyle">@style/AppTheme.BottomSheetStyle</item>
|
||||||
<item name="android:statusBarColor">@color/colorTransparent</item>
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="AppTheme.Translucent" parent="Theme.Material3.DynamicColors.DayNight.NoActionBar">
|
<style name="AppTheme.Translucent" parent="Theme.Material3.DynamicColors.DayNight.NoActionBar">
|
||||||
|
|||||||
Reference in New Issue
Block a user