<?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 Re: Custom color palette in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Custom-color-palette/m-p/1690727#M52773</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you use a page to validate JSON, like&amp;nbsp;&lt;A href="https://jsonlint.com/" target="_blank"&gt;https://jsonlint.com/&lt;/A&gt;, you will notice that the row above palettes you are missing a ",".&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"dataColors": {
    "primaryColor": "@greenColor"
  }
  "palettes" : {&lt;/LI-CODE&gt;&lt;P&gt;should be&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"dataColors": {
    "primaryColor": "@greenColor"
  },
  "palettes" : {&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to change that and let me know how it goes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Patrik.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Apr 2020 11:29:42 GMT</pubDate>
    <dc:creator>Patrik_Lundblad</dc:creator>
    <dc:date>2020-04-03T11:29:42Z</dc:date>
    <item>
      <title>Custom color palette</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-color-palette/m-p/1690592#M52759</link>
      <description>&lt;P&gt;I tried to follow&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/February2020/Subsystems/Extensions/Content/Sense_Extensions/CustomThemes/custom-themes-color-examples.htm" target="_self"&gt;these steps&lt;/A&gt;&amp;nbsp; to create a custom color palette, but it did't pick up any change in colors. The color theme is available in the app options. I'm not sure if i have the correct contents in the json file or just an Qlik version that doesn't support it.&lt;/P&gt;&lt;P&gt;I'm using Qlik Sense 13.9.1 (about a year behind now)&lt;/P&gt;&lt;P&gt;The associated files are below. I have only changed the first 7 colors, everything else should be the same as the files in the examples.&lt;/P&gt;&lt;P&gt;Can anyone help me?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;custom-theme.qext&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
	"name": "Custom theme",
	"description": "Custom theme",
	"type": "theme",
	"version": "1.0.0",
	"author": "Qlik"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;theme.json:&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  "_inherit": true,
  "_variables" : {
    "@greenColor" : "#61a729",
    "@text": "#4c4c4c"
  },
  "color": "@text",
  "fontSize": "12px",
  "object" : {
    "title": {
      "main": {
        "fontSize" : "16px"
      }
    }
  },
  "dataColors": {
    "primaryColor": "@greenColor"
  }
  "palettes" : {
  "data" : [
    {
      "name": "Dark colors",
      "translation": "Dark colors",
      "propertyValue": "12",
      "type": "row",
      "scale": [
        "#F2B999",
		"#FF7841",
		"#920024",
		"#3C0C44",
		"#671D9D",
		"#A3CAB8",
		"#LELELE",
        "#333333",
        "#262626",
        "#1A1A1A",
        "#0D0D0D",
        "#000000"
      ]
    },
    {
      "name": "Light colors",
      "translation": "Light colors",
      "propertyValue": "11",
      "type": "row",
      "scale": [
        "#F2B999",
		"#FF7841",
		"#920024",
		"#3C0C44",
		"#671D9D",
		"#A3CAB8",
		"#LELELE",
        "#B3B3B3",
        "#A6A6A6",
        "#999999",
        "#8C8C8C"
      ]
    }
  ],
  "ui": [
    {
      "name": "Custom theme",
      "colors": [
		"#F2B999",
		"#FF7841",
		"#920024",
		"#3C0C44",
		"#671D9D",
		"#A3CAB8",
		"#LELELE",
        "#808080",
        "#737373",
        "#595959",
        "#474747",
        "#404040",
        "#262626",
        "#0D0D0D",
        "#000000"
      ]
    }
  ]
}
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:50:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-color-palette/m-p/1690592#M52759</guid>
      <dc:creator>beaubellamy</dc:creator>
      <dc:date>2024-11-16T18:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Custom color palette</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-color-palette/m-p/1690727#M52773</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you use a page to validate JSON, like&amp;nbsp;&lt;A href="https://jsonlint.com/" target="_blank"&gt;https://jsonlint.com/&lt;/A&gt;, you will notice that the row above palettes you are missing a ",".&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"dataColors": {
    "primaryColor": "@greenColor"
  }
  "palettes" : {&lt;/LI-CODE&gt;&lt;P&gt;should be&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"dataColors": {
    "primaryColor": "@greenColor"
  },
  "palettes" : {&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to change that and let me know how it goes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Patrik.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 11:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-color-palette/m-p/1690727#M52773</guid>
      <dc:creator>Patrik_Lundblad</dc:creator>
      <dc:date>2020-04-03T11:29:42Z</dc:date>
    </item>
  </channel>
</rss>

