About 5,930,000 results
Open links in new tab
  1. What are the RGB codes for the Conditional Formatting 'Styles' in …

    The RGB colours are as in the table at the bottom of the pane. If you prefer HSL values change the color model from RGB to HSL. I have used this to change the saturation on my bad cells. …

  2. vhdl - Using hex values in constants - Stack Overflow

    Jun 6, 2022 · The hex value is a bit string literal with a string value equivalent assignable to single dimensional arrays. An integer requires an abstract literal, a based literal of the form 16#38#.

  3. C++ cout hex values? - Stack Overflow

    Jan 26, 2009 · 25 std::hex gets you the hex formatting, but it is a stateful option, meaning you need to save and restore state or it will impact all future output. Naively switching back to …

  4. colors - Transparent ARGB hex value - Stack Overflow

    Apr 21, 2014 · Maximal value (255 dec, FF hex) means fully opaque. Minimum value (0 dec, 00 hex) means fully transparent. Values in between are semi-transparent, i.e. the color is mixed …

  5. VSCode display hex values for variables in debug mode

    Mar 7, 2017 · Is VSCode able to display hex values for local variables in debug mode ? I have been searching for a way to make this happen but with no success.

  6. Using grep to search for hex strings in a file - Stack Overflow

    Jun 12, 2011 · Does anyone know how to get grep, or similar tool, to retrieve offsets of hex strings in a file? I have a bunch of hexdumps (from GDB) that I need to check for strings and then run …

  7. Why are flag enums usually defined with hexadecimal values

    Nov 5, 2012 · Why are flag enums usually defined with hexadecimal values Asked 12 years, 11 months ago Modified 3 years, 3 months ago Viewed 49k times

  8. Extract matplotlib colormap in hex-format - Stack Overflow

    I am trying to extract discrete colors from a matplotlib colormap by manipulating this example. However, I cannot find the N discrete colors that are extracted from the colormap. In the code …

  9. Converting an RGB color tuple to a hexidecimal string

    Aug 1, 2010 · Provided three int values, this will return a valid hex triplet representing a color. If those values are between [0,255], then it will treat those as RGB values and return the color …

  10. Why are hexadecimal numbers prefixed with 0x? - Stack Overflow

    Apr 19, 2010 · Why are hexadecimal numbers prefixed as 0x? I understand the usage of the prefix, but I don't understand the significance of why 0x was chosen.