| 1 | // Non-interactive full-window background layer for theme packs. |
| 2 | // Home scene uses full focus + opacity; task scene dims and applies a |
| 3 | // directional safe-area overlay (no backdrop-filter). |
| 4 | |
| 5 | export function ThemeBackground() { |
| 6 | return ( |
| 7 | <div className="theme-bg" aria-hidden="true"> |
| 8 | <div className="theme-bg__image" /> |
| 9 | <div className="theme-bg__overlay" /> |
| 10 | </div> |
| 11 | ); |
| 12 | } |
| 13 |