Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit f87e9c9

Browse files
committed
Theme commit and files tab text
1 parent 2311757 commit f87e9c9

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

src/GitHub.VisualStudio/UI/Views/PullRequestCreationView.xaml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@
409409
<ui:OcticonImage Icon="git_branch" Foreground="{DynamicResource GitHubVsGrayText}" />
410410
<ui:GitHubActionLink x:Name="branchSelectionButton" Content="master" HasDropDown="True" Margin="5,0,0,0" VerticalAlignment="Center" Click="branchSelectionButton_Click" />
411411
<ui:OcticonImage Height="13" Icon="chevron_left" Foreground="{DynamicResource GitHubVsGrayText}" Margin="0,1,0,0" VerticalAlignment="Center" />
412-
<Label Content="{Binding CurrentBranchName}" Foreground="{DynamicResource GitHubVsToolWindowText}"/>
412+
<Label Content="{Binding CurrentBranchName}" Foreground="{DynamicResource GitHubVsGrayText}"/>
413413
</StackPanel>
414414

415415
<!-- Show a check if the branch is mergeable (is that even a word??),
@@ -674,6 +674,7 @@
674674
<TextBlock Text="I am an example commit message"
675675
ToolTip="I am an example commit message"
676676
VerticalAlignment="Top"
677+
Foreground="{DynamicResource GitHubVsToolWindowText}"
677678
FontSize="14"
678679
Margin="10,-3,5,0"
679680
Grid.Column="1"
@@ -686,7 +687,7 @@
686687
FontSize="11"
687688
Grid.Column="1"
688689
Grid.Row="1"
689-
Foreground="#FF777777"/>
690+
Foreground="{DynamicResource GitHubVsGrayText}"/>
690691
</Grid>
691692
</ListViewItem>
692693

@@ -710,9 +711,12 @@
710711
Width="16"
711712
HorizontalAlignment="Left"
712713
VerticalAlignment="Center"
714+
Foreground="{DynamicResource GitHubVsGrayText}"
713715
Icon="file_text" />
714716

715-
<TextBlock Grid.Column="1" Text="src\file_added.cs" />
717+
<TextBlock
718+
Foreground="{DynamicResource GitHubVsWindowText}"
719+
Grid.Column="1" Text="src\file_added.cs" />
716720

717721
<ui:OcticonImage Icon="diff_added" Grid.Column="2" Foreground="#ff6cc644" ToolTip="Added" />
718722
</Grid>
@@ -732,9 +736,12 @@
732736
Width="16"
733737
HorizontalAlignment="Left"
734738
VerticalAlignment="Center"
739+
Foreground="{DynamicResource GitHubVsGrayText}"
735740
Icon="file_text" />
736741

737-
<TextBlock Grid.Column="1" Text="src\file_modified.cs" />
742+
<TextBlock
743+
Foreground="{DynamicResource GitHubVsWindowText}"
744+
Grid.Column="1" Text="src\file_modified.cs" />
738745

739746
<ui:OcticonImage Icon="diff_modified" Grid.Column="2" Foreground="#ffbbbbbb" ToolTip="Modified" />
740747
</Grid>
@@ -754,9 +761,12 @@
754761
Width="16"
755762
HorizontalAlignment="Left"
756763
VerticalAlignment="Center"
764+
Foreground="{DynamicResource GitHubVsGrayText}"
757765
Icon="file_text" />
758766

759-
<TextBlock Grid.Column="1" Text="src\file_removed.cs" />
767+
<TextBlock
768+
Foreground="{DynamicResource GitHubVsWindowText}"
769+
Grid.Column="1" Text="src\file_removed.cs" />
760770

761771
<ui:OcticonImage Icon="diff_removed" Grid.Column="2" Foreground="#FFbd2c00" ToolTip="Removed" />
762772
</Grid>
@@ -776,9 +786,12 @@
776786
Width="16"
777787
HorizontalAlignment="Left"
778788
VerticalAlignment="Center"
789+
Foreground="{DynamicResource GitHubVsGrayText}"
779790
Icon="file_text" />
780791

781-
<TextBlock Grid.Column="1" Text="src\file_renamed.cs" />
792+
<TextBlock
793+
Foreground="{DynamicResource GitHubVsWindowText}"
794+
Grid.Column="1" Text="src\file_renamed.cs" />
782795

783796
<ui:OcticonImage Icon="diff_renamed" Grid.Column="2" Foreground="#ff4078c0" ToolTip="Renamed" />
784797
</Grid>

0 commit comments

Comments
 (0)