File tree Expand file tree Collapse file tree
contrib/keylightd-tray/frontend/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 paths :
1111 - " docs/**"
1212 - " .github/workflows/docs.yml"
13- workflow_run :
14- workflows : ["Test", "Release"]
15- types :
16- - completed
1713 workflow_dispatch :
1814
1915jobs :
2016 deploy :
2117 name : Deploy Documentation
2218 runs-on : ubuntu-latest
23- if : ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
2419 container :
2520 image : squidfunk/mkdocs-material:latest
2621 permissions :
Original file line number Diff line number Diff line change 1111 --error : # f38ba8 ;
1212 --surface : # 181825 ;
1313 --overlay : # 11111b ;
14+
15+ /* Component-specific colors (customizable) */
16+ --slider-track : var (--bg-tertiary );
17+ --input-bg : var (--surface );
18+ --input-border : var (--bg-tertiary );
19+ --list-item-bg : var (--surface );
1420}
1521
1622* {
@@ -228,7 +234,7 @@ body {
228234 appearance : none;
229235 height : 4px ;
230236 border-radius : 2px ;
231- background : var (--bg-tertiary );
237+ background : var (--slider-track );
232238 outline : none;
233239}
234240
@@ -432,9 +438,9 @@ body {
432438.setting-row input [type = "password" ] {
433439 flex : 1 ;
434440 padding : 6px 10px ;
435- border : 1px solid var (--bg-tertiary );
441+ border : 1px solid var (--input-border );
436442 border-radius : 4px ;
437- background-color : var (--surface );
443+ background-color : var (--input-bg );
438444 color : var (--text-primary );
439445 font-size : 12px ;
440446}
@@ -586,7 +592,7 @@ body {
586592}
587593
588594.group-item {
589- background-color : var (--surface );
595+ background-color : var (--list-item-bg );
590596 border-radius : 6px ;
591597 padding : 10px ;
592598}
Original file line number Diff line number Diff line change @@ -116,6 +116,12 @@ Override with `-css` flag.
116116 /* Surface colors */
117117 --surface : #181825 ;
118118 --overlay : #11111b ;
119+
120+ /* Component-specific colors */
121+ --slider-track : var (--bg-tertiary );
122+ --input-bg : var (--surface );
123+ --input-border : var (--bg-tertiary );
124+ --list-item-bg : var (--surface );
119125}
120126```
121127
You can’t perform that action at this time.
0 commit comments