Make Plymouth splash black to match the black-base theme
All checks were successful
Mirror to GitHub / mirror (push) Successful in 4s

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.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Breadway 2026-06-16 09:17:10 +08:00
parent 9ea57d87c0
commit a4af3aa938

View file

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