<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to change Revit ribbon tab color? in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12858058#M31686</link>
    <description>&lt;P&gt;That is something you would have to discuss with the product managers and UI designers, not with the programmers, and this is not an appropriate place to do so. Please discuss all UI related questions in one of the non-API-related forums:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/this-forum-is-for-revit-api-programming-questions-not-for/td-p/5607765" target="_blank"&gt;https://forums.autodesk.com/t5/revit-api-forum/this-forum-is-for-revit-api-programming-questions-not-for/td-p/5607765&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jun 2024 13:29:25 GMT</pubDate>
    <dc:creator>jeremy_tammik</dc:creator>
    <dc:date>2024-06-24T13:29:25Z</dc:date>
    <item>
      <title>How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/9761734#M31669</link>
      <description>&lt;P&gt;I am currently struggling with changing the color of&amp;nbsp; tab header on the Revit ribbon. I have attempted to source answers from&amp;nbsp;The Building Coder's&amp;nbsp;Pimp my AutoCAD or Revit Ribbon blog among others, but have been unable to get the results I am seeking. As you can see from the image below I can get the panel background to color using a TabThem. The TabTheme has allows me to set TabHeaderBackground and TabHeaderForeground, which I would have thought would be what I was looking for. I would have expected my below code to color the panel background and the tab header orange.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would be grateful for any advice anyone could offer to point me in the right direction to getting the tab header to change color.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;            adWin.RibbonControl ribbon = adWin.ComponentManager.Ribbon;

            LinearGradientBrush gB = new LinearGradientBrush();
            gB.StartPoint = new System.Windows.Point(0, 0);
            gB.EndPoint = new System.Windows.Point(0, 1);
            gB.GradientStops.Add(new GradientStop(Colors.Orange, 0.0));
            gB.GradientStops.Add(new GradientStop(Colors.Orange, 1));

            Autodesk.Internal.Windows.TabTheme myTheme = new 
            Autodesk.Internal.Windows.TabTheme();
            myTheme.PanelBackground = gB;
            myTheme.TabHeaderBackground = gB;
            myTheme.TabHeaderForeground = gB;       


            ribbon.FindTab("BIM TOOLS").Theme =  myTheme;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TabColor.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/822341i728BBF870D1C954D/image-size/large?v=v2&amp;amp;px=999" role="button" title="TabColor.PNG" alt="TabColor.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 17:23:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/9761734#M31669</guid>
      <dc:creator>jmmiller.southlandind</dc:creator>
      <dc:date>2020-09-22T17:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/9761930#M31670</link>
      <description>&lt;P&gt;The Revit API and the Revit user interface do not support this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All I know is in the article you pointed out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 18:54:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/9761930#M31670</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-09-22T18:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/9762108#M31671</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/413917"&gt;@jeremytammik&lt;/a&gt;&amp;nbsp; thank you for the quick reply. You indicated that Revit user interface does not support this feature. Is there any other method you are aware of to change the tab header color? I ask because my inspiration to try to figure out how it is done was derived from an add-in that has the tabs colored. Please see image.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, for my own education. If the TabHeaderBackground and TabHeaderForground are not controlling the Tab, do you have any idea what they do control?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TabColor.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/822382iFB1580ECBB2A328A/image-size/large?v=v2&amp;amp;px=999" role="button" title="TabColor.PNG" alt="TabColor.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 20:23:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/9762108#M31671</guid>
      <dc:creator>jmmiller.southlandind</dc:creator>
      <dc:date>2020-09-22T20:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10521723#M31672</link>
      <description>&lt;P&gt;Try a similar solution&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=b0PXfTu7xyw" target="_blank"&gt;https://www.youtube.com/watch?v=b0PXfTu7xyw&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Aug 2021 06:47:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10521723#M31672</guid>
      <dc:creator>RevitBuilder43</dc:creator>
      <dc:date>2021-08-05T06:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10521724#M31673</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Try a similar solution&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.youtube.com/watch?v=b0PXfTu7xyw" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.youtube.com/watch?v=b0PXfTu7xyw&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Aug 2021 06:47:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10521724#M31673</guid>
      <dc:creator>RevitBuilder43</dc:creator>
      <dc:date>2021-08-05T06:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10546666#M31674</link>
      <description>&lt;P&gt;Interesting question, any updates or work-around way ??&lt;/P&gt;</description>
      <pubDate>Sun, 15 Aug 2021 11:04:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10546666#M31674</guid>
      <dc:creator>Omar_Amen</dc:creator>
      <dc:date>2021-08-15T11:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10547160#M31675</link>
      <description>&lt;P&gt;I repeat the answer I gave above:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Revit API does not support this, and the development team have good reasons for this decision.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I you wish to violate the standard Revit UI standards, you can refer to the article discussed above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Aug 2021 18:22:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10547160#M31675</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2021-08-15T18:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10560596#M31676</link>
      <description>&lt;P&gt;This functionality is now available in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Autodesk App Store&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Download&lt;/STRONG&gt;:&amp;nbsp;&lt;A href="https://apps.autodesk.com/RVT/ru/Detail/Index?id=6172229355984601104&amp;amp;appLang=en&amp;amp;os=Win64" target="_blank" rel="noopener nofollow noreferrer"&gt;https://apps.autodesk.com/RVT/ru/Detail/ColoringTabs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or here:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://apps.autodesk.com/RVT/ru/Detail/Index?id=6172229355984601104&amp;amp;appLang=en&amp;amp;os=Win64" target="_blank" rel="noopener nofollow noreferrer"&gt;https://apps.autodesk.com/RVT/ru/Detail/Index?id=6172229355984601104&amp;amp;appLang=en&amp;amp;os=Win64&lt;/A&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="original_a4bd7a3b-a63c-4398-afa1-40dc03b596bc_.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/955231iD4759EC3AF46625E/image-size/large?v=v2&amp;amp;px=999" role="button" title="original_a4bd7a3b-a63c-4398-afa1-40dc03b596bc_.png" alt="original_a4bd7a3b-a63c-4398-afa1-40dc03b596bc_.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 11:38:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/10560596#M31676</guid>
      <dc:creator>RevitBuilder43</dc:creator>
      <dc:date>2021-08-20T11:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12128134#M31677</link>
      <description>&lt;P&gt;Unfortunately, Autodesk has removed that app.&lt;BR /&gt;&lt;BR /&gt;Autodesk:&amp;nbsp; we need to have the ability to change tab colors !!!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 15:41:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12128134#M31677</guid>
      <dc:creator>JamesPark_Acad10</dc:creator>
      <dc:date>2023-07-26T15:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12128393#M31678</link>
      <description>&lt;P&gt;You could submit a wish for this functionality to the Revit Idea Station.&amp;nbsp;Whenever you require a new or enhanced Revit product or Revit API functionality, the Revit Idea Station is the place to go.&amp;nbsp;Please search there for a corresponding wish list entry for the suggested functionality and add your comments to it, or create a new one, if none already exists:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://forums.autodesk.com/t5/revit-ideas/idb-p/302" target="_blank"&gt;https://forums.autodesk.com/t5/revit-ideas/idb-p/302&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it is a pure API related wish, tag it as such:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://forums.autodesk.com/t5/revit-ideas/idb-p/302/tab/most-recent/label-name/api" target="_blank"&gt;https://forums.autodesk.com/t5/revit-ideas/idb-p/302/tab/most-recent/label-name/api&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ensuring that a wish gets as many votes as possible helps underline its importance to you and the rest of the developer community. The Revit Idea Station is currently one of the main driving input forces for Revit API enhancements. The Revit development team looks there. Your comment here in the discussion forum might be overlooked.&amp;nbsp;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 17:13:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12128393#M31678</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2023-07-26T17:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12283175#M31679</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, that's possible!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tab inactive.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1274847i627AFCC74666F9D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="tab inactive.png" alt="tab inactive.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tab mousemove.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1274848iA6F1C47D0F3EB6CF/image-size/large?v=v2&amp;amp;px=999" role="button" title="tab mousemove.png" alt="tab mousemove.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tab active.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1274849i1E3436656A2D1957/image-size/large?v=v2&amp;amp;px=999" role="button" title="tab active.png" alt="tab active.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2023 01:13:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12283175#M31679</guid>
      <dc:creator>Speed_CAD</dc:creator>
      <dc:date>2023-10-04T01:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12467654#M31680</link>
      <description>&lt;P&gt;PyRevit has a tool for colorize tabs,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Dec 2023 19:10:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12467654#M31680</guid>
      <dc:creator>rmaxiluna</dc:creator>
      <dc:date>2023-12-29T19:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12473401#M31681</link>
      <description>I believe the original question is to colorized the add-on tab itself, not opened Revit tabs. But this pyRevit feature is indeed a nice to have when you constantly have multiple .rvt .rfa files opened in a Revit session.</description>
      <pubDate>Wed, 03 Jan 2024 03:42:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12473401#M31681</guid>
      <dc:creator>tuah_edu</dc:creator>
      <dc:date>2024-01-03T03:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12711973#M31682</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/45203"&gt;@Speed_CAD&lt;/a&gt;&amp;nbsp;Ok, nice, but how? Can you share your code snippet please?&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 13:09:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12711973#M31682</guid>
      <dc:creator>maisoui</dc:creator>
      <dc:date>2024-04-16T13:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12845849#M31683</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/565482" target="_self"&gt;&lt;SPAN class=""&gt;maisoui&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, I hadn't seen your message. I had left aside the code to change the color of the Ribbon tabs, a week ago I resumed this development to customize the Ribbon tabs and added a command search engine, all of this to test and it is taking good shape. I am also customizing the document tabs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6355216867112w1004h540r756" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6355216867112" data-account="6057940548001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6057940548001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6355216867112w1004h540r756');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://forums.autodesk.com/t5/video/gallerypage/video-id/6355216867112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6355217550112w1004h540r186" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6355217550112" data-account="6057940548001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6057940548001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6355217550112w1004h540r186');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://forums.autodesk.com/t5/video/gallerypage/video-id/6355217550112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 05:20:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12845849#M31683</guid>
      <dc:creator>Speed_CAD</dc:creator>
      <dc:date>2024-06-18T05:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12855062#M31684</link>
      <description>&lt;P&gt;Well the answer to this a bit long, are your ready!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Short version&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;All in all, it is doable, but i wouldn't recommend much playing with UI styles.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on my personal experiments, I found that customizing view tabs in Autodesk Revit can enhance the design flow and make the UI more intuitive. I personally do it for myself satisfactory. Although there is no official documentation, these techniques can help users manage Styling the UI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Revit's UI is built with Windows Presentation Foundation (WPF), allowing for property changes such as background colors. The key to UI customization is the ApplicationTheme class in the UIFramework assembly, which controls most Revit themes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="StylingDifferences.gif" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1378963i0A360613EDF55DD8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="StylingDifferences.gif" alt="StylingDifferences.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I have documented what I was able to figure out, it was good experience to see all these UI controls how they behave and connected together.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Break Down Part A.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1378801i299C9571BCF24A4E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Break Down Part A.png" alt="Break Down Part A.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To change the color of View tabs, modify properties like CanvasActiveTabNormalBackgroundColor and CanvasActiveTabHoverBackgroundColor:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;var appTheme = UIFramework.ApplicationTheme.CurrentTheme;
appTheme.CanvasActiveTabNormalBackgroundColor = Colors.DarkRed;
appTheme.CanvasActiveTabHoverBackgroundColor = Colors.DeepPink;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For more details "&lt;STRONG&gt;Long version Answer&lt;/STRONG&gt;", refer to &lt;A href="https://sharpbim.hashnode.dev/styling-revit-ui" target="_blank" rel="noopener"&gt;my full article&lt;/A&gt; on this topic.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jun 2024 04:14:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12855062#M31684</guid>
      <dc:creator>Moustafa_K</dc:creator>
      <dc:date>2024-06-23T04:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12857926#M31685</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Can&lt;/SPAN&gt; &lt;SPAN class=""&gt;we&lt;/SPAN&gt; &lt;SPAN class=""&gt;find&lt;/SPAN&gt;&lt;SPAN&gt; out &lt;/SPAN&gt;&lt;SPAN class=""&gt;at&lt;/SPAN&gt; &lt;SPAN class=""&gt;least&lt;/SPAN&gt; &lt;SPAN class=""&gt;one&lt;/SPAN&gt; &lt;SPAN class=""&gt;of&lt;/SPAN&gt; &lt;SPAN class=""&gt;these&lt;/SPAN&gt; &lt;SPAN class=""&gt;"big&lt;/SPAN&gt; &lt;SPAN class=""&gt;reasons&lt;/SPAN&gt;&lt;SPAN class=""&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;?&lt;/SPAN&gt; &lt;SPAN class=""&gt;Reasons&lt;/SPAN&gt; &lt;SPAN class=""&gt;that&lt;/SPAN&gt; &lt;SPAN class=""&gt;run&lt;/SPAN&gt; &lt;SPAN class=""&gt;counter&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt;&lt;SPAN&gt; the &lt;/SPAN&gt;&lt;SPAN class=""&gt;interests&lt;/SPAN&gt;&lt;SPAN&gt; of a &lt;/SPAN&gt;&lt;SPAN class=""&gt;large&lt;/SPAN&gt; &lt;SPAN class=""&gt;number&lt;/SPAN&gt;&lt;SPAN&gt; of &lt;/SPAN&gt;&lt;SPAN class=""&gt;users&lt;/SPAN&gt;&lt;SPAN class=""&gt;?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 12:35:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12857926#M31685</guid>
      <dc:creator>ankofl</dc:creator>
      <dc:date>2024-06-24T12:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12858058#M31686</link>
      <description>&lt;P&gt;That is something you would have to discuss with the product managers and UI designers, not with the programmers, and this is not an appropriate place to do so. Please discuss all UI related questions in one of the non-API-related forums:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/this-forum-is-for-revit-api-programming-questions-not-for/td-p/5607765" target="_blank"&gt;https://forums.autodesk.com/t5/revit-api-forum/this-forum-is-for-revit-api-programming-questions-not-for/td-p/5607765&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 13:29:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12858058#M31686</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2024-06-24T13:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12858184#M31687</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/549406"&gt;@Moustafa_K&lt;/a&gt;&amp;nbsp;!&lt;BR /&gt;&lt;BR /&gt;&lt;A title="Resetting the tab color" href="https://sharpbim.hashnode.dev/styling-revit-ui" target="_blank" rel="noopener"&gt;It worth noting, Tab View has a trigger that resets the style to its default color. This means upon switching to another view Tap the colors are rest. we can over come this case by using the ViewActivated and apply the colors again to the default theme.&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;May&lt;/SPAN&gt;&lt;SPAN&gt; I &lt;/SPAN&gt;&lt;SPAN class=""&gt;ask&lt;/SPAN&gt; &lt;SPAN class=""&gt;you&lt;/SPAN&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;SPAN class=""&gt;explain&lt;/SPAN&gt; &lt;SPAN class=""&gt;how&lt;/SPAN&gt;&lt;SPAN&gt; you &lt;/SPAN&gt;&lt;SPAN class=""&gt;can&lt;/SPAN&gt; &lt;SPAN class=""&gt;specify&lt;/SPAN&gt;&lt;SPAN&gt; the &lt;/SPAN&gt;&lt;SPAN class=""&gt;color&lt;/SPAN&gt;&lt;SPAN&gt; of a &lt;/SPAN&gt;&lt;SPAN class=""&gt;tab&lt;/SPAN&gt; &lt;SPAN class=""&gt;depending&lt;/SPAN&gt; &lt;SPAN class=""&gt;on&lt;/SPAN&gt;&lt;SPAN&gt; the &lt;/SPAN&gt;&lt;SPAN class=""&gt;project&lt;/SPAN&gt; &lt;SPAN class=""&gt;associated&lt;/SPAN&gt; &lt;SPAN class=""&gt;with&lt;/SPAN&gt; &lt;SPAN class=""&gt;it&lt;/SPAN&gt;&lt;SPAN class=""&gt;?&lt;/SPAN&gt; &lt;SPAN class=""&gt;I&lt;/SPAN&gt; &lt;SPAN class=""&gt;know&lt;/SPAN&gt; &lt;SPAN class=""&gt;that&lt;/SPAN&gt; &lt;SPAN class=""&gt;this&lt;/SPAN&gt;&lt;SPAN&gt; is &lt;/SPAN&gt;&lt;SPAN class=""&gt;possible&lt;/SPAN&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt; &lt;SPAN class=""&gt;because&lt;/SPAN&gt;&lt;SPAN&gt; I have &lt;/SPAN&gt;&lt;SPAN class=""&gt;seen&lt;/SPAN&gt; &lt;SPAN class=""&gt;similar&lt;/SPAN&gt; &lt;SPAN class=""&gt;functionality&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt; &lt;SPAN class=""&gt;other&lt;/SPAN&gt; &lt;SPAN class=""&gt;programs&lt;/SPAN&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt; &lt;SPAN class=""&gt;but&lt;/SPAN&gt; &lt;SPAN class=""&gt;perhaps&lt;/SPAN&gt; &lt;SPAN class=""&gt;you&lt;/SPAN&gt; &lt;SPAN class=""&gt;have&lt;/SPAN&gt; &lt;SPAN class=""&gt;thoughts&lt;/SPAN&gt; &lt;SPAN class=""&gt;on&lt;/SPAN&gt; &lt;SPAN class=""&gt;this&lt;/SPAN&gt;&lt;SPAN class=""&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ankofl_1-1719238478460.png" style="width: 532px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1379319i154C39BA9AE1E314/image-dimensions/532x133?v=v2" width="532" height="133" role="button" title="ankofl_1-1719238478460.png" alt="ankofl_1-1719238478460.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;I&lt;/SPAN&gt; &lt;SPAN class=""&gt;would&lt;/SPAN&gt; &lt;SPAN class=""&gt;like&lt;/SPAN&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;SPAN class=""&gt;set&lt;/SPAN&gt;&lt;SPAN&gt; the &lt;/SPAN&gt;&lt;SPAN class=""&gt;color&lt;/SPAN&gt;&lt;SPAN&gt; of &lt;/SPAN&gt;&lt;SPAN class=""&gt;these&lt;/SPAN&gt; &lt;SPAN class=""&gt;panels&lt;/SPAN&gt; &lt;SPAN class=""&gt;not&lt;/SPAN&gt;&lt;SPAN&gt; to be &lt;/SPAN&gt;&lt;SPAN class=""&gt;common&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;all&lt;/SPAN&gt; &lt;SPAN class=""&gt;open&lt;/SPAN&gt; &lt;SPAN class=""&gt;projects&lt;/SPAN&gt; &lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;i.e.&lt;/SPAN&gt; &lt;SPAN class=""&gt;not&lt;/SPAN&gt; &lt;SPAN class=""&gt;depending&lt;/SPAN&gt;&lt;SPAN&gt; on &lt;/SPAN&gt;&lt;SPAN class=""&gt;whether&lt;/SPAN&gt;&lt;SPAN&gt; the &lt;/SPAN&gt;&lt;SPAN class=""&gt;panel&lt;/SPAN&gt;&lt;SPAN&gt; is &lt;/SPAN&gt;&lt;SPAN class=""&gt;active&lt;/SPAN&gt; &lt;SPAN class=""&gt;or&lt;/SPAN&gt; &lt;SPAN class=""&gt;selected&lt;/SPAN&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt; &lt;SPAN class=""&gt;but&lt;/SPAN&gt; &lt;SPAN class=""&gt;on&lt;/SPAN&gt; &lt;SPAN class=""&gt;which&lt;/SPAN&gt; &lt;SPAN class=""&gt;project&lt;/SPAN&gt;&lt;SPAN&gt; it is&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;Thanks&lt;/SPAN&gt;&lt;SPAN class=""&gt;!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 14:17:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12858184#M31687</guid>
      <dc:creator>ankofl</dc:creator>
      <dc:date>2024-06-24T14:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to change Revit ribbon tab color?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12858524#M31688</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11836042" target="_self"&gt;&lt;SPAN class=""&gt;ankofl&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To do that requires more depth, because it is not possible to do it through the native properties exposed by the Revit API. Here I have placed two videos where you can see what is possible to do, but I am still testing, that is why I have not uploaded code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Tab Color" href="https://forums.autodesk.com/t5/forums/forumtopicprintpage/board-id/160/message-id/79613" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/forums/forumtopicprintpage/board-id/160/message-id/79613&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 17:24:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-change-revit-ribbon-tab-color/m-p/12858524#M31688</guid>
      <dc:creator>Speed_CAD</dc:creator>
      <dc:date>2024-06-24T17:24:17Z</dc:date>
    </item>
  </channel>
</rss>

