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
It seems like the console doesn't support colors (unless I'm just missing how to enable them). eg:
printf("\x1B[38;5;14mI'm cyan\n"); printf("\x1B[1;14mI'm also cyan\n");
Both produce white. The same is true of other color codes.
The text was updated successfully, but these errors were encountered:
3-bit escape codes work (implemented here). For instance printf("\x1b[30;0m\x1b[47;1m"); causes it to print black text on a white background.
printf("\x1b[30;0m\x1b[47;1m");
Sorry, something went wrong.
No branches or pull requests
It seems like the console doesn't support colors (unless I'm just missing how to enable them). eg:
Both produce white. The same is true of other color codes.
The text was updated successfully, but these errors were encountered: