Skip to content

Commit

Permalink
Placeholder items dark theme improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sboulema committed Mar 11, 2024
1 parent a1abc7f commit c8aa9c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CodeNav.Shared/Helpers/PlaceholderHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Microsoft.VisualStudio.Imaging;
using System.Collections.Generic;
using System.Windows.Media;
using Microsoft.VisualStudio.PlatformUI;

namespace CodeNav.Helpers
{
Expand Down Expand Up @@ -32,7 +33,7 @@ private static List<CodeItem> CreateItem(string name, ImageMoniker moniker)
Name = name,
FullName = name,
Id = name,
ForegroundColor = Colors.Black,
ForegroundColor = ColorHelper.ToMediaColor(EnvironmentColors.ToolWindowTextColorKey),
BorderColor = Colors.DarkGray,
Moniker = moniker,
IsExpanded = true
Expand Down

0 comments on commit c8aa9c9

Please sign in to comment.