@@ -28,17 +28,18 @@ const styles: CSSResultGroup = [
2828
2929 .wrapper {
3030 align-items : flex-start;
31+ color : var (--vscode-foreground , # cccccc );
3132 display : flex;
32- font-family : var (--vscode-font-family );
33- font-size : var (--vscode-font-size );
34- font-weight : var (--vscode-font-weight );
33+ font-family : var (--vscode-font-family , sans-serif );
34+ font-size : var (--vscode-font-size , 13 px );
35+ font-weight : var (--vscode-font-weight , normal );
3536 outline-offset : -1px ;
3637 padding-right : 12px ;
3738 }
3839
3940 .wrapper : hover {
40- background-color : var (--vscode-list-hoverBackground );
41- color : var (--vscode-list-hoverForeground );
41+ background-color : var (--vscode-list-hoverBackground , # 2a2d2e );
42+ color : var (--vscode-list-hoverForeground , # cccccc );
4243 }
4344
4445 : host ([selected ]) .wrapper {
@@ -57,7 +58,7 @@ const styles: CSSResultGroup = [
5758 : host (: focus ) .wrapper .active {
5859 outline-color : var (
5960 --vscode-list-focusAndSelectionOutline ,
60- var (--vscode-list-focusOutline )
61+ var (--vscode-list-focusOutline , # 0078d4 )
6162 );
6263 outline-style : solid;
6364 outline-width : 1px ;
@@ -75,7 +76,7 @@ const styles: CSSResultGroup = [
7576
7677 .arrow-container svg {
7778 display : block;
78- fill : var (--vscode-icon-foreground );
79+ fill : var (--vscode-icon-foreground , # cccccc );
7980 }
8081
8182 .arrow-container .icon-rotated svg {
@@ -109,7 +110,7 @@ const styles: CSSResultGroup = [
109110 }
110111
111112 .children .guide : before {
112- background-color : var (--vscode-tree-inactiveIndentGuidesStroke );
113+ background-color : var (--vscode-tree-inactiveIndentGuidesStroke , rgba ( 88 , 88 , 88 , 0.4 ) );
113114 content : '' ;
114115 display : none;
115116 height : 100% ;
@@ -126,7 +127,7 @@ const styles: CSSResultGroup = [
126127
127128 .children .guide .highlighted-guide : before {
128129 display : var (--internal-highlightedIndentGuideDisplay );
129- background-color : var (--vscode-tree-indentGuidesStroke );
130+ background-color : var (--vscode-tree-indentGuidesStroke , # 585858 );
130131 }
131132
132133 .content {
0 commit comments