mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 04:23:34 +00:00
Support a custom accent theme across nav, terminal, scrollbars, and loaders. Improve light-mode tokens, helper popup placement, and theme persistence (including purple→custom migration). Cover with appearance and scrollbar tests.
12 lines
312 B
PHP
12 lines
312 B
PHP
<?php
|
|
|
|
test('native scrollbars follow the active theme', function () {
|
|
$styles = file_get_contents(resource_path('css/app.css'));
|
|
|
|
expect($styles)
|
|
->toContain('html {')
|
|
->toContain('color-scheme: light;')
|
|
->toContain('html.dark {')
|
|
->toContain('color-scheme: dark;');
|
|
});
|