Does anyone know how I can refer to C # on the background color of the system used on elements such as the scroll button or the pressed button or tab (as the background for "tabPage1" in the image below)? Or, if a predefined constant does not exist, any algorithm, how to create a brush with this color? Thanks!

My intuitive first choice of SystemColors.ScrollBar is the same as .Control or .ButtonFace (BG for "tabPage2"), which is really the "face" for the scroll bar, and not what I would call the "background".
SystemColors.ControlLight or SystemColors.ControlLightLight not approaching.
When you zoom in, this area of ββthe control looks like a control panel with .Control and .Window pixels, so for me this hints at the possibility of smoothing this color; perhaps this indicates why the standard SystemColors enum does not define it? How to apply it to another control?

PS: I'm trying to improve a custom TabControl (which supports disabled tabs is another good thing missing from std controls, but this is another and already resolved story), so when its .Appearance set to Buttons or FlatButtons , it looks like the original ( see above). The selected tab is displayed with the pressed button, but its background color is set to Control or ButtonFace :

source share