HTML color codes for garnet - hexadecimal + RGB
Discover all HTML codes for the color garnet - hexadecimal, rgb, hsl, hsv, and cmyk, as well as different combinations, schemes, temperatures, hues, and types of garnet color.
#b03648
Complementary color of garnet:
The complementary color of a color is the opposite of it on the color wheel (chromatic circle)
#36b09e
Monochromatic scheme of the color garnet
This scheme is based on the color garnet and is composed of different hues, tones, and shades, both dark and light.
HTML and CSS codes for the color garnet
format | code |
---|---|
hex | #b03648 |
rgb | rgb(176,54,72) |
hsl | hsl(352,54%,46%) |
cmyk | cmyk(0, 70, 60, 31) |
hsv | hsv(352, 70%, 70%) |
What is the garnet color in RGB format?
The garnet color in RGB format is composed of (176 in the red channel), (54 in the green channel), and (72 in the blue channel).
What is the garnet color in CMYK format?
It is composed of (0%) cyan, (70%) magenta, (60%) yellow, and (31%) black / key.
What is the composition of the garnet color in HSL?
It is composed of (352°) hue, (54%) saturation, and (46%) lightness.
What is the garnet color in HSV format?
The garnet color in HSV format is composed of (352°) hue, (70%) saturation, and (70%) value.
Analogous scheme of the color garnet
Analogous colors are obtained from the two closest colors within the color wheel.
Triadic scheme of the color garnet
The triadic scheme is obtained from 3 colors equally spaced from each other within the color wheel
Tetradic scheme of the color garnet
This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.
Split complementary scheme of the color garnet
This color scheme is obtained by using two pairs of opposing colors on the color wheel in a rectangular shape.
Tints of the color garnet
Tints are obtained from the base color garnet up to reaching white, finding in between shades of pastel colors.
Shades of the color garnet
These shades are obtained from the base color garnet up to reaching black.
Check the contrast of the color garnet.
You can now validate the contrast relationship of the color garnet, whether using it as a background color or as a text color.
Contrast ratio test of the color garnet as a background
Contrast ratio test of the color garnet as text.
How to implement the color garnet in HTML and CSS
Here are examples of code to use the garnet 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 garnet in HTML - CSS.
To set the background color, you can use inline styles or apply them in a CSS stylesheet
<div style="background:#b03648;"> Color garnet as the background of a div.</div>
/* Color garnet as the background of the body tag with CSS. */body {background: #b03648;}
To set the text color garnet in HTML - CSS.
To set the text color, you can use inline styles or apply them in a CSS stylesheet.
<p style="color:#b03648;"> Color garnet as the text color.</p>
p {color:#b03648 ;}