How to set up smartphones and PCs. Informational portal
  • home
  • news
  • Color code table. Color in styles can be set in different ways: by hexadecimal value, by name, in RGB, RGBA, HSL, HSLA format

Color code table. Color in styles can be set in different ways: by hexadecimal value, by name, in RGB, RGBA, HSL, HSLA format

The CSS color module details the values ​​that allow authors to define the colors and opacity of html elements, as well as the values ​​of the color property.

Color property

1. Priority colors: the color property

The property sets the color of the font using various color rendering systems. The property describes the color of the text content of the element. It is also used to provide a potential indirect value (currentColor) for any other properties that accept color values.

The property is inherited.

2. Color values

2.1. Main keywords

The list of main keywords includes the following meanings:

Name HEX RGB Color
black #000000 0,0,0
silver # C0C0C0 192,192,192
gray #808080 128,128,128
white #FFFFFF 255,255,255
maroon #800000 128,0,0
red # FF0000 255,0,0
purple #800080 128,0,128
fuchsia # FF00FF 255,0,255
green #008000 0,128,0
lime # 00FF00 0,255,0
olive #808000 128,128,0
yellow # FFFF00 255,255,0
navy #000080 0,0,128
blue # 0000FF 0,0,255
teal #008080 0,128,128
aqua # 00FFFF 0,255,255

Color names are not case sensitive.

Syntax

Color: teal;

2.2. Numerical color values

2.2.1. RGB colors

The RGB hexadecimal value format is a # sign immediately followed by three or six hexadecimal characters. Three-digit RGB #rgb is converted to six-digit #rrggbb by copying digits rather than adding zeros. For example, # fb0 expands to # ffbb00. This ensures that white #ffffff can be specified in the short #fff, and removes any color depth dependencies from the display.

The RGB value format in functional notation is rgb (followed by a comma-separated list of three numeric values ​​(either three integer values ​​or three percent values) followed by a character). The integer value 255 corresponds to 100% and F or FF in hexadecimal notation:

Rgb (255,255,255) = rgb (100%, 100%, 100%) = #FFF

Space characters are allowed around numeric values.

Vlad Merzhevich

In HTML, a color is specified in one of two ways: using a hexadecimal code and by the name of some colors. The method based on the hexadecimal number system is mainly used, as the most universal one.

Hexadecimal colors

Hexadecimal numbers are used to specify colors in HTML. The hexadecimal system, in contrast to the decimal system, is based, as its name suggests, on the number 16. The numbers will be as follows: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C , D, E, F. Numbers from 10 to 15 are replaced by Latin letters. Table 6.1 shows the correspondence between decimal and hexadecimal numbers.

Numbers greater than 15 in the hexadecimal system are formed by combining two numbers into one (Table 6.2). For example, 255 decimal is FF hexadecimal.

To avoid confusion in the definition of the number system, the hash character # is placed in front of the hexadecimal number, for example # aa69cc. In this case, the register does not matter, so it is permissible to write # F0F0F0 or # f0f0f0.

A typical color used in HTML looks like this.

Here, the background color of the web page is set to # FA8E47. The hash symbol # in front of a number means it is hexadecimal. The first two digits (FA) define the red component of the color, the third through fourth digits (8E) are green, and the last two digits (47) are blue. As a result, you get this color.

FA + 8E + 47 = FA8E47

Each of the three colors - red, green, and blue - can take on values ​​from 00 to FF, resulting in 256 shades. Thus, the total number of colors can be 256x256x256 = 16.777.216 combinations. The color model based on red, green and blue components is called RGB (red, green, blue; red, green, blue). This model is additive (from add - to add), in which the addition of all three components forms a white color.

