About 50 results
Open links in new tab
  1. python - Named colors in matplotlib - Stack Overflow

    What named colors are available in matplotlib for use in plots? I can find a list on the matplotlib documentation that claims that these are the only names: b: blue g: green r: red c: cyan m: mag...

  2. terminal - List of ANSI color escape sequences - Stack Overflow

    Jan 30, 2011 · When you write a ANSI escape code \033 [<color>m, replace the <color> with any of the color codes below. For instance, \033 [31m would be red text color: ... This is a condensed version of …

  3. RGB values of the colors in the Ansi extended colors index (17-255)

    The 256 color table and its partitioning The color range of a 256 color terminal consists of 4 parts, often 5, in which case you actually get 258 colors: Color numbers 0 to 7 are the default terminal colors, the …

  4. How to add RGB values into setColor() in Java? - Stack Overflow

    I want to give my rectangle a color using RGB values like (200, 200, 200) for example; that'll be like a gray.

  5. excel - How to store RGB colour in variable? - Stack Overflow

    I'm looking to store an RGB colour in a variable in an Excel VBA project, to set the background color of various cell/ranges throughout a sub. I want to set the colour once in a variable, so if I ...

  6. excel - Return RGB values from Range.Interior.Color (or any other Color ...

    Jun 10, 2014 · That "arbitrary" number is a mathematical combination of the RGB values (B 256^2 + G 256 + R) and a conversion of the hex color value to a decimal number (base 16 to base 10), …

  7. colors - Converting Hex to RGB value in Python - Stack Overflow

    Apr 15, 2015 · Working off Jeremy's response here: Converting hex color to RGB and vice-versa I was able to get a python program to convert preset colour hex codes (example #B4FBB8), however from …

  8. python - What are the RGB and HEX codes of the 3 color conditional ...

    Dec 3, 2020 · Specifically, I would like the HEX codes of the colors Excel uses. I didn't see them listed on the Web. I only found this question which asks for the RGB values for the 'Good', 'Neutral', and …

  9. How do I write a RGB color value in JavaScript? - Stack Overflow

    I am trying to change the color of the function swapFE () below and I can't figure out how to write it. I was told to change the color of the phrase node to the color value (155, 102, 102). I tried to do that …

  10. html - Difference between hex colour, RGB, & RGBA and when should …

    Dec 1, 2016 · The Difference between RGB and RGBA is simple to say, "there is no difference" EXCEPT the "A" -> Alpha RGB (Red Green Blue) RGBA (Red Green Blue Alpha) You use the alpha …