<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Custom Theme Help: Flexible Measure Colors &amp;amp; Axis Tick Styling in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Custom-Theme-Help-Flexible-Measure-Colors-amp-Axis-Tick-Styling/m-p/2524729#M106935</link>
    <description>&lt;P&gt;Hi Qlik Community,&lt;/P&gt;
&lt;P&gt;I'm customizing a Qlik theme and have two questions I could really use help with:&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;1. How can I make KPI/measure colors flexible in a custom theme?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;I want to define a default measure color (e.g., white for dark mode), but still allow designers to change the measure color in the property panel. Currently, it stays fixed and cannot be overridden.&lt;/P&gt;
&lt;H4&gt;What I tried in &lt;CODE&gt;theme.json&lt;/CODE&gt;:&lt;/H4&gt;
&lt;PRE&gt;&lt;CODE class="language-json"&gt;"object": {
  "kpi": {
    "value": {
      "color": "@measureColor"
    }
  }
},
"color": {
  "palette": {
    "measureColor": "#FFFFFF"
  }
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H4&gt;What I tried in &lt;CODE&gt;theme.css&lt;/CODE&gt;:&lt;/H4&gt;
&lt;PRE&gt;&lt;CODE class="language-css"&gt;.qv-object * {
  color: #FFFFFF !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But this seems to override everything and makes the measure color uneditable in the UI. What's the correct way to define a default color &lt;STRONG&gt;without locking it&lt;/STRONG&gt;?&lt;/P&gt;
&lt;HR /&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;2. How do I style the axis tick values (not labels or titles)?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;I'd like to set axis tick numbers (e.g., 0, 5, 10…) to a specific color like &lt;CODE&gt;#E0E0E0&lt;/CODE&gt;, but keep titles/labels untouched.&lt;/P&gt;
&lt;H4&gt;What I tried in &lt;CODE&gt;theme.css&lt;/CODE&gt;:&lt;/H4&gt;
&lt;PRE&gt;&lt;CODE class="language-css"&gt;.qv-axis text,
text.qv-axis {
  fill: #E0E0E0 !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also tried:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class="language-css"&gt;.qv-object-axis text {
  fill: #E0E0E0 !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Neither worked. Does anyone know the right selector or workaround for targeting just tick values?&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;I’ll include a screenshot for clarity.&lt;BR /&gt;Thanks so much in advance!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="InsightPilot_0-1752866351999.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182202i2C3F782F30454E52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="InsightPilot_0-1752866351999.png" alt="InsightPilot_0-1752866351999.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Jul 2025 20:34:54 GMT</pubDate>
    <dc:creator>InsightPilot</dc:creator>
    <dc:date>2025-07-22T20:34:54Z</dc:date>
    <item>
      <title>Custom Theme Help: Flexible Measure Colors &amp; Axis Tick Styling</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-Theme-Help-Flexible-Measure-Colors-amp-Axis-Tick-Styling/m-p/2524729#M106935</link>
      <description>&lt;P&gt;Hi Qlik Community,&lt;/P&gt;
&lt;P&gt;I'm customizing a Qlik theme and have two questions I could really use help with:&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;1. How can I make KPI/measure colors flexible in a custom theme?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;I want to define a default measure color (e.g., white for dark mode), but still allow designers to change the measure color in the property panel. Currently, it stays fixed and cannot be overridden.&lt;/P&gt;
&lt;H4&gt;What I tried in &lt;CODE&gt;theme.json&lt;/CODE&gt;:&lt;/H4&gt;
&lt;PRE&gt;&lt;CODE class="language-json"&gt;"object": {
  "kpi": {
    "value": {
      "color": "@measureColor"
    }
  }
},
"color": {
  "palette": {
    "measureColor": "#FFFFFF"
  }
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H4&gt;What I tried in &lt;CODE&gt;theme.css&lt;/CODE&gt;:&lt;/H4&gt;
&lt;PRE&gt;&lt;CODE class="language-css"&gt;.qv-object * {
  color: #FFFFFF !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But this seems to override everything and makes the measure color uneditable in the UI. What's the correct way to define a default color &lt;STRONG&gt;without locking it&lt;/STRONG&gt;?&lt;/P&gt;
&lt;HR /&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;2. How do I style the axis tick values (not labels or titles)?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;I'd like to set axis tick numbers (e.g., 0, 5, 10…) to a specific color like &lt;CODE&gt;#E0E0E0&lt;/CODE&gt;, but keep titles/labels untouched.&lt;/P&gt;
&lt;H4&gt;What I tried in &lt;CODE&gt;theme.css&lt;/CODE&gt;:&lt;/H4&gt;
&lt;PRE&gt;&lt;CODE class="language-css"&gt;.qv-axis text,
text.qv-axis {
  fill: #E0E0E0 !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also tried:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class="language-css"&gt;.qv-object-axis text {
  fill: #E0E0E0 !important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Neither worked. Does anyone know the right selector or workaround for targeting just tick values?&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;I’ll include a screenshot for clarity.&lt;BR /&gt;Thanks so much in advance!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="InsightPilot_0-1752866351999.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182202i2C3F782F30454E52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="InsightPilot_0-1752866351999.png" alt="InsightPilot_0-1752866351999.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 20:34:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-Theme-Help-Flexible-Measure-Colors-amp-Axis-Tick-Styling/m-p/2524729#M106935</guid>
      <dc:creator>InsightPilot</dc:creator>
      <dc:date>2025-07-22T20:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Theme Help: Flexible Measure Colors &amp; Axis Tick Styling</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-Theme-Help-Flexible-Measure-Colors-amp-Axis-Tick-Styling/m-p/2526356#M107192</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino"&gt;Could you please suggest what is the key objective of doing these via the Theme ? isn't it there or doable with the default options which we have.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="georgia,palatino"&gt;If you can share some insights about your task, it would help me to share more details.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 06:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-Theme-Help-Flexible-Measure-Colors-amp-Axis-Tick-Styling/m-p/2526356#M107192</guid>
      <dc:creator>Kaushik2020</dc:creator>
      <dc:date>2025-08-06T06:56:55Z</dc:date>
    </item>
  </channel>
</rss>

