(isDark)
| 833 | } |
| 834 | |
| 835 | function resolveAppBackground(isDark) { |
| 836 | const branding = window.__FR_BRANDING__ || {}; |
| 837 | const color = isDark ? branding.appBgDark : branding.appBgLight; |
| 838 | return String(color || '').trim(); |
| 839 | } |
| 840 | |
| 841 | function applyBrandingThemeColor(isDark) { |
| 842 | const color = resolveBrandThemeColor(isDark); |