fix: lighten animal island main panel

This commit is contained in:
7015725
2026-05-19 03:37:25 +08:00
parent 4ce1924299
commit d557bdefa2
4 changed files with 21 additions and 55 deletions

View File

@@ -859,10 +859,10 @@ FloatBallAppWM.prototype.updatePanelBackground = function(panelView) {
var radiusDp = 22;
if (settTheme === "animal" && this.getAnimalIslandTheme) {
var T = this.getAnimalIslandTheme();
bgInt = this.withAlpha(isDark ? T.bg : T.bg2, isDark ? 0.96 : 0.94);
tc = T.text;
stroke = this.withAlpha(T.stroke, isDark ? 0.28 : 0.34);
var Color = android.graphics.Color;
bgInt = Color.parseColor(isDark ? "#27362E" : "#E4F1DF");
tc = Color.parseColor(isDark ? "#F5EBD2" : "#3F3528");
stroke = this.withAlpha(Color.parseColor(isDark ? "#526454" : "#E8DEC8"), isDark ? 0.50 : 0.52);
radiusDp = 30;
} else {
bgInt = this.getPanelBgColorInt();