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
Verify both modes on Cygwin, Babun and Linux
The text was updated successfully, but these errors were encountered:
public class Colors { /** The Control Sequence Introducer (CSI) escape sequence {@value}. */ static String CSI = "\u001B["; public static void main(String[] args) { for (int i = 0; i < 6; i++) { for (int j = 0; j < 6; j++) { for (int k = 0; k < 6; k++) { int col = 16 + 36 * i + 6 * j + k; System.out.print(CSI + 38 + ";5;" + col + "m" + col + " " + CSI + 0 + "m"); } System.out.println(); } System.out.println(); } for (int i = 0; i < 6; i++) { for (int j = 0; j < 6; j++) { for (int k = 0; k < 6; k++) { int col = 16 + 36 * i + 6 * j + k; System.out.print(CSI + 48 + ";5;" + col + "m" + col + " " + CSI + 0 + "m"); } System.out.println(); } System.out.println(); } } }
Sorry, something went wrong.
086bafd
#114 Updated Demo screenshot to showcase the 256-color palette.
b48fa89
No branches or pull requests
Verify both modes on Cygwin, Babun and Linux
The text was updated successfully, but these errors were encountered: