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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
esmb0303
New Member

Theme issues, especially with slicers

Hello,

 

I'm currently working on building a theme for my company's PowerBI reports. All of them are in dark mode, and I'm basically just converting it to lightmode. 

 

While writing a theme.json file, I've hit a wall. Every element in the report can be changed, except for the slicers. They somehow remain black. Using a wildcard also doesn't work.

 

The Report itself is looking for some kind of "default" theme but I cannot configure it with the theme.

esmb0303_0-1751357095930.png

esmb0303_1-1751357160238.png

Only a super minimal theme works, the complex one I made doesn't.

 

What I've tried:

- Downloaded the json schema and validated my file

- wildcards in all places, doesn't apply sadly

- Searched for answers online

 

Slicer part:

"visualStyles": {
...
"slicer": {
      "*": {
        "general": [
          {
            "responsive": true,
            "keepLayerOrder": true,
            "outlineColor": { "solid": { "color": "#FFFFFF" } },
            "outlineWeight": 1,
            "orientation": 0
          }
        ],
        "padding": [{ "bottom": 5, "left": 5, "right": 5, "top": 10 }],
        "pendingChangesIcon": [
          {
            "color": { "solid": { "color": "#FFFFFF" } },
            "position": "left",
            "show": true,
            "showTooltip": false,
            "size": 11,
            "transparency": 0
          }
        ],
        "spacing": [
          {
            "customizeSpacing": true,
            "spaceBelowSubTitle": 5,
            "spaceBelowTitle": 5,
            "spaceBelowTitleArea": 5,
            "verticalSpacing": 5
          }
        ],
        "selection": [
          {
            "selectAllCheckboxEnabled": true,
            "singleSelect": false,
            "strictSingleSelect": false
          }
        ],
        "header": [
          {
            "show": false,
            "fontColor": { "solid": { "color": "#000000" } },
            "background": { "solid": { "color": "#F8F8F8" } },
            "showRestatement": true,
            "outline": "None",
            "outlineStyle": 15,
            "textSize": 12,
            "fontFamily": "MB Corpo S Text Office Light",
            "bold": false,
            "italic": false,
            "underline": false
          }
        ],
        "divider": [
          {
            "color": { "solid": { "color": "#000000" } },
            "ignorePadding": false,
            "show": false,
            "style": "solid",
            "width": 2
          }
        ],
        "items": [
          {
            "accessibilityContrastProperties": true,
            "expandCollapseToggleType": 2,
            "fontColor": { "solid": { "color": "#000000" } },
            "background": { "solid": { "color": "#F8F8F8" } },
            "padding": 2,
            "outline": "None",
            "outlinestyle": 0,
            "steppedLayoutIndentation": 12,
            "textSize": 11,
            "fontFamily": "MB Corpo S Text Office Light",
            "bold": false,
            "italic": false,
            "underline": false
          }
        ],
        "date": [
          {
            "background": { "solid": { "color": "#F8F8F8" } },
            "bold": false,
            "fontColor": { "solid": { "color": "#000000" } },
            "fontFamily": "MB Corpo S Text Office Light",
            "hideDatePickerButton": false,
            "italic": false,
            "textSize": 11,
            "underline": false
          }
        ],
        "numericInputStyle": [
          {
            "background": { "solid": { "color": "#F8F8F8" } },
            "bold": false,
            "fontColor": { "solid": { "color": "#000000" } },
            "fontFamily": "MB Corpo S Text Office Light",
            "italic": false,
            "textSize": 11,
            "underline": false
          }
        ],
        "searchBox": [
          {
            "background": { "solid": { "color": "#F8F8F8" } },
            "outline": "None",
            "outlineStyle": 1,
            "borderColor": { "solid": { "color": "#000000" } }
          }
        ],
        "slider": [
          {
            "handleBorderColor": { "solid": { "color": "#000000" } },
            "color": { "solid": { "color": "#0078D6" } },
            "secondaryLineColor": { "solid": { "color": "#FFFFFF" } },
            "handleFillColor": { "solid": { "color": "#FFFFFF" } },
            "show": true
          }
        ],
        "title": [
          {
            "show": true,
            "titleWrap": true,
            "fontColor": { "solid": { "color": "#000000" } },
            "background": { "solid": { "color": "#DBDBDB" } },
            "alignment": "left",
            "fontSize": 12,
            "fontFamily": "MB Corpo S Text Office Light",
            "bold": false,
            "italic": false,
            "underline": false
          }
        ],
        "subTitle": [
          {
            "alignment": "left",
            "bold": false,
            "fontColor": { "solid": { "color": "#000000" } },
            "fontFamily": "MB Corpo S Text Office Light",
            "italic": false,
            "show": false,
            "fontSize": 12,
            "underline": false,
            "titleWrap": true
          }
        ],
        "background": [
          {
            "show": true,
            "color": { "solid": { "color": "#DBDBDB" } },
            "transparency": 0
          }
        ],
        "lockAspect": [{ "show": true }],
        "border": [
          {
            "color": { "solid": { "color": "#696969" } },
            "show": false,
            "radius": 2
          }
        ],
        "dropShadow": [
          {
            "show": false,
            "color": { "solid": { "color": "#696969" } },
            "position": "Outer",
            "preset": "Bottom",
            "shadowSpread": 2,
            "shadowBlur": 0,
            "angle": 0,
            "shadowDistance": 0,
            "transparency": 0
          }
        ],
        "visualTooltip": [
          {
            "show": true,
            "type": "Canvas",
            "titleFontColor": { "solid": { "color": "#FFFFFF" } },
            "valueFontColor": { "solid": { "color": "#FFFFFF" } },
            "actionFontColor": { "solid": { "color": "#FFFFFF" } },
            "fontSize": 9,
            "fontFamily": "MB Corpo S Text Office Light",
            "bold": false,
            "italic": false,
            "underline": false,
            "background": { "solid": { "color": "#000000" } },
            "transparency": 10,
            "page": "Auto"
          }
        ],
        "visualHeader": [
          {
            "show": true,
            "background": { "solid": { "color": "#F8F8F8" } },
            "border": { "solid": { "color": "#FFFFFF" } },
            "transparency": 0,
            "foreground": { "solid": { "color": "#000000" } },
            "showVisualInformationButton": true,
            "showVisualWarningButton": true,
            "showVisualErrorButton": true,
            "showDrillRoleSelector": true,
            "showDrillUpButton": true,
            "showDrillToggleButton": true,
            "showDrillDownLevelButton": true,
            "showDrillDownExpandButton": true,
            "showPinButton": true,
            "showFocusModeButton": true,
            "showFilterRestatementButton": true,
            "showSeeDataLayoutToggleButton": true,
            "showOptionsMenu": true,
            "showTooltipButton": true
          }
        ],
        "visualHeaderTooltip": [
          {
            "titleFontColor": { "solid": { "color": "#000000" } },
            "fontSize": 9,
            "fontFamily": "MB Corpo S Text Office Light",
            "background": { "solid": { "color": "#FFFFFF" } },
            "transparency": 0
          }
        ]
      }
    },
...

 

1 ACCEPTED SOLUTION
audreygerred
Super User
Super User

Hi! I am a huge fan of using the theme generator by Power BI Tips: PowerBI.tips





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

8 REPLIES 8
esmb0303
New Member

@audreygerred thanks! That site looks great! I'll definately give it a try 🙂

Hi @esmb0303,

 

I wanted to check in your situation regarding the issue. Have you resolved it? Should you have any further questions, feel free to reach out.
Thank you for being a part of the Microsoft Fabric Community Forum!

esmb0303
New Member

Hey @v-sgandrathi, thank you for your help! I was on vacation and as this is a work account, it was too. Sorry for the late response.

 

I've tried adding your solution to the slicer/* section but am now unable to import it into pbi.

"slicer": {
      "*": {
        "stylePreset": "Default",
        "general": [
          {
            "responsive": true,
            "keepLayerOrder": true,
            "outlineColor": { "solid": { "color": "#FFFFFF" } },
            "outlineWeight": 1,
            "orientation": 0
          }
        ],
        "padding": [{ "bottom": 5, "left": 5, "right": 5, "top": 10 }],
        "pendingChangesIcon": [
          {
            "color": { "solid": { "color": "#FFFFFF" } },
            "position": "left",
            "show": true,
            "showTooltip": false,
            "size": 11,
            "transparency": 0
          }
        ],
        "filterPane": {
          "background": { "color": "#FFFFFF" },
          "foreground": { "color": "#000000" }
        },
        "filterCard": {
          "background": { "color": "#F8F8F8" },
          "foreground": { "color": "#000000" }
        },
        "spacing": [

 

I cannot find another point to insert it. My schema validator also says, that it should be an array. Adding it into the general array, results in the same error:

esmb0303_0-1753346683062.png

 

Not sure if I misunderstood your instructions though, thank you for your help!

audreygerred
Super User
Super User

Hi! I am a huge fan of using the theme generator by Power BI Tips: PowerBI.tips





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





v-sgandrathi
Community Support
Community Support

Hi @esmb0303,

Thank you for providing the detailed context and your current theme JSON.

The error message “Style preset not found” typically occurs when the selected visual, such as a slicer, refers to a style preset (like “Default”) that isn’t included in your custom theme file.

To resolve this, define the "Default" style preset under the "stylePresets" section for slicers and make sure your visual is referencing it using "stylePreset": "Default" within the visualStyles block.

Here’s a straightforward solution:

  1. Add 
    "stylePreset": "Default",
    inside your visualStyles.slicer["*"].

Then, add a new section for the style preset outside of visualStyles.

"stylePresets": {
"slicer": {
"Default": {
"items": {
"background": { "solid": { "color": "#F8F8F8" } },
"fontColor": { "solid": { "color": "#000000" } },
"textSize": 11
},
"background": {
"show": true,
"color": { "solid": { "color": "#DBDBDB" } },
"transparency": 0
}
}
}
}

This ensures Power BI can find and apply the expected style when rendering slicers.

Thank you.

Hi @esmb0303,

 

Just wanted to check regarding your question. We haven’t heard back and want to ensure you're not stuck. If you need anything else or have updates to share, we’re here to help!

 

Thank you.

Hi @esmb0303,

 

Hope you're doing well! Just following up to see if the response we shared was helpful. If you have any further questions or need clarification, we’re here to assist.

Thank you.

Hi @esmb0303,

 

Just a quick check-in! Has your issue been resolved with the information we shared? We’d be delighted to help further if needed.

Thank you.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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