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
A display mode as seen in the following images would be useful, as it makes it easier to visually compare colors.
and
Would a PR implementing this be merged?
The text was updated successfully, but these errors were encountered:
Thank you for your request. Please see #137 and #21.
Sorry, something went wrong.
Also, note that pastel enables you to write scripts like this:
pastel
#!/bin/bash cols=$(tput cols) spaces=$(printf %"$((cols - 7))"s | tr " " " ") for color in "$@"; do hex_code="$(pastel format hex "$color")" textcolor="$(pastel textcolor "$color")" pastel paint "$textcolor" --on "$color" "$hex_code$spaces" done
which can be called like:
bash compare_colors.sh steelblue lime firebrick
No branches or pull requests
A display mode as seen in the following images would be useful, as it makes it easier to visually compare colors.
and
Would a PR implementing this be merged?
The text was updated successfully, but these errors were encountered: