Anyone so kind to share Ribbon Style Office 2016 Dark Theme?
Highly appreciated.

Antonio,Antonio Linares wrote:Do you mean this look ?
Antonio, the answer to that is not simple, nor would it be useful right now, since I am using modified versions of the ribbonbar classes. Additionally, I did this quick-and-dirty to just show that it can be done, but also there are still limitations, like the outlines.How have you implemented it?
Silvio, I'm not sure why you would want that? The ones shown in my example are the same as MS Word. The buttons inherit the color of the ribbonbar. I have not seen any ribbonbars that have different colored buttons, and my intent is to emulate Microsoft's look. Of course, if you really wanted something like that it is possible but would require changes to the class code.perhaps we can change color of rbtn?
Enrico, I agree. I did a cursory search for "windows 10 titlebar color" on the Internet but only found how to change all the Windows apps titlebar's color but not a single app. Do you know how?What about the title bar? It should be dark as well.
No, sorry.James Bott wrote:Enrico, I agree. I did a cursory search for "windows 10 titlebar color" on the Internet but only found how to change all the Windows apps titlebar's color but not a single app. Do you know how?Enrico Maria Giordano wrote:What about the title bar? It should be dark as well.
Please review FWH\samples\skin1.prg and skin2.prgEnrico, I agree. I did a cursory search for "windows 10 titlebar color" on the Internet but only found how to change all the Windows apps titlebar's color but not a single app. Do you know how?
Ok, I think you are referring to the button highlight color when the cursor is over the button, rather than the button color? Note that there are also pressed and not-pressed colors. And each one can be a double array, so there are a total of 4 colors and two other values that determine the type of graduation.Silvio wrote: At school we have office 2016 and I 'm trying to recreate it but I have problems. It's as 2016 release but the button color background are changed.
Code: Select all
DEFAULT bClrGradNormal := { | lPressed | if ( lPressed,;
{ ;
{ 2/5, nRGB( 254, 215, 169 ), nRGB( 251, 179, 99 ) } , ;
{ 3/5, nRGB( 250, 155, 50 ), nRGB( 253, 239, 173 ) } ;
},;
{;
{ 2/5, nRGB( 255, 253, 222 ), nRGB( 255, 231, 147 ) } , ;
{ 3/5, nRGB( 255, 215, 86 ), nRGB( 255, 231, 153 ) } ;
} ) }