Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
DougSheehan
Contributor II
Contributor II

Theme

I am trying to get a theme where all the text color is black, and not grayscale. I have the 4 files and zipped them and loaded them. It says they loaded correctly, but it doesn’t seem to work. Can i send you the zipped file and you can tell me what I did wrong?

Labels (1)
  • SaaS

2 Solutions

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You close this thread yourself by clicking the "Accept as Solution" on one of the answers.  If none of the answers match your actual solution, it's customary to post what you actually did and mark your own post as solution.

-Rob

View solution in original post

DougSheehan
Contributor II
Contributor II
Author

I had a bug in my theme.json file.   When I fixed that, my problem disappeared.

View solution in original post

6 Replies
DougSheehan
Contributor II
Contributor II
Author

Here is my themes.json file contents (the courier font is working but not the text color):

{
  "_inherit": false,
  "_variables": {
    "@black": "#000000",
    "@blue": "0000FF"
  },
  "customStyles": [
    {
      "cssRef": "courier.css",
      "classRef": "theme-style"
    }
  ],
  "fontFamily": "Courier",
  "color": "@blue",
  "font-weight": "900",
  "object": {
    "title": {
      "main": {
        "fontSize": "28px",
        "fontFamily": "Courier",
        "color": "@blue"
      }
    },
    "label": {
      "name": {
        "fontFamily": "Courier",
        "color": "@blue"
      },
      "value": {
        "fontFamily": "Courier",
        "color": "@blue"
      }
    },
    "palettes": {
      "fontFamily": "Courier",
      "color": "@blue"
    },
    "data": {
      "fontFamily": "Courier",
        "color": "@blue"
    },
    "content": {
      "fontFamily": "Courier",
      "color": "@blue"
   
    }
  }
}
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You might try building it on https://sensetheme.com/ and using the built theme or comparing what sensetheme generates against your manual changes. 

-Rob

Sabrina_V
Partner - Creator II
Partner - Creator II

Hello,

 

You can try to use the extension Beautiful me. It helps me to change the text color in my app.

It generates css code => you can test it in the multi KPI object before write it in your css file.

DougSheehan
Contributor II
Contributor II
Author

My problem is solved.  Close the case.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You close this thread yourself by clicking the "Accept as Solution" on one of the answers.  If none of the answers match your actual solution, it's customary to post what you actually did and mark your own post as solution.

-Rob

DougSheehan
Contributor II
Contributor II
Author

I had a bug in my theme.json file.   When I fixed that, my problem disappeared.