Skip to content

Commit c37d5c9

Browse files
committed
more options to adjust color scheme
1 parent 704eac3 commit c37d5c9

File tree

5 files changed

+63
-32
lines changed

5 files changed

+63
-32
lines changed

dist/toolbar.js

+29-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/css/themes.scss

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
@mixin light {
2+
--color-text: #555;
3+
--color-text-shadow: #fff;
4+
--color-background: #fff;
5+
--color-cell-border: #ddd;
6+
--color-cell-hover: #ebebeb;
7+
}
8+
9+
@mixin dark {
10+
--color-text: #EDF2F7;
11+
--color-text-shadow: #4A5568;
12+
--color-background: #252a37;
13+
--color-cell-border: #2D3748;
14+
--color-cell-hover: #4A5568;
15+
}
16+
17+
#toolbar {
18+
@include light;
19+
}
20+
21+
#toolbar[theme="dark"] {
22+
@include dark;
23+
}
24+
25+
#toolbar[theme="auto"] {
26+
@media (prefers-color-scheme: dark) {
27+
@include dark;
28+
}
29+
}

resources/css/toolbar.scss

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
1+
@use "themes";
2+
13
@keyframes loaded {
24
from { opacity: 0 }
35
to { opacity: 1 }
46
}
57

68
#toolbar {
7-
--color-text: #555;
8-
--color-text-shadow: #fff;
9-
--color-background: #fff;
10-
--color-cell-border: #ddd;
11-
--color-cell-hover: #ebebeb;
12-
13-
@media (prefers-color-scheme: dark) {
14-
--color-text: #EDF2F7;
15-
--color-text-shadow: #4A5568;
16-
--color-background: #1A202C;
17-
--color-cell-border: #2D3748;
18-
--color-cell-hover: #4A5568;
19-
}
20-
219
position: fixed;
2210
bottom: 0;
2311
left: 0;
@@ -98,7 +86,7 @@
9886
}
9987

10088
&.debugbarClosed {
101-
left: 40px;
89+
left: 41px;
10290
}
10391

10492
&.debugbarOpen,

resources/js/Toolbar.svelte

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
class:isHidden
3535
class:debugbarClosed={ debugbarStatus === 'closed' }
3636
class:debugbarMinimized={ debugbarStatus === 'minimized' }
37+
theme={toolbar?.theme ?? 'auto'}
3738
>
3839
{#if toolbar?.breakpoints}
3940
<Breakpoints breakpoints={toolbar.breakpoints}/>

src/Controllers/ToolbarController.php

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public function __invoke(Request $request)
2929
'template' => $this->getTemplate(),
3030
'cp_link' => $this->getCpLink(),
3131
'visibility' => config('statamic.toolbar.components.visibility', true),
32+
'theme' => env('STATAMIC_TOOLBAR_THEME', config('debugbar.theme', 'auto')),
3233
];
3334

3435
$toolbarData = array_filter($toolbarData, fn ($value) => ! is_null($value));

0 commit comments

Comments
 (0)