To show hex color codes in batch [closed]












-1














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!










share|improve this 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.


















    -1














    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!










    share|improve this 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.
















      -1












      -1








      -1







      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!










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      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.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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)





          share|improve this answer




























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            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)





            share|improve this answer


























              0














              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)





              share|improve this answer
























                0












                0








                0






                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)





                share|improve this answer












                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)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 21 '18 at 17:27









                Filip Młynarski

                1,5781311




                1,5781311















                    Popular posts from this blog

                    404 Error Contact Form 7 ajax form submitting

                    How to know if a Active Directory user can login interactively

                    TypeError: fit_transform() missing 1 required positional argument: 'X'