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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Here's the fix:
foreach ($options as $option) { if ($option >= 30 && $option < 38) { $fg = $option - 30; } elseif ($option >= 40 && $option < 48) { $bg = $option - 40; } elseif ($option >= 90 && $option < 98) { // This needs to be added $fg = $option - 80; // This needs to be added } elseif (39 == $option) {
... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here's the fix:
...
}
The text was updated successfully, but these errors were encountered: