Colors

Colors in CSS can be defined in four different ways: using a six digit hex number, three digit hex number, a preset color, or RGB values. There are a few properties that allow you to define colors and thus it is important to discuss how these work in detail.

How Color Works

The computer outputs visual information through small pixels arranged in an array on the screen. A pixel is simply a picture element, or the smallest unit of capturable detail. Hence, each pixel is represents one distinct color.

However, how does a computer actually display the colors? From where does a pixel get its glow? Well, to put this into perspective, depending on your computer's color settings, up to 16,777,216 different colors can be represented. That is a lot of colors! However, each pixel doesn't have a single light that will operate every color, nor does it have 16 million different color filters. Rather, each pixel uses three different lights each with varying brightness.

A pixel uses three different color lights: red, green, and blue. By varying the level of intensity of these lights, many different colors can be formed. Now, let us say that each color can either be on or off, so each light therefore has two intensities. How many colors can be formed? In the chart below, the color code is represented with RGB, or red green blue. A 1 means that color is on and a 0 means off.

Color Code Color Shown
R G B
0 0 0 Black
0 0 1 Blue
0 1 0 Green
0 1 1 Cyan
1 0 0 Red
1 0 1 Magenta
1 1 0 Yellow
1 1 1 White

That is 8 different colors that can be formed if each color can be represented in two ways. Now imagine each color represented in 256 ways! That is why so many colors can be represented on the computer through pixels.

As such, when we are defining the color to be used in properties, we are defining what intensity each color should have. In the following sections, each method of defining color will be explained in better detail using this as the background.

Preset Colors

A preset color is a color name that the Internet is able to recognize and automatically assign pixel values in order to yield the particular color. For instance, let us say that you wanted every word "jello" to be maroon in color. Simple, define the color to be "maroon". You would use this code: [[span style="color: maroon;"]]jello[[/span]] to make the word "jello" maroon.

Only 16 colors are accepted to be W3C standard and should thus work universally. There are other color codes found at w3schools that may work, but it is recommended you use hex values for those colors rather than their name.

The 16 preset standard colors are as follows:

aqua
black
blue
fuchsia
grey
green
lime
maroon
navy
olive
purple
red
silver
teal
white
yellow

Hexadecimal Code

Using hexadecimal code is the standard syntax for defining a color. An example of a hexadecimal number is #F54B81. This yields an interesting shade of pink. But how on earth does that number work? How can a number contain letters? And finally, how do I know what color I get from a particular code?

The first thing you need to know is that a hexadecimal number is not your average-joe number. First, let us consider our normal number system. Our normal number system uses ten symbols in order to represent all the possible numbers. Thus, our number system is base 10. The ten symbols we use are 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9, and with those we can represent all the numbers.

In a hexadecimal system, base 16, sixteen symbols are used instead of ten. The ten symbols from before are used with the addition of the letters A-F. Hence, we get letters in numbers. Counting in hexadecimal is a little more complex. You would of course start off with the first nine numbers, but after 9, what is next? In the normal base 10 system, a 10 would, but not in hexadecimal. The next symbol is A, then B, then C, and so on until F is reached. After that, then we reach 10, 11, etc.

This means that in hexadecimal, A=10, B=11, a 10 in hex is a 16 in the normal system and so forth.

So then, how does this relate to color? Let us split up the hex number into three parts: the first two digits, the middle two, and the last two. The first two digits make up the red component of the total color. The middle two represent the green component, and the last two represent the blue component, like so:

Red Green Blue
F 5 4 B 8 1

Let us first look at the red part of the color. We have the number F5. The smallest number allowed would be 00 meaning absolutely no red. A FF would be the most red possible. Other values in between represent varying shades of red. Therefore, F5 is quite a bit of red.

4B for green is not quite as big. It is closer to 00 than it is FF, so we can imagine it as a bit of a dark green. For blue, we have 81 which is pretty close to halfway (80). Therefore, it is sort of a medium blue. To get the overall color, we add these three luminosities of light to get the overall color.

Remember from above? Every pixel is three different shades of red, green, and blue, and thus here are the three components spelled out! This hexadecimal reads, "We want a lot of red, not a lot of green, and some blue." Thus, we get our final color.

Here are the individual colors. Hopefully you can see how they add up:

#F50000
#004B00
#000081
#F54B81

Here are some examples of color codes using hexadecimal numbers.

#000000
#000080
#0000CD
#0000FF
#00BFFF
#00FFFF
#00FA9A
#00FF00
#00FF7F
#FF00FF
#FF1493
#FF4500
#FF6347
#FFBB00
#FF8C00
#FFA500
#FFFF00

Three-digit Hex Value

Sometimes, you can shorten a hexadecimal value to only three digits, like in #4D5. When you do this, you are selecting one of 4096 colors, such would be the equivalent of 4-bit color (as opposed to 8-bit color above).

The translation between a three digit value and six digit value is easy. If #4D5 is the three digit hex number, then its equivalent six digit hex number is #44DD55. Note that if you have a number #447790 that you cannot shorten this to #4790. That would be bad!

Here, you can see how two numbers are equivalent in color:

#4D5
#44DD55

Here are more examples of three digit hex numbers in use.

#FF0
#F00
#0F0
#00F
#EEE
#AAA
#333
#000
#Fb0
#F54
#F87
#A32
#654

RGB Definitions

There is one last way to define color that is rarely ever used since it is longer to write or harder to visualize. This is simply defining what specific luminosity of each of red, green, and blue with values from 0-255. Remember that a single color can have 256 different luminosities, and so therefore for each color you define which specific luminosity you want.

The syntax for doing this is as follows:

color: rgb(red,green,blue);

You would replace red with a value between 0 and 255 for redness, green with a value between 0 and 255 for greenness, and blue with another value between 0 and 255 for blueness. To make the shade of pink above, we need a lot of red, a little green, and medium blue. We end up with this:

rgb(245,75,129)

Rainbow-Themes Base Colors

Here is documentation of the colors used for the Wikidot Rainbow themes.

Late Harvest

#978623
#f1cc01
#978c4c

Green Grass

#0a9200
#11d602
#33922b

Cherry Red

#860016
#c40222
#862838

Deep Blue

#0018aa
#0225fa
#3344aa

Orange Juice

#f47e00
#ffb769
#f4a148

Pretty Pink

#b400b6
#fa11fd
#b537b6

Royal Purple

#5600f4
#9e6afe
#8549f4

Sky Blue

#0056b6
#1180fd
#3773b6

Tropical Seas

#00927c
#02d6b5
#2c9283

Midnight Coal

#000000
#545454
#323232

Silent Silver

#7a7a7a
#b4b4b4
#7a7a7a

Pale Snow

#b3bbc0
#d4d8db
#c9cfd2
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License