

Colors appear and light up only through a radiation of approximately 360-390 nm. The appearance of black light paint Blacklightīy day, the products are perfectly colorless and whitish in appearance, they are semi-transparent. The “ink” range is a liquid formulation for printing or marking, with 1 water-based color and 7 solvent colors. These products are not normally intended for use on the skin. Substrates such as walls, paper, cardboard, fabrics, wood are very suitable for Moonglo paints. On the other hand, the luminous phenomenon goes inactive instantaneously in the event of removal of the excitation source (UV neon, UV Led, UV torch) The result is an intense, non-decreasing colored light emission. Blacklight paints produce photoluminescence by reacting to ultraviolet light.īlack light fluorescent paint is a product available at the bottom of the page, in 8 colors for the water-based paint range and 8 colors for solvent-based inks.Īt the molecular level, the active pigments in the paint react when they are excited by light waves in the range between 360 and 380 nanometers. Matplotlib uses a dictionary from its colors.py module.įor name, hex in ():įor name, hex in light reacting paints belong to the photoluminescent effect paints because they have physicochemical properties making them bright in certain situations.
Black light blue color code code#
This is more similar to specifying and RGB tuple rather than a named color (apart from the fact that the hex code is passed as a string), and I will not include an image of the 16 million colors you can choose from.įor more details, please refer to the matplotlib colors documentation and the source file specifying the available colors, _color_data.py. You can also plot colors by their HTML hex code: plt.plot(, lw=4, c='#8f9805') The default Tableau colors are available in matplotlib via the 'tab:' prefix: plt.plot(, lw=4, c='tab:green') Now you have access to a plethora of named colors! If you would like to use additional named colors when plotting with matplotlib, you can use the xkcd crowdsourced color names, via the 'xkcd:' prefix: plt.plot(, lw=4, c='xkcd:baby poop green')

I merged my previous updates into this section. X, Y = fig.get_dpi() * fig.get_size_inches()Īx.text(xi_text, y, name, fontsize=(h * 0.8), # Sort colors by hue, saturation, value and name.īy_hsv = sorted((tuple(mcolors.rgb_to_hsv(mcolors.to_rgba(color))), name) import matplotlib.pyplot as pltĬolors = dict(mcolors.BASE_COLORS, **mcolors.CSS4_COLORS) I really didn't change much from the matplotlib example, but here is the code for completeness. I updated the image and code to reflect that 'rebeccapurple' has been added and the three sage colors have been moved under the 'xkcd:' prefix since I posted this answer originally. The order is not identical to how I would sort by eye, but I think it gives a good overview. I prefer the colors to be grouped with similar colors, so I slightly tweaked the matplotlib answer that was mentioned in a comment above to get a color list sorted in columns.

The previous answers are great, but I find it a bit difficult to get an overview of the available colors from the posted image. I constantly forget the names of the colors I want to use and keep coming back to this question =)
