HTML color codes for French Blue - hexadecimal + RGB

Discover all HTML codes for the color French Blue - hexadecimal, rgb, hsl, hsv, and cmyk, as well as different combinations, schemes, temperatures, hues, and types of French Blue color.

#28036a

códigos del color French Blue

Complementary color of French Blue:

The complementary color of a color is the opposite of it on the color wheel (chromatic circle)

#456a03

Monochromatic scheme of the color French Blue

#000017
#12062d
#1a0a44
#23065d
#391379
#593098
#794cb9
#9a6ada

This scheme is based on the color French Blue and is composed of different hues, tones, and shades, both dark and light.

HTML and CSS codes for the color French Blue

formatcode
hex#28036a
rgbrgb(40,3,106)
hslhsl(262,95%,22%)
cmykcmyk(63, 98, 0, 59)
hsvhsv(262, 98%, 42%)

What is the French Blue color in RGB format?

The French Blue color in RGB format is composed of (40 in the red channel), (3 in the green channel), and (106 in the blue channel).

What is the French Blue color in CMYK format?

It is composed of (63%) cyan, (98%) magenta, (0%) yellow, and (59%) black / key.

What is the composition of the French Blue color in HSL?

It is composed of (262°) hue, (95%) saturation, and (22%) lightness.

What is the French Blue color in HSV format?

The French Blue color in HSV format is composed of (262°) hue, (98%) saturation, and (42%) value.

Analogous scheme of the color French Blue

Analogous colors are obtained from the two closest colors within the color wheel.

#2a036d
#5f036d
#03116d

Triadic scheme of the color French Blue

The triadic scheme is obtained from 3 colors equally spaced from each other within the color wheel

#28036a
#6a2803
#036a28

Tetradic scheme of the color French Blue

This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.

#28036a
#6a0312
#456a03
#036a5b

Split complementary scheme of the color French Blue

This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.

#28036a
#6a0330
#076a03

Tints of the color French Blue

Tints are obtained from the base color French Blue up to reaching white, finding in between shades of pastel colors.

#28036a
#533588
#7e68a6
#a99ac3
#d4cde1
#ffffff

Shades of the color French Blue

These shades are obtained from the base color French Blue up to reaching black.

#28036a
#200255
#180240
#10012a
#080115
#000000

Check the contrast of the color French Blue.

You can now validate the contrast relationship of the color French Blue, whether using it as a background color or as a text color.

Change the text color.
Contrast ratio: 16.01

Contrast ratio test of the color French Blue as a background

Change the background color
Contrast ratio: 1.03

Contrast ratio test of the color French Blue as text.

How to implement the color French Blue in HTML and CSS

Here are examples of code to use the French Blue on your web page. Remember that you can implement the color in HTML using color codes such as hexadecimal, RGB, or HSL, and also directly with the color name written in English (as long as it is natively supported by HTML).

Background color French Blue in HTML - CSS.

To set the background color, you can use inline styles or apply them in a CSS stylesheet

<div style="background:#28036a;"> Color French Blue as the background of a div.</div>
/* Color French Blue as the background of the body tag with CSS. */
body {
background: #28036a;
}

To set the text color French Blue in HTML - CSS.

To set the text color, you can use inline styles or apply them in a CSS stylesheet.

<p style="color:#28036a;"> Color French Blue as the text color.</p>
p {
color:#28036a ;
}