We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using JSON Text Components in a string, the color gets escaped in \" like this: \"color\": \"red\" or \"color\": \"#ff0000\"
\"
\"color\": \"red\"
\"color\": \"#ff0000\"
But the color picker does not quite work that well with these escaped quotes:
After changing the color in the color picker once, Spyglass breaks the JSON by
"
\#
\
The text was updated successfully, but these errors were encountered:
Also: Is it known, that the color picker doesn't work at all when using color words like color: "red"?
color: "red"
Sorry, something went wrong.
No branches or pull requests
When using JSON Text Components in a string, the color gets escaped in
\"
like this:\"color\": \"red\"
or\"color\": \"#ff0000\"
But the color picker does not quite work that well with these escaped quotes:
After changing the color in the color picker once, Spyglass breaks the JSON by
"
from the first\"
(resulting in a\#
)\
from the second\"
(resulting in a"
, which unexpectedly ends the JSON string)The text was updated successfully, but these errors were encountered: