Initial v4

This commit is contained in:
Rahul Kumar Patel
2021-02-15 04:52:56 +05:30
commit dfc706b13e
472 changed files with 35142 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
<!--
~ Aurora Store
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
~
~ Aurora Store is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 2 of the License, or
~ (at your option) any later version.
~
~ Aurora Store is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
~
-->
<resources>
<!-- Chips -->
<style name="Widget.Aurora.Chip.Info" parent="@style/Widget.MaterialComponents.Chip.Action">
<item name="iconStartPadding">2dp</item>
<item name="enforceTextAppearance">true</item>
<item name="rippleColor">@color/colorTransparent</item>
<item name="chipEndPadding">@dimen/margin_xxsmall</item>
<item name="chipStartPadding">@dimen/margin_xxsmall</item>
<item name="chipStrokeWidth">1dp</item>
<item name="android:textAppearance">@style/TextAppearance.Aurora.Chip</item>
<item name="chipBackgroundColor">?android:colorBackground</item>
</style>
<style name="Widget.Aurora.Chip.Review" parent="@style/Widget.MaterialComponents.Chip.Filter">
<item name="iconStartPadding">2dp</item>
<item name="enforceTextAppearance">true</item>
<item name="rippleColor">@color/colorTransparent</item>
<item name="chipBackgroundColor">?android:colorBackground</item>
<item name="chipEndPadding">@dimen/margin_xxsmall</item>
<item name="chipStartPadding">@dimen/margin_xxsmall</item>
<item name="chipStrokeWidth">1dp</item>
<item name="chipStrokeColor">?android:attr/strokeColor</item>
<item name="android:textAppearance">@style/TextAppearance.Aurora.Chip</item>
</style>
<style name="Widget.Aurora.Chip" parent="Widget.MaterialComponents.Chip.Choice">
<item name="chipBackgroundColor">@android:color/transparent</item>
<item name="chipStrokeColor">@color/chip_stroke_selector</item>
<item name="android:textColor">@color/chip_txt_selector</item>
<item name="chipSurfaceColor">@color/chip_surface_selector</item>
<item name="chipStrokeWidth">1dp</item>
<item name="chipStartPadding">@dimen/margin_normal</item>
<item name="chipEndPadding">@dimen/margin_normal</item>
<item name="android:textAppearance">@style/TextAppearance.Aurora.Chip</item>
</style>
<style name="ViewStyle.Aurora.Chip" parent="Widget.MaterialComponents.Chip.Choice">
<item name="chipBackgroundColor">@android:color/transparent</item>
<item name="chipStrokeColor">@color/chip_stroke_selector</item>
<item name="android:textColor">@color/chip_txt_selector</item>
<item name="chipSurfaceColor">@color/chip_surface_selector</item>
<item name="chipStrokeWidth">1dp</item>
<item name="chipStartPadding">@dimen/padding_normal</item>
<item name="chipEndPadding">@dimen/padding_normal</item>
<item name="android:textAppearance">@style/TextAppearance.Aurora.Chip</item>
</style>
<style name="Aurora.BottomSheetDialogStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@android:color/transparent</item>
<item name="android:padding">@dimen/padding_small</item>
</style>
<style name="Aurora.BottomSheetDialog" parent="Theme.Design.BottomSheetDialog">
<item name="bottomSheetStyle">@style/Aurora.BottomSheetDialogStyle</item>
</style>
</resources>