CSS colors

March 28 2026

html and css

CSS colors can be defined in hexadecimal.

Hexadecimal uses three components: red, green, and blue.

You can define colors in shorthand hexadecimal: for example #DC2 corresponds to #DDCC22. Note that some colors cannot be abbreviated. The goal is to shorten your hexadecimal colors whenever possible.

The smaller your CSS file is in size, the faster your website will load on your visitor’s computer.

Example:

background-color : #FF9900;

You can define colors in decimal, using RGB colors. They are encoded as an integer between 0 and 255. This is not widely used, but you can do it without any problems.

You can also use percentages to define your RGB color. Zero means the component is absent, while 100% means it is at its maximum. You are always defining the red, green, and blue colors — a mix of the three primary colors.

Examples:

background-color: rgb(255,153,0);
background-color: rgb(100%,67%,0%);

You can also define CSS colors using English keywords that represent basic colors such as green, yellow, blue, orange, white, black, red, etc.

Example:

color: orange;

You are free to choose whichever method you prefer. The goal is for it to be meaningful to you.

As we just mentioned, keywords are case-insensitive identifiers that represent a given color. For example, the keyword red represents the color red, blue represents blue, brown represents brown, etc. The list of accepted values has evolved significantly across different versions of the specification:

  • The CSS Level 1 specification only accepted 16 basic colors, built from the VGA colors available on graphics cards.
  • The CSS Level 2 specification added the keyword orange.
  • Since the early days of CSS colors, browsers have supported additional colors, notably the X11 colors, as some of the first browsers were X11 applications. SVG 1.0 was the first standard to formally define these keywords, and the CSS Level 3 color specification also formally defined these colors. These colors are sometimes called extended colors, X11 colors, or SVG colors.
  • The CSS Level 4 specification added the color rebeccapurple in honor of Eric Meyer.

Here are some drawbacks of using keywords:

  • Apart from the 16 basic colors also present in HTML, the other values cannot be used in HTML. HTML will convert these unknown values with a specific algorithm that will produce entirely different colors.
  • If an unknown keyword is used, the property will be considered invalid and will therefore be ignored. This is different from HTML behavior which will approximate the value.
SpecificationKeywordHexadecimal RGB values
CSS Level 1black#000000
silver#c0c0c0
gray#808080
white#ffffff
maroon#800000
red#ff0000
purple#800080
fuchsia#ff00ff
green#008000
lime#00ff00
olive#808000
yellow#ffff00
navy#000080
blue#0000ff
teal#008080
aqua#00ffff
CSS Level 2 (Revision 1)orange#ffa500
CSS Color Module Level 3aliceblue#f0f8ff
antiquewhite#faebd7
aquamarine#7fffd4
azure#f0ffff
beige#f5f5dc
bisque#ffe4c4
blanchedalmond#ffebcd
blueviolet#8a2be2
brown#a52a2a
burlywood#deb887
cadetblue#5f9ea0
chartreuse#7fff00
chocolate#d2691e
coral#ff7f50
cornflowerblue#6495ed
cornsilk#fff8dc
crimson#dc143c
cyan (synonym of aqua)#00ffff
darkblue#00008b
darkcyan#008b8b
darkgoldenrod#b8860b
darkgray#a9a9a9
darkgreen#006400
darkgrey#a9a9a9
darkkhaki#bdb76b
darkmagenta#8b008b
darkolivegreen#556b2f
darkorange#ff8c00
darkorchid#9932cc
darkred#8b0000
darksalmon#e9967a
darkseagreen#8fbc8f
darkslateblue#483d8b
darkslategray#2f4f4f
darkslategrey#2f4f4f
darkturquoise#00ced1
darkviolet#9400d3
deeppink#ff1493
deepskyblue#00bfff
dimgray#696969
dimgrey#696969
dodgerblue#1e90ff
firebrick#b22222
floralwhite#fffaf0
forestgreen#228b22
gainsboro#dcdcdc
ghostwhite#f8f8ff
gold#ffd700
goldenrod#daa520
greenyellow#adff2f
grey#808080
honeydew#f0fff0
hotpink#ff69b4
indianred#cd5c5c
indigo#4b0082
ivory#fffff0
khaki#f0e68c
lavender#e6e6fa
lavenderblush#fff0f5
lawngreen#7cfc00
lemonchiffon#fffacd
lightblue#add8e6
lightcoral#f08080
lightcyan#e0ffff
lightgoldenrodyellow#fafad2
lightgray#d3d3d3
lightgreen#90ee90
lightgrey#d3d3d3
lightpink#ffb6c1
lightsalmon#ffa07a
lightseagreen#20b2aa
lightskyblue#87cefa
lightslategray#778899
lightslategrey#778899
lightsteelblue#b0c4de
lightyellow#ffffe0
limegreen#32cd32
linen#faf0e6
magenta (synonym of fuchsia)#ff00ff
mediumaquamarine#66cdaa
mediumblue#0000cd
mediumorchid#ba55d3
mediumpurple#9370db
mediumseagreen#3cb371
mediumslateblue#7b68ee
mediumspringgreen#00fa9a
mediumturquoise#48d1cc
mediumvioletred#c71585
midnightblue#191970
mintcream#f5fffa
mistyrose#ffe4e1
moccasin#ffe4b5
navajowhite#ffdead
oldlace#fdf5e6
olivedrab#6b8e23
orangered#ff4500
orchid#da70d6
palegoldenrod#eee8aa
palegreen#98fb98
paleturquoise#afeeee
palevioletred#db7093
papayawhip#ffefd5
peachpuff#ffdab9
peru#cd853f
pink#ffc0cb
plum#dda0dd
powderblue#b0e0e6
rosybrown#bc8f8f
royalblue#4169e1
saddlebrown#8b4513
salmon#fa8072
sandybrown#f4a460
seagreen#2e8b57
seashell#fff5ee
sienna#a0522d
skyblue#87ceeb
slateblue#6a5acd
slategray#708090
slategrey#708090
snow#fffafa
springgreen#00ff7f
steelblue#4682b4
tan#d2b48c
thistle#d8bfd8
tomato#ff6347
turquoise#40e0d0
violet#ee82ee
wheat#f5deb3
whitesmoke#f5f5f5
yellowgreen#9acd32
CSS Color Module Level 4rebeccapurple#663399

The color rebeccapurple is equivalent to the color #639. To better understand why it was added, you can read this Codepen post by Trezy “Honoring a great man”.

Recent Posts

Recent Comments

Itamde is also an online programming school.

Itamde

Learn what you want, at your own pace

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

You may also be interested in…

Artificial intelligence is reshaping every pixel

Artificial intelligence is reshaping every pixel

Just a few years ago, editing a photo meant spending hours working meticulously in Photoshop, mastering layers, masks and curves. In 2026, everything has shifted. AI photo editing tools no longer settle for automatic filters — they understand image content, anticipate...

The 10 Best Free AI Tools for Developers in 2026

The 10 Best Free AI Tools for Developers in 2026

Artificial intelligence is transforming how developers write, test, and deploy code. In 2026, many AI tools are freely accessible, offering capabilities that would have seemed impossible just a few years ago. Whether you're a beginner or experienced developer, these...

HTML tables: the basics

HTML tables: the basics

This article shows you how HTML tables work. We'll cover the basics, such as rows, cells, headers, cells spanning multiple columns or rows, and how to group cells in a column for styling purposes. Prerequisites:The basics of HTMLObjective:Get familiar with HTML...

Stay up to date with the latest news and developments

Access restricted content

Discover behind-the-scenes details of our projects, exclusive resources, and the progress of our creations in real time.

Sign up for our newsletter

Receive our news, creative insights, and updates from the studio directly in your inbox.

Follow us

Join our community on social media to follow our daily projects and interact with us.