Styles and colors.xml side done. Putting a string in there as well :D
This commit is contained in:
parent
bb9755f4af
commit
2fbf172729
|
@ -18,6 +18,9 @@
|
|||
<style name="Theme.Mastodon.AutoLightDark.Yellow" parent="Theme.Mastodon.Dark.Yellow"/>
|
||||
<style name="Theme.Mastodon.AutoLightDark.TrueBlack.Yellow" parent="Theme.Mastodon.Dark.TrueBlack.Yellow"/>
|
||||
|
||||
<style name="Theme.Mastodon.AutoLightDark.Red" parent="Theme.Mastodon.Dark.Red"/>
|
||||
<style name="Theme.Mastodon.AutoLightDark.TrueBlack.Red" parent="Theme.Mastodon.Dark.TrueBlack.Red"/>
|
||||
|
||||
<style name="Theme.Mastodon.AutoLightDark.Material3" parent="Theme.Mastodon.Dark.Material3"/>
|
||||
<style name="Theme.Mastodon.AutoLightDark.TrueBlack.Material3" parent="Theme.Mastodon.Dark.TrueBlack.Material3"/>
|
||||
</resources>
|
|
@ -5,4 +5,5 @@
|
|||
<color name="blue_navigation_bar_bg">@color/blue_gray_50</color>
|
||||
<color name="orange_navigation_bar_bg">@color/orange_gray_50</color>
|
||||
<color name="yellow_navigation_bar_bg">@color/yellow_gray_50</color>
|
||||
<color name="red_navigation_bar_bg">@color/red_gray_50</color>
|
||||
</resources>
|
|
@ -91,6 +91,18 @@
|
|||
<color name="yellow_primary_800">#3c2f00</color>
|
||||
<color name="yellow_primary_900">#231b00</color>
|
||||
|
||||
<color name="red_primary_25">#FFFBFA</color>
|
||||
<color name="red_primary_50">#FEF3F2</color>
|
||||
<color name="red_primary_100">#FEE4E2</color>
|
||||
<color name="red_primary_200">#FECDCA</color>
|
||||
<color name="red_primary_300">#FDA29B</color>
|
||||
<color name="red_primary_400">#F97066</color>
|
||||
<color name="red_primary_500">#F04438</color>
|
||||
<color name="red_primary_600">#D92D20</color>
|
||||
<color name="red_primary_700">#B42318</color>
|
||||
<color name="red_primary_800">#912018</color>
|
||||
<color name="red_primary_900">#7A271A</color>
|
||||
|
||||
<color name="custom_gray_900">#000000</color>
|
||||
<color name="custom_gray_800t">#cc171717</color>
|
||||
<color name="custom_gray_800">#171717</color>
|
||||
|
@ -147,6 +159,14 @@
|
|||
<color name="yellow_gray_50">#fff0ca</color>
|
||||
<color name="yellow_gray_25">#f7f8fa</color>
|
||||
|
||||
<color name="red_gray_400">#d69f84</color>
|
||||
<color name="red_gray_300">#f4ba9e</color>
|
||||
<color name="red_gray_200">#ffdbcb</color>
|
||||
<color name="red_gray_100">#ffedea</color>
|
||||
<color name="red_gray_50t">#ffede6ca</color>
|
||||
<color name="red_gray_50">#ffede6</color>
|
||||
<color name="red_gray_25">#f7f8fa</color>
|
||||
|
||||
<color name="error_25">#FFFBFA</color>
|
||||
<color name="error_50">#FEF3F2</color>
|
||||
<color name="error_100">#FEE4E2</color>
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
<string name="sk_color_theme_blue">Blue</string>
|
||||
<string name="sk_color_theme_brown">Orange</string>
|
||||
<string name="sk_color_theme_yellow">Yellow</string>
|
||||
<string name="sk_color_theme_red">Red</string>
|
||||
<string name="sk_color_theme_material3">Material You</string>
|
||||
<string name="sk_not_supported">Not supported on your device</string>
|
||||
<string name="sk_poll_allow_multiple">Allow multiple choices</string>
|
||||
|
|
|
@ -690,6 +690,97 @@
|
|||
<item name="android:textColorSecondary">@color/custom_gray_800</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Mastodon.Light.Red" parent="Theme.Mastodon.Light.CustomBase">
|
||||
<item name="android:colorAccent">@color/red_primary_700</item>
|
||||
<item name="android:colorBackground">@color/red_gray_100</item>
|
||||
<item name="colorButtonText">@color/red_gray_50</item>
|
||||
<item name="colorBackgroundLight">@color/red_gray_50</item>
|
||||
<item name="colorBackgroundLightest">@color/red_gray_25</item>
|
||||
<item name="android:statusBarColor">@color/red_gray_50</item>
|
||||
<item name="android:navigationBarColor">@color/red_navigation_bar_bg</item>
|
||||
<item name="android:actionBarTheme">@style/Theme.Mastodon.Toolbar.Red</item>
|
||||
<item name="android:alertDialogTheme">@style/Theme.Mastodon.Dialog.Alert.Red</item>
|
||||
<item name="colorPollMostVoted">@color/red_primary_500</item>
|
||||
<item name="colorPollVoted">@color/red_gray_300</item>
|
||||
<item name="colorAccentLight">@color/red_primary_600</item>
|
||||
<item name="colorSearchField">@color/red_gray_200</item>
|
||||
<item name="colorTabInactive">@color/red_gray_400</item>
|
||||
<item name="colorAccentLightest">@color/red_primary_100</item>
|
||||
<item name="colorSecondary">@color/red_gray_50</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Mastodon.Dark.Red" parent="Theme.Mastodon.Dark.CustomBase">
|
||||
<item name="android:colorAccent">@color/red_primary_400</item>
|
||||
<item name="android:colorPrimary">@color/red_gray_50</item>
|
||||
<item name="android:textColorPrimary">@color/red_gray_50</item>
|
||||
<item name="android:textColorSecondary">@color/red_gray_400</item>
|
||||
<item name="android:alertDialogTheme">@style/Theme.Mastodon.Dialog.Alert.Dark.Red</item>
|
||||
<item name="colorPollMostVoted">@color/red_primary_700</item>
|
||||
<item name="colorAccentLight">@color/red_primary_600</item>
|
||||
<item name="colorAccentLightest">@color/red_primary_800</item>
|
||||
<item name="colorTabInactive">@color/red_gray_400</item>
|
||||
<item name="colorSearchHint">@color/red_gray_300</item>
|
||||
<item name="colorSecondary">@color/red_gray_50</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Mastodon.Dark.TrueBlack.Red" parent="Theme.Mastodon.Dark.Red">
|
||||
<item name="android:colorAccent">@color/red_primary_400</item>
|
||||
<item name="colorPollMostVoted">@color/red_primary_700</item>
|
||||
<item name="colorAccentLight">@color/red_primary_600</item>
|
||||
<item name="colorAccentLightest">@color/red_primary_800</item>
|
||||
<item name="colorSecondary">@color/red_gray_50</item>
|
||||
|
||||
<item name="colorPollVoted">@color/custom_gray_800</item>
|
||||
<item name="colorSearchField">@color/custom_gray_900</item>
|
||||
<item name="colorBackgroundPopup">@color/custom_gray_900</item>
|
||||
<item name="android:navigationBarColor">@color/black</item>
|
||||
<item name="android:colorBackground">@color/black</item>
|
||||
<item name="android:statusBarColor">@color/black</item>
|
||||
<item name="android:actionBarTheme">@style/Theme.Mastodon.Toolbar.Dark.TrueBlack</item>
|
||||
<item name="colorBackgroundLight">@color/black</item>
|
||||
<item name="colorWindowBackground">@color/black</item>
|
||||
<item name="colorButtonText">@color/black</item>
|
||||
<item name="colorBackgroundLightest">@color/black</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Mastodon.AutoLightDark.Red" parent="Theme.Mastodon.Light.Red"/>
|
||||
<style name="Theme.Mastodon.AutoLightDark.TrueBlack.Red" parent="Theme.Mastodon.Light.Red"/>
|
||||
|
||||
<style name="Theme.Mastodon.Dialog.Alert.Dark.Red" parent="android:Theme.Material.Dialog.Alert">
|
||||
<item name="android:windowTitleStyle">@style/alert_title</item>
|
||||
<item name="android:dialogPreferredPadding">24dp</item>
|
||||
<item name="android:windowBackground">@drawable/bg_alert</item>
|
||||
<item name="android:buttonBarButtonStyle">@style/Widget.Mastodon.ButtonBarButton</item>
|
||||
|
||||
<!-- colors -->
|
||||
<item name="android:colorAccent">@color/red_primary_600</item>
|
||||
<item name="android:colorPrimary">@color/red_gray_50</item>
|
||||
<item name="android:colorBackground">@color/custom_gray_700</item>
|
||||
<item name="android:textColorPrimary">@color/red_gray_50</item>
|
||||
<item name="android:textColorSecondary">@color/red_gray_400</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Mastodon.Dialog.Alert.Red" parent="android:Theme.Material.Light.Dialog.Alert">
|
||||
<item name="android:windowTitleStyle">@style/alert_title</item>
|
||||
<item name="android:dialogPreferredPadding">24dp</item>
|
||||
<item name="android:windowBackground">@drawable/bg_alert</item>
|
||||
<item name="android:buttonBarButtonStyle">@style/Widget.Mastodon.ButtonBarButton</item>
|
||||
|
||||
<!-- colors -->
|
||||
<item name="android:colorAccent">@color/red_primary_700</item>
|
||||
<item name="android:colorPrimary">@color/custom_gray_800</item>
|
||||
<item name="android:colorBackground">@color/red_gray_100</item>
|
||||
<item name="android:textColorPrimary">@color/custom_gray_800</item>
|
||||
<item name="android:textColorSecondary">@color/custom_gray_500</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Mastodon.Toolbar.Red" parent="android:ThemeOverlay.Material.ActionBar">
|
||||
<item name="android:colorPrimary">@color/red_gray_50</item>
|
||||
<item name="android:textColorPrimary">@color/custom_gray_800</item>
|
||||
<item name="android:textColorSecondary">@color/custom_gray_800</item>
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
<style name="Theme.Mastodon.Dark.Original" parent="Theme.Mastodon.Dark">
|
||||
<item name="android:colorAccent">@color/original_primary_400</item>
|
||||
|
|
Loading…
Reference in New Issue