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
I know it can be converted somehow, but please introduce HTML colors conversion support if possible.
from sty import HTMLfg, fg # CSS "red" # HEX "#FF0000" # RGB (255, 0, 0) print(HTMLfg(0xFF0000) + "Red") # CSS — # HEX "#A0A0A0" # RGB (160, 160, 160) print(HTMLfg("#A0A0A0") + "Gray") # CSS "white" # HEX "#FFFFFF" # RGB (255, 255, 255) print(HTMLfg("#FFF") + "White") # CSS "orange" # HEX "#FFA500" # RGB (255, 165, 0) print(HTMLfg("orange") + "Orange") print(fg.rs)
The text was updated successfully, but these errors were encountered:
This looks interesting!
I think I'll add HtmlFg and HtmlBg after v1.0.0 was released.
HtmlFg
HtmlBg
Sorry, something went wrong.
No branches or pull requests
I know it can be converted somehow, but please introduce HTML colors conversion support if possible.
The text was updated successfully, but these errors were encountered: