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
API proposal: ITheme.extendedAnsi: number[], which would encode colors from index 16 (but not necessarily all of them).
ITheme.extendedAnsi: number[]
VS Code ask: microsoft/vscode#140235
The text was updated successfully, but these errors were encountered:
Be more defensive when setting extended ansi colors
8b3f9ad
Part of xtermjs#3601
@Tyriar @silamon How do I use these colors? If I have extendedAnsi: [ '#dcdcdc' ], what should the space code be?
extendedAnsi: [ '#dcdcdc' ]
I thought it would: \x1b[1;255mHello World\x1b[0m but it didn't work. Thanks
\x1b[1;255mHello World\x1b[0m
Sorry, something went wrong.
@goenning for 256 color you want:
\x1b[38;5;<index>m
So replacing index with 17 I think is what you want there?
That was it, thank you 🙌
Successfully merging a pull request may close this issue.
API proposal:
ITheme.extendedAnsi: number[]
, which would encode colors from index 16 (but not necessarily all of them).VS Code ask: microsoft/vscode#140235
The text was updated successfully, but these errors were encountered: