New-UDTab Font color

I was wondering if there was any way to change the font color on the tabs that aren’t active. I’m using Azure theme .

Hey Shaun, guess you could report this as a bug on the theme on the guthub page…this is all the CSS settings relating to the tabs in the Azure theme:-

'.tabs'= @{
          'color'= "#FFFFFF"
          'background-color' = "#252525"
      }
      '.tabs .tab'= @{
          'color' = "#252525"
      }

      '.tabs .tab a:hover' = @{
          'background-color' = "#252525"
          'color'= "#FFFFFF"
      }

      '.tabs .tab a.active'= @{
          'background-color' = "#1c1c1c"
          'color'= "#FFFFFF"
      }
      '.tabs .tab a:focus.active'= @{
          'background-color' = "#252525"
          'color'= "#FFFFFF"
      }
      '.tabs .indicator'= @{
          'background-color' = "#FFFFFF"
              }
      '.tabs .tab a' = @{
          'color' = "#FFFFFF"
      }

So you can easily create a custom theme adding different colour scheme to these CSS tab settings, and make the Azure theme the parent theme…https://docs.universaldashboard.io/look-and-feel/themes#creating-child-themes

Take a look at this entry from “Mordecai”, this helped me
https://forums.ironmansoftware.com/t/setting-the-font-color-and-bachground-color-of-new-udtab-new-udtabcontainer/2290/5

1 Like