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(
TextSummaryV(
textId = R.string.main_switch,
colorId = R.color.purple_700
colorId = R.color.blue
), SwitchV("main_switch", true)
)
TextSummaryWithSwitch(

View File

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

View File

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

View File

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

View File

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