To show hex color codes in batch [closed]
I have some hex color code:
#ff9b9b
#ff5656
#ff0202
#ad0000
#871515
and I want to show the corresponding colors at the same time as a palette to conveniently choose the ones I want.
Is there any recommended online tools or we can do it in command line?
There are tools can show only one color at the same time, but I want to show several colors at once.
Thanks a lot!
python r bash colors hex
closed as off-topic by Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus Nov 21 '18 at 18:08
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I have some hex color code:
#ff9b9b
#ff5656
#ff0202
#ad0000
#871515
and I want to show the corresponding colors at the same time as a palette to conveniently choose the ones I want.
Is there any recommended online tools or we can do it in command line?
There are tools can show only one color at the same time, but I want to show several colors at once.
Thanks a lot!
python r bash colors hex
closed as off-topic by Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus Nov 21 '18 at 18:08
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I have some hex color code:
#ff9b9b
#ff5656
#ff0202
#ad0000
#871515
and I want to show the corresponding colors at the same time as a palette to conveniently choose the ones I want.
Is there any recommended online tools or we can do it in command line?
There are tools can show only one color at the same time, but I want to show several colors at once.
Thanks a lot!
python r bash colors hex
I have some hex color code:
#ff9b9b
#ff5656
#ff0202
#ad0000
#871515
and I want to show the corresponding colors at the same time as a palette to conveniently choose the ones I want.
Is there any recommended online tools or we can do it in command line?
There are tools can show only one color at the same time, but I want to show several colors at once.
Thanks a lot!
python r bash colors hex
python r bash colors hex
asked Nov 21 '18 at 17:24
Charlie
235
235
closed as off-topic by Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus Nov 21 '18 at 18:08
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus Nov 21 '18 at 18:08
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Jean-François Fabre, m0nhawk, phiver, Alejandro, Cyrus
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you want python code to that you could use colored, here's example where you choose font color and background color.
from colored import fg, bg, attr
color = fg('#C0C0C0') + bg('#00005f') # create font and background color
res = attr('reset') # adding that to string that we print reset current colors
print(color + "Hello World !!!" + res)
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you want python code to that you could use colored, here's example where you choose font color and background color.
from colored import fg, bg, attr
color = fg('#C0C0C0') + bg('#00005f') # create font and background color
res = attr('reset') # adding that to string that we print reset current colors
print(color + "Hello World !!!" + res)
add a comment |
If you want python code to that you could use colored, here's example where you choose font color and background color.
from colored import fg, bg, attr
color = fg('#C0C0C0') + bg('#00005f') # create font and background color
res = attr('reset') # adding that to string that we print reset current colors
print(color + "Hello World !!!" + res)
add a comment |
If you want python code to that you could use colored, here's example where you choose font color and background color.
from colored import fg, bg, attr
color = fg('#C0C0C0') + bg('#00005f') # create font and background color
res = attr('reset') # adding that to string that we print reset current colors
print(color + "Hello World !!!" + res)
If you want python code to that you could use colored, here's example where you choose font color and background color.
from colored import fg, bg, attr
color = fg('#C0C0C0') + bg('#00005f') # create font and background color
res = attr('reset') # adding that to string that we print reset current colors
print(color + "Hello World !!!" + res)
answered Nov 21 '18 at 17:27
Filip Młynarski
1,5781311
1,5781311
add a comment |
add a comment |