@@ -99,10 +99,11 @@ export const CortexTreeItem: Component<CortexTreeItemProps> = (props) => {
9999 gap : "4px" ,
100100 cursor : "pointer" ,
101101 background : local . isSelected
102- ? "var(--cortex-accent-muted, rgba(191, 255,0,0.1) )"
102+ ? "rgba(255, 255, 255, 0.05 )"
103103 : isHovered ( )
104104 ? "var(--cortex-bg-hover, rgba(255,255,255,0.05))"
105105 : "transparent" ,
106+ "border-radius" : local . isSelected ? "2px" : "0" ,
106107 transition : "background var(--cortex-transition-fast, 100ms ease)" ,
107108 ...local . style ,
108109 } ) ;
@@ -131,11 +132,11 @@ export const CortexTreeItem: Component<CortexTreeItemProps> = (props) => {
131132
132133 const textStyle = ( ) : JSX . CSSProperties => ( {
133134 flex : "1" ,
134- "font-family" : "var(--cortex-font-sans)" ,
135- "font-size" : "14px " ,
135+ "font-family" : "var(--cortex-font-sans, 'Figtree', sans-serif )" ,
136+ "font-size" : "16px " ,
136137 color : local . isSelected
137- ? "var(--cortex-text-primary, var(--cortex-text-primary) )"
138- : "var(--cortex-text-secondary, var(--cortex-text-secondary)) " ,
138+ ? "var(--cortex-text-primary, #FCFCFC )"
139+ : "#E9E9EA " ,
139140 "white-space" : "nowrap" ,
140141 overflow : "hidden" ,
141142 "text-overflow" : "ellipsis" ,
0 commit comments