[CmdPal] Adding colored extension icons (#38085)

* Updating run icon
* Bookmark
* System
* WindowWalker
* Extensions
* CreateExtensions
* Services
* Replacing icon

This PR updates the Segoe Fluent icons with colored Fluent icons.

![image](https://github.com/user-attachments/assets/8c1350a1-963b-4deb-9029-966ba0a3c0fb)
This commit is contained in:
Niels Laute
2025-03-24 11:01:33 +01:00
committed by GitHub
parent df3e3414d2
commit 69c2e9c568
36 changed files with 277 additions and 20 deletions

View File

@@ -8,5 +8,5 @@ namespace Microsoft.CmdPal.Ext.Shell;
internal sealed class Icons
{
internal static IconInfo RunV2 { get; } = IconHelpers.FromRelativePath("Assets\\Run_V2_2x.svg");
internal static IconInfo RunV2 { get; } = IconHelpers.FromRelativePath("Assets\\Run.svg");
}

View File

@@ -18,6 +18,8 @@
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\Extension.png" />
<None Remove="Assets\Extension.svg" />
<None Remove="Assets\Store.dark.png" />
<None Remove="Assets\Store.dark.svg" />
<None Remove="Assets\Store.light.png" />
@@ -81,6 +83,12 @@
</ItemGroup>
<ItemGroup>
<Content Update="Assets\Extension.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="Assets\Extension.svg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="Assets\Store.dark.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>

View File

@@ -36,7 +36,7 @@ internal sealed partial class WinGetExtensionPage : DynamicListPage, IDisposable
public static IconInfo WinGetIcon { get; } = IconHelpers.FromRelativePath("Assets\\WinGet.svg");
public static IconInfo ExtensionsIcon { get; } = new("\uEA86"); // Puzzle
public static IconInfo ExtensionsIcon { get; } = IconHelpers.FromRelativePath("Assets\\Extension.svg");
public static string ExtensionsTag => "windows-commandpalette-extension";