Navid Rahmani
Navid Rahmani

Reputation: 7958

Windows 7 Taskbar Icons Highlight Color

Can anyone explain how to calculate the highlight color based on dominant color in images like Windows-7 taskbar when mouse is over the taskbar item? Any c# code?

images of windows7 taskbar item on mouse hover

Upvotes: 11

Views: 2882

Answers (1)

Jordan
Jordan

Reputation: 32522

I believe what it does is take the most prominent color in the application's icon using a method similar to this: Python - Find dominant/most common color in an image

With that information, it then applies a translucent radial gradient hue and positions it based on your mouse location. The gradient is more white toward the center of your mouse, but the center is actually off screen. The closer to the actual taskbar item, the more transparent it becomes.

Upvotes: 8

Related Questions