File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
chart/graph/component/button Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ export const NeoGraphChartLegendButton = (props: GraphChartVisualizationProps) =
134134 padding : 0 ,
135135 marginTop : '0.2rem' ,
136136 fontWeight : 'bold' ,
137- color : '#535a65' ,
137+ color : isDark ? '#ffffff' : '#535a65' ,
138138 } }
139139 >
140140 LEGEND
Original file line number Diff line number Diff line change @@ -157,6 +157,24 @@ export const darkTheme = createTheme({
157157 } ,
158158 } ,
159159 } ,
160+ MuiPopover : {
161+ styleOverrides : {
162+ paper : {
163+ backgroundColor : '#1e1e1e' ,
164+ color : '#ffffff' ,
165+ } ,
166+ } ,
167+ } ,
168+ MuiListItemText : {
169+ styleOverrides : {
170+ primary : {
171+ color : '#ffffff' ,
172+ } ,
173+ secondary : {
174+ color : '#9ca3af' ,
175+ } ,
176+ } ,
177+ } ,
160178 } as any ,
161179 breakpoints : {
162180 values : {
You can’t perform that action at this time.
0 commit comments