Does anybody know how can I reference in C# a system background color, used on elements like scrollbar or pushed-in option button or tab (as the background for 'tabPage1' in the image below)?
Or, if no predefined const exists, any algorithm how to create a Brush with this color? Thank you!

My intuitive first choice SystemColors.ScrollBar results in same as .Control or .ButtonFace (BG for 'tabPage2'), which is really a "face" color for the scrollbar, not what I'd call "background".
SystemColors.ControlLight or SystemColors.ControlLightLight do not get any closer..
When zoomed in, that area of the control looks like a checker-board with .Control and .Window pixels, so to me that hints at a possibility of this color being dithered; maybe that indicates the reason why standard SystemColors enum does not define it? How would I apply it to another control?

P.S.: I'm trying to enhance a custom TabControl (which supports disableable tabs - another good thing missing from std controls, but that's another and already solved story), so that when its .Appearance is set to Buttons or FlatButtons, it looks similar to the original (illustrated above). Selected tab is indicated by a pushed-in button, but its background color is set to Control or ButtonFace:

SystemColorsenum, and use it on a control. If Windows theme is customized so that.Controlcolor is, say, cyan, the controls I listed in the Q will have a lighter shade of cyan - so this "color" has to be derived from the main one (that may be the reason it is not declared explicitly). What I want is a way to apply it to a control on my WinForm. – Astrogator Feb 7 at 22:13