To make it easier to navigate in hexadecimal colors, take some rules into account.

  • If the values ​​of the color components are the same (for example: # D6D6D6), then you get a gray tint. The higher the number, the lighter the color, the values ​​vary from # 000000 (black) to #FFFFFF (white).
  • A bright red color is formed if the red component is set to maximum (FF), and the rest of the components are set to zero. The color # FF0000 is the reddest possible red tint. The same is the case with green (# 00FF00) and blue (# 0000FF).
  • Yellow (#FFFF00) is obtained by mixing red with green. This is clearly visible on the color wheel (Fig. 6.1), where the primary colors (red, green, blue) and complementary or complementary colors are presented. These include yellow, cyan, and purple (also called magenta). In general, any color can be obtained by mixing nearby colors. So, cyan (# 00FFFF) is obtained by combining blue and green.

Rice. 6.1. Color circle

Hexadecimal colors do not need to be chosen empirically. For this purpose, a graphic editor that can work with different color models is suitable, for example, Adobe Photoshop. In fig. 6.2 shows a window for choosing a color in this program, the resulting hexadecimal value of the current color is outlined with a line. You can copy and paste it into your code.

Rice. 6.2. Color selection window in Photoshop

Web colors

If you set the color quality of the monitor to 8 bit (256 colors), then the same color can be displayed differently in different browsers. This is due to the way graphics are displayed, where the browser is working with its own palette and cannot show a color that it does not have in the palette. In this case, the color is replaced by a combination of pixels of other, close to it, colors that imitate the specified one. To keep the color unchanged in different browsers, we introduced a palette of so-called web colors. Web colors are those colors, for each component of which - red, green and blue - one of six values ​​is set - 0 (00), 51 (33), 102 (66), 153 (99), 204 (CC), 255 (FF). The parentheses indicate the hexadecimal value of this component. The total number of colors from all possible combinations gives 6x6x6 - 216 colors. An example of a web color is # 33FF66.

The main feature of web color is that it appears the same across all browsers. At the moment, the relevance of web colors is very small due to the increase in the quality of monitors and the expansion of their capabilities.

Colors by name

In order not to memorize a set of numbers, you can use the names of commonly used colors instead. Table 6.3 lists the names of popular color names.

Tab. 6.3. Some color names
Color name Color Description Hexadecimal value
black Black #000000
blue Blue # 0000FF
fuchsia Light purple # FF00FF
gray Dark grey #808080
green Green #008000
lime Light green # 00FF00
maroon Dark red #800000
navy Navy blue #000080
olive Olive #808000
purple Dark violet #800080
red Red # FF0000
silver Light gray # C0C0C0
teal Blue green #008080
white White #FFFFFF
yellow Yellow # FFFF00

It doesn't matter in which way you specify the color - by its name or using hexadecimal numbers. These methods are equal in their action. Example 6.1 shows how to set the background and text color of a web page.

Example 6.1. Background and text color

Colors

Sample text

In this example, the background color is set using the bgcolor attribute of the tag , and the text color through the text attribute. For a change, the text attribute is set to a hexadecimal number, and bgcolor is set to the teal reserved keyword.

Minecraft cheats colors, or Minecraft codes formatting, allow any player to add flowers and format text in every way right in Minecraft. Color codes& 0-9 - to & a-f. Add them in front of your text. Player messages may contain color codes that allow you to add paint to your suggestions.

The ampersand (&) followed by a hexadecimal number in messages signals the client to switch colors when displaying text. Alternatively, text can be formatted with the character & followed by a letter. You can add different colors to books, command blocks, server name, server description ( motd), in the names of worlds, in tablets and even in names players.

It is very easy to format your text in configs or in the game using the color table below. & r is used to clear all codes, i.e. & mAAA & rBBB will be displayed as AAA BBB.

Color code table

The code NameTechnical nameSymbol colorSymbol shadow color
RGBHexRGBHex
&0 Blackblack0 0 0 000000 0 0 0 000000
&1 Navy bluedark_blue0 0 170 0000AA0 0 42 00002A
&2 Dark greendark_green0 170 0 00AA000 42 0 002A00
&3 Dark blue greendark_aqua0 170 170 00AAAA0 42 42 002A2A
&4 Dark reddark_red170 0 0 AA000042 0 0 2A0000
&5 Dark violetdark_purple170 0 170 AA00AA42 0 42 2A002A
&6 Goldgold255 170 0 FFAA0042 42 0 2A2A00
&7 Greygray170 170 170 AAAAAA42 42 42 2A2A2A
&8 Dark greydark_gray85 85 85 555555 21 21 21 151515
&9 Blueblue85 85 255 5555FF21 21 63 15153F
& a Greengreen85 255 85 55FF5521 63 21 153F15
& b Blue-greenaqua85 255 255 55FFFF21 63 63 153F3F
& c Redred255 85 85 FF555563 21 21 3F1515
& d Light purplelight_purple255 85 255 FF55FF63 21 63 3F153F
& e Yellowyellow255 255 85 FFFF5563 63 21 3F3F15
& f Whitewhite255 255 255 Ffffff63 63 63 3F3F3F

Formatting Code Table

Sometimes you need underline, cross out, highlight any text... For this, text formatting is used. It is used in the same way as colors (in front of the text we put the code e.g. & lMinecraft = Minecraft.

There are several ways to represent color in web design.

HEX is a base 16 hexadecimal color representation system. For this system, Arabic decimal digits from 0 to 9 and Latin letters from A to F are used to complement the digital number to 16. For web design, 16 basic (key) colors are taken, the so-called hexadecimal color code #RRGGBB, where each pair is responsible for its share of the color: RR - red, GG - green and BB - blue. Each color fraction ranges from 00 to FF.

Two other representations of color in web design are: in the form of RGB (*, *, *), where each "*" color fraction is represented by decimal digits from 0 to 255 and by color names in English.

When creating a color image, the main problem is the correct rendering of colors on different types of computers, monitors and browsers. If the browser cannot display a color correctly, then it picks up a similar one or mixes several colors. And sometimes it can be replaced with some completely different color.

table 16 primary colors which are used in all browsers

Name Color Hex (RGB)
Aqua (sea wave) # 00FFFF (000,255,255)
Black (black) #000000 (000,000,000)
Blue # 0000FF (000,000,255)
Fuchsia (fuchsin) # FF00FF (255,000,255)
Gray (gray) #808080 (128,128,128)
Green (green) #008000 (000,128,000)
Lime (bright green) # 00FF00 (000,255,000)
Maroon (maroon) #800000 (128,000,000)
Navy (navy blue) #000080 (000,000,128)
Olive (olive) #808000 (128,128,000)
Purple #800080 (128,000,128)
Red (red) # FF0000 (255,000,000)
Silver (silver) # C0C0C0 (192,192,192)
Teal (gray-green) #008080 (000,128,128)
White (white) #FFFFFF (255,255,255)
Yellow (yellow) # FFFF00 (255,255,000)

table purple colors and shades

Name Color Hex (RGB)
Magenta (magenta) #FFCBDB (255,203,219)
Magenta (magenta) # FF0099 (255,000,153)
Magenta (magenta) # F95A61 (249,090,097)
Fuchsia (fuchsia) # FF00FF (255,000,255)
Movein (aniline purple) # EF0097 (239,000,151)
Salmon pink (orange pink) # FF91A4 (255,145,164)
Cenise (a shade of magenta) # DE3163 (153,149,140)
Aubergine Eggplant (eggplant) #990066 (153,000,132)
Lavender blush (pinkish lavender) & nbsp # FFF0F5 (255,240,245)
Lilac (lilac) # C8A2C8 (200,162,200)
Magenta (magenta) # FF008F (255,000,143)
Orchid (orchid) # DA70D6 (218,112,214)
Red-violet # C71585 (199,021,133)
Sanguine (sanguine) # 92000A (146,000,010)
Thistle (shade of magenta) # D8BFD8 (185,211,238)
Violet-eggplant (shade of purple) #991199 (153,017,153)
Rosa vivo (deep pink) # FF007F (255,000,127)
Lavender-rose (shade of purple) # FBA0E3 (108,123,139)
Mountbatten pink # 997ABD (153,122,141)

table gray colors and shades

Name Color Hex (RGB)
Gray #808080 (128,128,128)
Gray #bebebe (190,190,190)
(Gray-tint) #858585 (133,133,133)
Gray33 (Gray-33) #545454 (084,084,084)
(Gray slate) #708090 (112,128,144)
(Quartz) # 99958с (153,149,140)
(Light gray) #bbbbbb (187,187,187)
(Silver) # c0c0c0 (192,192,192)
(Gray-white) # f0f0f0 (240,240,240)
(Abdel-Kerim's beards) # e0e0e0 (224,224,224)
LightGray (Light gray) # d3d3d3 (211,211,211)
LightStateGray () #778899 (119,136,153)
StateGray-1 (Pale cornflower blue1) # c6e2ff (198,226,255)
StateGray-2 (Pale cornflower blue2) # b9d3ee (185,211,238)
StateGray3 () # 9fb6cd (159,182,205)
StateGray4 () # 6c7b8b (108,123,139)

Hexadecimal numbers are used to set colors. The hexadecimal system, in contrast to the decimal system, is based, as its name suggests, on the number 16. The numbers will be as follows: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C , D, E, F. Numbers from 10 to 15 are replaced by Latin letters. Numbers greater than 15 in hexadecimal are formed by combining two numbers into one. For example, 255 decimal equals FF hexadecimal. To avoid confusion in the definition of the number system, the hash symbol # is placed in front of the hexadecimal number, for example # 666999. Each of the three colors — red, green, and blue — can range from 00 to FF. Thus, the color designation is divided into three components #rrggbb, where the first two characters mark the red component of the color, the two middle ones - green, and the last two - blue. It is allowed to use an abbreviated form like #rgb, where each character should be doubled. So, the # fe0 entry should be treated as # ffee00.

By name

Internet Explorer Chrome Opera Safari Firefox Android iOS
4.0+ 1.0+ 3.5+ 1.3+ 1.0+ 1.0+ 1.0+

Browsers support some colors by name. Table 1 shows the names, hexadecimal code, RGB, HSL values ​​and description.

Tab. 1. Names of colors
Name Color The code RGB Hsl Description
white #ffffff or #fff rgb (255,255,255) hsl (0.0%, 100%) White
silver # c0c0c0 rgb (192,192,192) hsl (0.0%, 75%) Grey
gray #808080 rgb (128,128,128) hsl (0.0%, 50%) Dark grey
black # 000000 or # 000 rgb (0,0,0) hsl (0.0%, 0%) Black
maroon #800000 rgb (128,0,0) hsl (0.100%, 25%) Dark red
red # ff0000 or # f00 rgb (255,0,0) hsl (0.100%, 50%) Red
orange # ffa500 rgb (255,165,0) hsl (38.8,100%, 50%) Orange
yellow # ffff00 or # ff0 rgb (255,255,0) hsl (60,100%, 50%) Yellow
olive #808000 rgb (128,128,0) hsl (60,100%, 25%) Olive
lime # 00ff00 or # 0f0 rgb (0.255.0) hsl (120,100%, 50%) Light green
green #008000 rgb (0.128.0) hsl (120,100%, 25%) Green
aqua # 00ffff or # 0ff rgb (0,255,255) hsl (180,100%, 50%) Blue
blue # 0000ff or # 00f rgb (0,0,255) hsl (240,100%, 50%) Blue
navy #000080 rgb (0,0,128) hsl (240,100%, 25%) Navy blue
teal #008080 rgb (0.128.128) hsl (180,100%, 25%) Blue green
fuchsia # ff00ff or # f0f rgb (255,0,255) hsl (300,100%, 50%) Pink
purple #800080 rgb (128,0,128) hsl (300,100%, 25%) Violet

With RGB

Internet Explorer Chrome Opera Safari Firefox Android iOS
5.0+ 1.0+ 3.5+ 1.3+ 1.0+ 1.0+ 1.0+

You can determine the color using the decimal values ​​of the red, green, and blue components. Each of the three color components takes a value from 0 to 255. It is also permissible to set the color as a percentage, while 100% will correspond to the number 255. First, the rgb keyword is specified, and then in parentheses, the color components are indicated, separated by commas, for example rgb (255 , 128, 128) or rgb (100%, 50%, 50%).

RGBA

Internet Explorer Chrome Opera Safari Firefox Android iOS
9.0+ 1.0+ 10.0+ 3.1+ 3.0+ 2.1+ 2.0+

The RGBA format is similar in syntax to RGB, but includes an alpha channel that controls the transparency of the element. A value of 0 corresponds to full transparency, 1 to opacity, and an intermediate value like 0.5 to semi-transparency.

RGBA was added in CSS3, so CSS code validation should be done using this version. It should be noted that the CSS3 standard is still under development and some features may change. For example, an RGB color added to the background-color property is validated, but a color added to the background property no longer. At the same time, browsers quite correctly understand the color for both properties.

Hsl

Internet Explorer Chrome Opera Safari Firefox Android iOS
9.0+ 1.0+ 9.6+ 3.1+ 3.0+ 2.1+ 2.0+

The name of the HSL format is formed from a combination of the first letters Hue (hue), Saturate (saturation) and Lightness (lightness). Hue is the value of a color on the color wheel (Fig. 1) and is given in degrees. 0 ° is red, 120 ° is green, and 240 ° is blue. The hue value can range from 0 to 359.

Rice. 1. Color wheel

Saturation is the intensity of a color, measured as a percentage from 0% to 100%. A value of 0% denotes no color and a shade of gray, 100% is the maximum saturation value.

Lightness sets how bright the color is and is indicated as a percentage from 0% to 100%. Low values ​​make the color darker, and high values ​​lighten, extreme values ​​of 0% and 100% correspond to black and white.

HSLA

Internet Explorer Chrome Opera Safari Firefox Android iOS
9.0+ 1.0+ 10.0+ 3.1+ 3.0+ 2.1+ 2.0+

The HSLA format is similar in syntax to HSL, but includes an alpha channel that sets the transparency of the element. A value of 0 corresponds to full transparency, 1 to opacity, and an intermediate value like 0.5 to semi-transparency.

Color values ​​in RGBA, HSL, and HSLA formats have been added in CSS3, so be sure to check for version validity when using these formats.

HTML5 CSS2.1 CSS3 IE Cr Op Sa Fx

Colors

Warning

All the methods for catching a lion listed on the site are theoretical and based on computational methods. The authors do not guarantee your safety when using them and disclaim any responsibility for the result. Remember, the lion is a predator and a dangerous animal!

Arrrrgh!

The result of this example is shown in Fig. 2.

Rice. 2. Colors on the web page

Top related articles