Skip to content

Commit

Permalink
update brush colors from using teriary color to primary brush color p…
Browse files Browse the repository at this point in the history
…er design guidance
  • Loading branch information
bbonaby committed Sep 9, 2024
1 parent 4810c85 commit 0335eef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/Environments/Styles/HorizontalCardStyles.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
x:Key="CardBodyStateTextBlockStyle"
BasedOn="{StaticResource CaptionTextBlockStyle}"
TargetType="TextBlock">
<Setter Property="Foreground" Value="{ThemeResource TextFillColorTertiaryBrush}" />
<Setter Property="Foreground" Value="{ThemeResource TextFillColorPrimaryBrush}" />
<Setter Property="TextTrimming" Value="CharacterEllipsis" />
</Style>

Expand Down
4 changes: 2 additions & 2 deletions tools/SetupFlow/DevHome.SetupFlow/Views/SetupTargetView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@
VerticalAlignment="Center">
<TextBlock
Text="{x:Bind DisplayName, Mode=OneWay}"
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
Foreground="{ThemeResource TextFillColorPrimaryBrush}"
Margin=" 0 0 0 0"
IsTextSelectionEnabled="True"/>
<TextBlock
Margin="7 0 0 0"
Text="{x:Bind FormattedDeveloperId, Mode=OneWay}"
Foreground="{ThemeResource TextFillColorTertiaryBrush}"
Foreground="{ThemeResource TextFillColorPrimaryBrush}"
Style="{ThemeResource BodyTextBlockStyle}"
IsTextSelectionEnabled="True"/>
</StackPanel>
Expand Down

0 comments on commit 0335eef

Please sign in to comment.