feat(theme_picker): material you (#1021)

This commit is contained in:
Jacob Thomas
2024-05-14 21:32:31 +01:00
committed by GitHub
parent 4999ca451d
commit 613e9f28a6
3 changed files with 44 additions and 0 deletions

View File

@@ -396,6 +396,10 @@
"name": "Background Surface Color",
"description": "Changes Snapchats background surface color"
},
"friend_feed_conversations_line_color": {
"name": "Conversations Line Color",
"description": "Changes the line divider color that splits Conversations on the friend feed "
},
"action_menu_background_color": {
"name": "Action Menu Background Color",
"description": "Changes Snapchats chat action menu background color"
@@ -1055,6 +1059,7 @@
"theme_picker": {
"amoled_dark_mode": "AMOLED Dark Mode",
"custom": "Custom Colors",
"material_you": "Material You (Android 12+)",
"light_blue": "Light Blue",
"dark_blue": "Dark Blue",
"earthy_autumn": "Earthy Autumn",

View File

@@ -27,6 +27,7 @@ class UserInterfaceTweaks : ConfigContainer() {
val snapWithoutSoundTextColor = color("snap_without_sound_text_color")
val backgroundColor = color("background_color")
val backgroundColorSurface = color("background_color_surface")
val friendFeedConversationsLineColor = color("friend_feed_conversations_line_color")
val actionMenuBackgroundColor = color("action_menu_background_color")
val actionMenuRoundBackgroundColor = color("action_menu_round_background_color")
val cameraGridLines = color("camera_grid_lines")
@@ -36,6 +37,7 @@ class UserInterfaceTweaks : ConfigContainer() {
val themePicker = unique("theme_picker",
"custom",
"amoled_dark_mode",
"material_you",
"light_blue",
"dark_blue",
"earthy_autumn",