47 lines
2.0 KiB
XML
47 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ 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>
|
|
<!-- Title Styles -->
|
|
<style name="AuroraTextStyle" parent="Widget.AppCompat.TextView">
|
|
<item name="android:autoSizeTextType">uniform</item>
|
|
<item name="android:autoSizeMinTextSize">10sp</item>
|
|
<item name="android:autoSizeMaxTextSize">20sp</item>
|
|
<item name="android:autoSizeStepGranularity">2sp</item>
|
|
</style>
|
|
|
|
<style name="AuroraTextStyle.Rating" parent="@style/AuroraTextStyle">
|
|
<item name="autoSizeMinTextSize">24sp</item>
|
|
<item name="android:autoSizeMaxTextSize">48sp</item>
|
|
<item name="autoSizeStepGranularity">1sp</item>
|
|
<item name="android:textAppearance">@style/TextAppearance.Aurora.Title.Rating</item>
|
|
</style>
|
|
|
|
<!-- Text Appearance -->
|
|
<style name="TextAppearance.Base" parent="TextAppearance.AppCompat.Medium">
|
|
<item name="android:autoSizeTextType">uniform</item>
|
|
<item name="android:autoSizeMinTextSize">12sp</item>
|
|
<item name="android:autoSizeMaxTextSize">20sp</item>
|
|
<item name="android:autoSizeStepGranularity">1sp</item>
|
|
|
|
<item name="android:letterSpacing">0.05</item>
|
|
<item name="android:ellipsize">end</item>
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
</style>
|
|
</resources> |