diff --git a/engine/core/static/maintenance.html b/engine/core/static/maintenance.html index 9bd32d29..14f90d78 100644 --- a/engine/core/static/maintenance.html +++ b/engine/core/static/maintenance.html @@ -1,5 +1,4 @@ -
@@ -16,14 +15,26 @@ width: 100%; height: 100%; overflow: hidden; - font-family: 'Source Code Pro', monospace; - background: #2a2a3a; - color: #fff; + font-family: 'Source Code Pro', 'Courier New', Courier, monospace; } canvas { display: block; } + + /* Dark theme (default) */ + body { + background: #2a2a3a; + color: #fff; + } + + /* Light theme */ + @media (prefers-color-scheme: light) { + body { + background: #f5f5f7; + color: #1d1d1f; + } + } @@ -31,11 +42,62 @@