Make Plymouth splash black to match the black-base theme

The boot splash still used the old bread-brown background (#230b00)
after the rest of the theme moved to a black base (#0c0c0c). Switch
bos.script's background to black so the boot splash is consistent with
the wallpaper/pywal palette and breadbar.
This commit is contained in:
Breadway 2026-06-16 09:17:10 +08:00
parent f8ae8fe125
commit f0a050fdc5

View file

@ -1,10 +1,10 @@
# BOS Plymouth boot splash (script module). # BOS Plymouth boot splash (script module).
# Bread-brown background, centred white BOS logo, a spinning accent ring, and a # Black background, centred white BOS logo, a spinning accent ring, and a
# status line at the bottom. Colours match the bread palette. # status line at the bottom. Colours match the bread palette (black base + warm accent).
# --- background (#230b00) --- # --- background (#0c0c0c) ---
Window.SetBackgroundTopColor(0.137, 0.043, 0.0); Window.SetBackgroundTopColor(0.047, 0.047, 0.047);
Window.SetBackgroundBottomColor(0.137, 0.043, 0.0); Window.SetBackgroundBottomColor(0.047, 0.047, 0.047);
screen_w = Window.GetWidth(); screen_w = Window.GetWidth();
screen_h = Window.GetHeight(); screen_h = Window.GetHeight();