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.
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
What's css color code for reddit blue?
http://www.reddit.com/about/alien/
More on reddit.comSubreddit 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.comFlair 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
Videos
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!
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › CSS › Reference › Values › color_value
<color> - CSS | MDN
December 16, 2025 - By hexadecimal notations: <hex-color> (such as #ff0000).
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.
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.
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.
RapidTables
rapidtables.com › web › css › css-color.html
CSS color codes & names
CSS color codes and names.
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.
Reddit
reddit.com › r/frontend › coloring in css
r/Frontend on Reddit: coloring in CSS
June 10, 2022 -
I have a genuine question. Why do developers like to write CSS CODE color in Hexadecimal? It seems easier to me to just write yellow or black or white instead of #080808
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.