Skip to content
New issue

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

Border Color #352

Open
0xJWLabs opened this issue Aug 24, 2024 · 3 comments
Open

Border Color #352

0xJWLabs opened this issue Aug 24, 2024 · 3 comments

Comments

@0xJWLabs
Copy link

0xJWLabs commented Aug 24, 2024

Is there a way to change border color using hex? Thanks!

@speedytwenty
Copy link
Collaborator

speedytwenty commented Aug 25, 2024

Try something like:

const Table = require('cli-table3');

const table = new Table({ style: { border: ['blue'] } });
table.push(['foo']);

console.log(table.toString());

Produces:
image

This isn't well documented because of how the documentation is generated (without color). The documentation shows removing the default grey border, but doesn't show setting a color.

@speedytwenty
Copy link
Collaborator

"using hex"

I apologize, I overlooked this part of your question. I see now that setting a hex color does not work.

I don't see an obvious way. It would require customizing the "border chars" somewhat like: https://github.com/cli-table/cli-table3/blob/master/basic-usage.md#stylize-the-table-with-custom-border-characters

@0xJWLabs
Copy link
Author

@speedytwenty I think using chalk or ansis isn’t really a good way right? since i saw there’s somehow a leftover of the ansi like let’s say

————;30;60m

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants