-
Notifications
You must be signed in to change notification settings - Fork 16
Update target SDK 35, AGP to 8.11, publish-to-s3 to 0.10 and fixed issues with dark mode #251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
c05adf6
e0e235a
eb69b92
2707fc5
f5dbeb1
b5d3b38
4066d5a
148cc30
fca9b94
957eff9
b48abfb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <resources> | ||
|
|
||
| <style name="BottomSheetDialogTheme" parent="BaseBottomSheetDialog"> | ||
| <item name="android:navigationBarColor">@color/background_primary</item> | ||
| <item name="android:statusBarColor">@android:color/transparent</item> | ||
| <item name="android:windowLightNavigationBar">false</item> | ||
| </style> | ||
|
|
||
| <style name="Simperium" parent="Theme.MaterialComponents.DayNight.NoActionBar"> | ||
| <item name="android:navigationBarColor">@color/background_primary</item> | ||
| <item name="android:statusBarColor">@color/background_primary</item> | ||
| <item name="android:windowLightNavigationBar">false</item> | ||
| <item name="android:windowLightStatusBar">false</item> | ||
| <item name="colorAccent">@color/background_button_primary</item> | ||
| <item name="colorPrimary">@color/background_button_primary</item> | ||
| <item name="colorPrimaryDark">@color/background_button_primary</item> | ||
| </style> | ||
|
|
||
| </resources> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <resources> | ||
|
|
||
| <!-- APPLICATION - Dark Mode Colors --> | ||
| <color name="background_button_disabled">@color/gray_40</color> | ||
| <color name="background_button_primary">@color/primary</color> | ||
| <color name="background_button_secondary">@color/gray_40</color> | ||
| <color name="primary">@color/gray_b</color> | ||
| <color name="primary_dark">@color/gray_b</color> | ||
| <color name="text_button_disabled">@color/gray_40</color> | ||
| <color name="text_button_primary">@color/gray_1</color> | ||
| <color name="text_button_secondary">@color/gray_1</color> | ||
| <color name="text_button_tertiary">@color/gray_b</color> | ||
| <color name="text_link">@color/primary</color> | ||
| <color name="text_footer">@color/gray_b</color> | ||
| <color name="text_subtitle">@color/gray_b</color> | ||
| <color name="text_title">@android:color/white</color> | ||
|
mzorz marked this conversation as resolved.
|
||
|
|
||
| <!-- Background colors for dark mode --> | ||
| <color name="background_primary">@color/gray_1</color> | ||
| <color name="background_secondary">@color/gray_3</color> | ||
|
|
||
| </resources> | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,23 @@ | ||||||||||||||||||||
| <?xml version="1.0" encoding="utf-8"?> | ||||||||||||||||||||
|
|
||||||||||||||||||||
| <resources> | ||||||||||||||||||||
|
|
||||||||||||||||||||
| <style name="BaseBottomSheetDialog" parent="Theme.MaterialComponents.DayNight.BottomSheetDialog"> | ||||||||||||||||||||
| <item name="android:colorBackground">@color/background_primary</item> | ||||||||||||||||||||
| <item name="android:windowIsFloating">false</item> | ||||||||||||||||||||
| <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item> | ||||||||||||||||||||
| </style> | ||||||||||||||||||||
|
|
||||||||||||||||||||
| <style name="BottomSheetDialogTheme" parent="BaseBottomSheetDialog"> | ||||||||||||||||||||
| <item name="android:statusBarColor">@android:color/transparent</item> | ||||||||||||||||||||
| </style> | ||||||||||||||||||||
|
|
||||||||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Since the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. perfect, addressed in 4066d5a (can't apply an "outdated suggestion" since the branch moved) |
||||||||||||||||||||
| <style name="Simperium" parent="Theme.MaterialComponents.DayNight.NoActionBar"> | ||||||||||||||||||||
| <item name="android:statusBarColor">@color/background_primary</item> | ||||||||||||||||||||
| <item name="android:windowLightStatusBar">false</item> | ||||||||||||||||||||
| <item name="colorAccent">@color/background_button_primary</item> | ||||||||||||||||||||
| <item name="colorPrimary">@color/background_button_primary</item> | ||||||||||||||||||||
| <item name="colorPrimaryDark">@color/background_button_primary</item> | ||||||||||||||||||||
| </style> | ||||||||||||||||||||
|
|
||||||||||||||||||||
| </resources> | ||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| #Wed Aug 06 09:56:31 CEST 2025 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
Uh oh!
There was an error while loading. Please reload this page.