Enhanced custom palette theme with gradient options

Playing around with all the new toys in 9.0! :sunglasses:

I was trying to use the enhanced custom palette theme with gradient options. Where is this option to apply this effect? Is it only on one theme or can this gradation be applied to all of the themes via checkbox?

There is only one Custom theme, which you can configure using the gradient as described in the Preferences user manual section.

After that, if you send it to me and it's added to Keyboard Maestro then you can create another one, but there is only one Custom one currently.

1 Like

Trying to figure out custom colors for palettes. The first example is from the help document. It is the green themed palette. However, when I enter any other alternative color it will always display in orange. I did a test with PINK as the primary color and I still get the exact orange theme.

What am I missing? :stuck_out_tongue_winking_eye:

22%20PM

**This is the example code from the wiki. Colors are correct **

defaults write com.stairways.keyboardmaestro.engine CustomPaletteTheme -string '{ 
"IncludeTexture":false,
"TitleBackground":{"c1" : [180,30,53], "c2" : [180,30,40], "angle":270},
"TitleBorder":[180,30,40],
"BodyBackground":{"c1" : [180,30,50], "c2" : [180,30,38], "angle":270},
"BodyBackgroundSelected":[180,30,60],
"Frame":[180,30,40],
"TitleText":[180,40,92],
"Text":[180,40,92],
"TextHighlighted":[180,40,70],
"TextSelected":[180,40,98],
"TextSelectedHighlighted":[180,40,75],
}'

11%20PM

This one has new numbers. I used PINK for the test. Colors are not correct.

defaults write com.stairways.keyboardmaestro.engine CustomPaletteTheme -string '{ 
"IncludeTexture":false,
"TitleBackground":{"c1" : [295,30,53], "c2" : [295,30,40], "angle":270},
"TitleBorder”:[295,30,40],
"BodyBackground":{"c1" : [295,30,50], "c2" : [295,30,38], "angle":270},
"BodyBackgroundSelected”:[295,30,60],
"Frame”:[295,30,40],
"TitleText”:[295,40,92],
"Text”:[29540,92],
"TextHighlighted”:[295,40,70],
"TextSelected”:[295,40,98],
"TextSelectedHighlighted”:[295,40,75],
}'

Ah - I figured it out. :slightly_smiling_face:
I am missing a comma for the "TEXT". It now works when I enter all the code.

1 Like