Hi All,
Anyone so kind to share Ribbon Style Office 2016 Dark Theme?
Highly appreciated.
![]()
Frances
Fivewin for xHarbour v18.07
xHarbour v1.2.3.x
BCC 7.3 + PellesC8 ( Resource Compiler only)
ADS 10.1 / MariaDB
Crystal Reports 8.5/9.23 DE
xMate v1.15
Hi All,
Anyone so kind to share Ribbon Style Office 2016 Dark Theme?
Highly appreciated.
![]()

Antonio Linares wrote:Do you mean this look ?

James,
The dark mode from your screenshot looks quite similar ![]()
How have you implemented it ?
perhaps we can change color of rbtn
What about the title bar? It should be dark as well.
EMG
How have you implemented it?
perhaps we can change color of rbtn?
What about the title bar? It should be dark as well.
James Bott wrote:Enrico Maria Giordano wrote:What about the title bar? It should be dark as well.
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, 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?
Antonio,
I looked at skin1 and skin2 but they are not using windows with title bars so I am not sure how that helps?

Frances,
Impressive!
I find it interesting that Outlook 2016 and Word 2016 have different dark themes. Word's theme is much darker. Are there two dark themes to pick from? I don't have a copy of Office 2016 here to look at--I am using screenshots.
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
on this forum I allready list my modify ( together Josè of alanit and Antonio)
I had modify the ribbon class and add l2016 with some colors I change the
METHOD SetStyles( l2010, l2013, l2015, nTopMargin, nClrPaneRB, nClrBoxOut, nClrBoxIn,;
nClrBoxSelOut, nClrBoxSelIn, aGrad, aGradFld, aGradHigh, aGradOver, l2016 ) CLASS TRibbonBar
I send to linares my modifies
on prg
IF IsWindows10()
::oRebar:l2016:=.t.
::oRebar:nRoundBox := 0
::oRebar:nClrPaneRB := GetSysColor( COLOR_MENUHILIGHT )
else
::oRebar:l2010:=.t.
endif
we add also the possibility to click on the top and hide ribbonbar
we add also a toolbutton at left to hide/show the Explorer Menu if there was
then the rbtn are change at the end
type
For x= 1 TO 71
oBtn[x]:bClrGradNormal = { | lInvert | If( ! lInvert,;
{ { 1, RGB( 225, 225,225 ), RGB( 225, 225, 225 ) } },;
{ { 1, RGB( 229,241,251 ), RGB( 229,241,251 ) } } ) }
next x
I saw the word 2016 have the tabs more big I think we can make it
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.
  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 ) } ;
    } ) }