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

Background Color in qlik sense

Hi,

         I need to change Background color in Qlik sense Sheet. While Searching i found procedure to set only black color. apart from  White and Black colors how can i set others colors.

6 Replies
koushik_btech20
Creator
Creator

I would look into the highvis theme. I think you can extract it if you have Sense Server. Search for the highvis.zip files.

koushik_btech20
Creator
Creator

Refer below link,

More Qlik Sense Themes

jayaseelan
Creator III
Creator III
Author

Thanks for your reply,

               Using highvis.zip i can able to set only black color. Actually i need to set other colors also.

koushik_btech20
Creator
Creator

You will have to go with a custom style sheet/ theme to achieve this.

ajaykakkar93
Specialist III
Specialist III

you can try this extension Qlik Branch

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

syedmazhar
Contributor III
Contributor III

Add a multi KPI on your sheet and past the below code if you to change the background color of your sheet.

The below code will change the sheet color and also it will make MultiKPI object transparent. 

 

 

.qv-panel-sheet {
background: linear-gradient(0deg, rgba(253,253,253,1) 0%, rgba(253,253,253,1) 0%);}

.qv-object-qlik-multi-kpi { display:none; }
.qv-mode-edit .qv-object-qlik-multi-kpi { display:flex; }

 

Use the below code if you want to change the filter color.


.qv-listbox .serverLocked, .qv-listbox .serverSelected, .qv-listbox li.selected {
background-color: #7500c0;
color: #fff;
border-bottom: 1px solid ##7500c0;}