Skip to content

Commit de10550

Browse files
committed
Fix CSV text colour in the dark mode
1 parent 38cffa1 commit de10550

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

QuickLook.Plugin/QuickLook.Plugin.CsvViewer/CsvViewerPanel.xaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
mc:Ignorable="d"
99
d:DesignHeight="300" d:DesignWidth="300">
1010
<Grid>
11-
<DataGrid x:Name="dataGrid" AlternationCount="2" BorderThickness="0" Background="Transparent"
11+
<DataGrid x:Name="dataGrid" AlternationCount="2" BorderThickness="0" Background="Transparent" Foreground="{DynamicResource WindowTextForeground}"
1212
RowBackground="Transparent" IsReadOnly="True" HeadersVisibility="None" AutoGenerateColumns="False"
1313
CanUserReorderColumns="False" ItemsSource="{Binding Path=Rows,ElementName=csvViewer}"
14-
AlternatingRowBackground="#99D8D8D8" HorizontalGridLinesBrush="#FFBDBDBD" VerticalGridLinesBrush="#FFBDBDBD" />
14+
AlternatingRowBackground="#1900FF70" HorizontalGridLinesBrush="#19000000" VerticalGridLinesBrush="#19000000" />
1515

1616
</Grid>
1717
</UserControl>

0 commit comments

Comments
 (0)