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
The regex is wrong in ConfigGen at line 73.
ConfigGen
This works: FFFFFF, but this doesn't ffffff. (#[A-Z0-9]*) should be (#[A-Za-z0-9]*).
FFFFFF
ffffff
(#[A-Z0-9]*)
(#[A-Za-z0-9]*)
The workaround is to use uppercase letters for colour values in your background color build config.
The text was updated successfully, but these errors were encountered:
58adc0e
No branches or pull requests
The regex is wrong in
ConfigGen
at line 73.This works:
FFFFFF
, but this doesn'tffffff
.(#[A-Z0-9]*)
should be(#[A-Za-z0-9]*)
.The workaround is to use uppercase letters for colour values in your background color build config.
The text was updated successfully, but these errors were encountered: