UI细节优化

This commit is contained in:
LittleTurtle2333
2023-02-14 21:15:56 +08:00
parent 5b3ad4dd6a
commit e63b9a861d
5 changed files with 9 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ class MainPageForS : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.main_switch, textId = R.string.main_switch,
colorId = R.color.purple_700 colorId = R.color.blue
), SwitchV("main_switch", true) ), SwitchV("main_switch", true)
) )
TextSummaryWithSwitch( TextSummaryWithSwitch(

View File

@@ -599,7 +599,7 @@ class SystemUIPageForS : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.show_weather_main_switch, textId = R.string.show_weather_main_switch,
colorId = R.color.purple_700 colorId = R.color.blue
), ),
SwitchV( SwitchV(
"notification_weather", "notification_weather",
@@ -636,7 +636,7 @@ class SystemUIPageForS : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.show_weather_main_switch, textId = R.string.show_weather_main_switch,
colorId = R.color.purple_700, colorId = R.color.blue,
tipsId = R.string.control_center_weather_summary tipsId = R.string.control_center_weather_summary
), ),
SwitchV( SwitchV(
@@ -703,7 +703,7 @@ class SystemUIPageForS : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.old_qs_custom_switch, textId = R.string.old_qs_custom_switch,
colorId = R.color.purple_700 colorId = R.color.blue
), ),
SwitchV( SwitchV(
"old_qs_custom_switch", "old_qs_custom_switch",

View File

@@ -18,7 +18,7 @@ class MainPageForT : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.main_switch, textId = R.string.main_switch,
colorId = R.color.purple_700 colorId = R.color.blue
), SwitchV("main_switch", true) ), SwitchV("main_switch", true)
) )
TextSummaryWithSwitch( TextSummaryWithSwitch(

View File

@@ -599,7 +599,7 @@ class SystemUIPageForT : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.show_weather_main_switch, textId = R.string.show_weather_main_switch,
colorId = R.color.purple_700 colorId = R.color.blue
), ),
SwitchV( SwitchV(
"notification_weather", "notification_weather",
@@ -636,7 +636,7 @@ class SystemUIPageForT : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.show_weather_main_switch, textId = R.string.show_weather_main_switch,
colorId = R.color.purple_700, colorId = R.color.blue,
tipsId = R.string.control_center_weather_summary tipsId = R.string.control_center_weather_summary
), ),
SwitchV( SwitchV(
@@ -703,7 +703,7 @@ class SystemUIPageForT : BasePage() {
TextSummaryWithSwitch( TextSummaryWithSwitch(
TextSummaryV( TextSummaryV(
textId = R.string.old_qs_custom_switch, textId = R.string.old_qs_custom_switch,
colorId = R.color.purple_700 colorId = R.color.blue
), ),
SwitchV( SwitchV(
"old_qs_custom_switch", "old_qs_custom_switch",

View File

@@ -8,4 +8,5 @@
<color name="black">#FF000000</color> <color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color> <color name="white">#FFFFFFFF</color>
<color name="red">#FF0000</color> <color name="red">#FF0000</color>
<color name="blue">#0d84ff</color>
</resources> </resources>