Hi, I wanted to create my own custom theme in Powerbuilder 21
Inside "C:\Program Files (x86)\Appeon\PowerBuilder 21.0\IDE\theme", I have copied over the "Flat Design Blue" in the same directory and named it something else.
In the new custom theme.json file, I deleted all the contents in it.
From the Flat Design Blue theme.json file, I copied "checkbox" and pasted it into my custom theme.json file, however it fails to apply this specific theme. Any idea why this is happening?
Here is what was copied over:
```
"checkbox":
{
"drawing":true,
"normal-state":
{
"text-font":{"color":"#000000"},
"box-images":
{
"unchecked":{"file":"checkbox-box-normal-unchecked.bmp"},
"checked":{"file":"checkbox-box-normal-checked.bmp"},
"indeterminate":{"file":"checkbox-box-normal-indeterminate.bmp"}
}
},
"hover-state":
{
"text-font":{"color":"#000000"},
"box-images":
{
"unchecked":{"file":"checkbox-box-hover-unchecked.bmp"},
"checked":{"file":"checkbox-box-hover-checked.bmp"},
"indeterminate":{"file":"checkbox-box-hover-indeterminate.bmp"}
}
},
"pressed-state":
{
"text-font":{"color":"#000000"},
"box-images":
{
"unchecked":{"file":"checkbox-box-pressed-unchecked.bmp"},
"checked":{"file":"checkbox-box-pressed-checked.bmp"},
"indeterminate":{"file":"checkbox-box-pressed-indeterminate.bmp"}
}
},
"focused-state":
{
"text-font":{"color":"#000000"},
"box-images":
{
"unchecked":{"file":"checkbox-box-focused-unchecked.bmp"},
"checked":{"file":"checkbox-box-focused-checked.bmp"},
"indeterminate":{"file":"checkbox-box-focused-indeterminate.bmp"}
}
},
"disabled-state":
{
"text-font":{"color":"#999999"},
"box-images":
{
"unchecked":{"file":"checkbox-box-disabled-unchecked.bmp"},
"checked":{"file":"checkbox-box-disabled-checked.bmp"},
"indeterminate":{"file":"checkbox-box-disabled-indeterminate.bmp"}
}
}
}
```