Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why is the taskbar icon in the notification area grey in Windows 10 and blue in Windows 11? #1537

Open
cpasoft opened this issue Feb 4, 2025 · 3 comments
Milestone

Comments

@cpasoft
Copy link

cpasoft commented Feb 4, 2025

Why is the taskbar icon in the notification area grey in Windows 10 and blue in Windows 11? Can I change this? I'd like it to be blue in both systems...

Thanks!

@emako
Copy link
Member

emako commented Feb 5, 2025

It is really a bit strange, @rabelux do you know what historical reasons are there?

    private Icon GetTrayIconByDPI()
    {
        var scale = DisplayDeviceHelper.GetCurrentScaleFactor().Vertical;

        if (!App.IsWin10)
            return scale > 1 ? Resources.app : Resources.app_16;

        return OSThemeHelper.SystemUsesDarkTheme()
            ? (scale > 1 ? Resources.app_white : Resources.app_white_16)
            : (scale > 1 ? Resources.app_black : Resources.app_black_16);
    }

@emako emako added this to the 5.0.0 milestone Feb 7, 2025
@emako
Copy link
Member

emako commented Feb 7, 2025

The settings page will be added in subsequent plans, and the tray icon color can be adjusted.

@emako emako changed the title A silly question Why is the taskbar icon in the notification area grey in Windows 10 and blue in Windows 11? Feb 7, 2025
@KamilDev
Copy link
Contributor

KamilDev commented Feb 7, 2025

It is really a bit strange, @rabelux do you know what historical reasons are there?

I believe in the early stage of Windows 8 or Windows 10, the design language of tray icons were to be all white/monochrome. I think the term was called something like "metro style icons".

If you google for "Windows metro icons", you will find examples of white and monochrome icons.

Image

I'm assuming once Windows 11 came out, the design language changed away from "metro icons" and into the current "fluent design" language -- now it's normal for tray icons to have vibrant colors.

When this update was made, I assume QuickLook wanted to preserve the existing "metro icon" style for Windows 10 devices, while using the new "fluent design" style for Windows 11 devices.

Note: I'm not sure if this design language started and ended with Windows 8, or continued until Windows 10.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants