Forum Discussion
Power BI Report Server Branding Font Color
- 8 years ago
Hi guys,
I figured it out. It's tied together with the button font color. Change it in branding package json file, object attribute --> "primaryContrast":"#fff". change it to #000 black or any other color will do. :)
cheers.
Hi joiecy,
Can you share your brand package file with us?
You can go through this document to know brand package define: Branding the web portal.
Best Regards,
Qiuyun Yu
hi,
my files as below.
metadata.xml
<?xml version="1.0" encoding="utf-8"?>
<SystemResourcePackage xmlns="http://schemas.microsoft.com/sqlserver/reporting/2016/01/systemresourcepackagemetadata"
type="UniversalBrand"
version="2.0.2"
name="Report"
>
<Contents>
<Item key="colors" path="colors.json" />
<Item key="logo" path="logo.png" />
</Contents>
</SystemResourcePackage>
colors.json
{
"name":"Default brand",
"version":"1.0",
"interface":{
"primary":"#FF7800",
"primaryAlt":"#ffa04d",
"primaryAlt2":"#cc5f00",
"primaryAlt3":"#ff9233",
"primaryAlt4":"#00abee",
"primaryContrast":"#fff",
"secondary":"#12368E",
"secondaryAlt":"#444",
"secondaryAlt2":"#555",
"secondaryAlt3":"#777",
"secondaryContrast":"#fff",
"neutralPrimary":"#fff",
"neutralPrimaryAlt":"#f4f4f4",
"neutralPrimaryAlt2":"#e3e3e3",
"neutralPrimaryAlt3":"#c8c8c8",
"neutralPrimaryContrast":"#000",
"neutralSecondary":"#fff",
"neutralSecondaryAlt":"#eaeaea",
"neutralSecondaryAlt2":"#b7b7b7",
"neutralSecondaryAlt3":"#acacac",
"neutralSecondaryContrast":"#000",
"neutralTertiary":"#b7b7b7",
"neutralTertiaryAlt":"#f8f8f8",
"neutralTertiaryAlt2":"#eaeaea",
"neutralTertiaryAlt3":"#fff",
"neutralTertiaryContrast":"#222",
"danger":"#bb2124",
"success":"#2b3",
"warning":"#f0ad4e",
"info":"#5bc0de",
"dangerContrast":"#fff",
"successContrast":"#fff",
"warningContrast":"#fff",
"infoContrast":"#fff",
"kpiGood":"#4fb443",
"kpiBad":"#de061a",
"kpiNeutral":"#d9b42c",
"kpiNone":"#333",
"kpiGoodContrast":"#fff",
"kpiBadContrast":"#fff",
"kpiNeutralContrast":"#fff",
"kpiNoneContrast":"#fff"
},
"theme":{
"dataPoints":[
"#0072c6",
"#f68c1f",
"#269657",
"#dd5900",
"#5b3573",
"#22bdef",
"#b4009e",
"#008274",
"#fdc336",
"#ea3c00",
"#00188f",
"#9f9f9f"
],
"good":"#85ba00",
"bad":"#e90000",
"neutral":"#edb327",
"none":"#333",
"background":"#fff",
"foreground":"#222",
"mapBase":"#00aeef",
"panelBackground":"#f6f6f6",
"panelForeground":"#222",
"panelAccent":"#00aeef",
"tableAccent":"#00aeef",
"altBackground":"#f6f6f6",
"altForeground":"#000",
"altMapBase":"#f68c1f",
"altPanelBackground":"#235378",
"altPanelForeground":"#fff",
"altPanelAccent":"#fdc336",
"altTableAccent":"#fdc336"
}
}