🌐
W3Schools
w3schools.com › css › css_colors.asp
CSS Colors
Height / Width Min / Max Code Challenge CSS Box Model ... Text Color Text Alignment Text Decoration Text Decoration Styles Text Transformation Text Spacing Text Shadow Code Challenge CSS Fonts
🌐
Quackit
quackit.com › css › css_color_codes.cfm
CSS Color Codes
All about CSS Color Codes, includes color picker and hex color chart.
Discussions

coloring in CSS
There are 140 color names (last I checked) in CSS but 16,777,216 possible hex combinations so using hex values makes sense. More on reddit.com
🌐 r/Frontend
29
5
June 10, 2022
What's css color code for reddit blue?

http://www.reddit.com/about/alien/

More on reddit.com
🌐 r/csshelp
3
3
September 13, 2012
Subreddit CSS color guide?

http://www.w3schools.com/html/html_colors.asp

Or google for "color hex code" there are probably 1000s of similar sites.

More on reddit.com
🌐 r/csshelp
2
1
November 29, 2013
Flair color? "CSS Class"?
You can type anything you want in it. The "CSS Class" is simply a way to identify the flair, your own CSS will be what's changing it. What type of flair are you talking about? User flair or link flair? To change a specific flair's colour set it's CSS Class to whatever you want, I'd recommend all lower-case and no spaces (in my example I'll be having the CSS class called red). Next, go to your stylesheet and add use this code if you're using user flairs: .flair-CSSCLASS { background-color: lightRed; color: white; } and this for link flairs: .linkflair-CSSCLASS .linkflairlabel { background-color: lightRed; color: white; } In both examples you would replace CSSCLASS with the CSS Class you set in your flair settings page. In this case it would be (for user flairs) .flair-red or (for link flairs) .linkflair-red .linkflairlabel. You can also change the values of the background-color and color properties to change the colour of the background colour and the text colour, respectively. More on reddit.com
🌐 r/csshelp
3
5
December 28, 2015
🌐
HTML Color Codes
htmlcolorcodes.com
HTML Color Codes
Get HTML color codes, Hex color codes, RGB, HSL and OKLCH values with our color pickers, color wheel, color chart and HTML color names. Let's go!
🌐
Josh W. Comeau
joshwcomeau.com › css › color-formats
Color Formats in CSS - hex, rgb, hsl, lab • Josh W. Comeau
Recently, however, we've been getting some new color formats in CSS. They're pretty compelling. Let's talk about them. So, this blog post is about color formats, the syntaxes we use to specify colors. All of the true color formats we've seen so far — rgb(), hex codes, and hsl() — are all bound by the “standard RGB color space”, commonly abbreviated as sRGB.
🌐
Computer Hope
computerhope.com › htmcolor.htm
HTML Color Codes and Names
3 weeks ago - HTML color codes are hexadecimal triplets to represent RGB (Red, Green, and Blue) colors in the format (#RRGGBB). For example, red is #FF0000, which is '255' red, '0' green, and '0' blue.
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › CSS › Reference › Values › named-color
<named-color> - CSS | MDN
January 19, 2026 - Named colors consists of standard colors, the transparent and currentColor keywords. ... Initially, in CSS Level 1, only 16 basic colors were defined, with orange added in CSS Level 2. Web designers found this list too short, and browser vendors added numerous names for colors based on the X11 color names.
Find elsewhere
🌐
Elementor
elementor.com › blog › resources › css & html colors: properties, codes, keywords and names
CSS & HTML Colors: Properties, Codes, Keywords and Names
July 1, 2025 - CSS offers several color formats, including Hex codes, RGB, RGBA, HSL, HSLA, and color keywords. Hex codes use a six-digit combination of letters and numbers to represent colors. RGB (Red, Green, Blue) defines colors based on the intensity of ...
🌐
Simmons University
web.simmons.edu › ~grovesd › comm244 › notes › week3 › css-colors
Defining Colors in CSS
Probably the most common (yet least intuitive) way to specify colors in CSS is to use their hexadecimal (or hex) values. Hex values are actually just a different way to represent RGB values. Instead of using three numbers between 0 and 255, you use six hexadecimal numbers.
🌐
Wikipedia
en.wikipedia.org › wiki › Web_colors
Web colors - Wikipedia
2 weeks ago - The number of colors that can be represented by this system is 2563, 166, or 224 = 16,777,216. An abbreviated, three (hexadecimal)-digit or four-digit form can be used, but can cause errors if software or maintenance scripts are only expecting ...
🌐
Texas Wesleyan University
westlibrary.txwes.edu › c.php
Color Codes - Images - LibGuides at Texas Wesleyan University
Hex code byte values range from 00, which is the lowest intensity of a color, to FF which represents the highest intensity.
🌐
GeeksforGeeks
geeksforgeeks.org › css › css-colors
CSS Colors - GeeksforGeeks
November 1, 2025 - CSS colors are used to change the look of text, backgrounds, borders, and other elements on a webpage. They help make a site more attractive and easy to read. Colors can be set using names, HEX codes, RGB, RGBA, HSL, or HSLA values.
🌐
HTML CSS Color
htmlcsscolor.com
HTML CSS Color Online color library: HEX, RGB, HSL, CMYK - HtmlCssColor
Explore HTML and CSS color names with HEX, RGB, and HSL codes. Preview colors, generate palettes, check contrast, and improve your web design.
🌐
Color Hex
color-hex.com
Color Hex Color Codes
Color-hex gives information about colors including color models (RGB,HSL,HSV and CMYK), Triadic colors, monochromatic colors and analogous colors calculated in color page. Color-hex.com also generates a simple css code for the selected color. Html element samples are also shown below the color detail page.
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › CSS › named-color
<named-color> - CSS - MDN Web Docs - Mozilla
Named colors consists of standard colors, the transparent and currentColor keywords. ... Initially, in CSS Level 1, only 16 basic colors were defined, with orange added in CSS Level 2. Web designers found this list too short, and browser vendors added numerous names for colors based on the X11 color names.
🌐
web.dev
web.dev › learn › css › color
Color | web.dev
The CSS color() function lets you choose a color in a specific color space. The first argument is the color space to use, which defines the options for the following channels. Like rgb(), you can set the alpha channel by setting a number between ...
🌐
HubSpot
blog.hubspot.com › home › website › css colors: what you need to know about html, hex, rgb & hsl color values
CSS Colors: What You Need to Know About HTML, Hex, RGB & HSL Color Values
July 24, 2023 - That’s where online tools like HTML Color Codes’ Color Picker come in. With this tool, you can click and drag your cursor inside the “picker area” on the right. Its Hex (as well as its RGB and HSL values) will appear at the top. Take a look at the demo below. ... Let’s look at an example. Say you want to change the background of a web page to the shade of blue above. You’d use a CSS selector to target the body and define the background-color property with the hex color code #69EAFF.
🌐
HTML Color Codes
htmlcolorcodes.com › color-names
Color Names – HTML Color Codes
Modern browsers support 140 named colors, which are listed below. Use them in your HTML and CSS by name, Hex color code, RGB or HSL value.