Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Custom Theme

Hi guys,

 

I tried importing a custom theme for my company, but keep getting an error message that it doesn't work. Here's the code:

    {
        "name": "Company",
        "dataColors": ["#015174", "#BFB4AA", "#D4CCC7", "#F8C276", "#ABBCC9", "#AAA093", "#DFBACC2","#A0A0A0"],
        "background":"#FFFFFF",
        "foreground": "#ee7799",
        "tableAccent": "#990011"
    }

Any ideas what went wrong?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

After play with your code, I found you are use a invalid color code, please fix bold high light part with a valid color code: (6 bit hex characters)

 

{
   "name":"Company",
   "dataColors":[
      "#015174",
      "#BFB4AA",
      "#D4CCC7",
      "#F8C276",
      "#ABBCC9",
      "#AAA093",
      "#DFBACC2",
      "#A0A0A0"
   ],
   "background":"#FFFFFF",
   "foreground":"#ee7799",
   "tableAccent":"#990011"
}

 

 

Regards,
Xiaxin Sheng

 

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

 

After play with your code, I found you are use a invalid color code, please fix bold high light part with a valid color code: (6 bit hex characters)

 

{
   "name":"Company",
   "dataColors":[
      "#015174",
      "#BFB4AA",
      "#D4CCC7",
      "#F8C276",
      "#ABBCC9",
      "#AAA093",
      "#DFBACC2",
      "#A0A0A0"
   ],
   "background":"#FFFFFF",
   "foreground":"#ee7799",
   "tableAccent":"#990011"
}

 

 

Regards,
Xiaxin Sheng

 

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors