TW 5.3.6 and New Color Palettes - Low Contrast Colors in Tag Pill

TiddlyWiki 5.3.6 has two new color palettes:

$:/palettes/FlexokiLight
$:/palettes/FlexokiDark

It seems the color contrast used for tags does not work for some colors. For example,
set a color of myTag tiddler to: rgb(220 180 50 / 0.3) and now tag some tiddler with myTag.

This is true for some old light palettes like: Contrast (light)

Hi @Mohammad I think that the problem is that the syntax rgb(220 180 50 / 0.3) is not recognised by the somewhat elderly CSS colour parsing library that TW uses. However, one of the updates included in the colour handling pull request is an update to the CSS colour parsing library which fixes your example:

You can test this out in the developer console. Try the following command in the console on tiddlywiki.com and then in the colour handling preview:

$tw.utils.parseCSSColor("rgb(220 180 50 / 0.3)")

On tiddlywiki.com, null is returned, while on the colour handling preview the correct colour is returned:

[
    0.8627450980392157,
    0.7058823529411765,
    0.19607843137254902,
    0.3
]

Hi Jeremy,
Thank you for clarification!
I am playing with https://colour-improvements-pr8702.tiddlyhost.com/#%24%3A%2Fcore%2Fui%2FControlPanel%2FPalette
and it seems really promising for color handling.