#20a8ac hex color information.
RGB value of #20a8ac is (32,168,172)
Change page background color to #20a8ac
| Reset
| RGB | 32 | 168 | 172 |
|---|---|---|---|
| HSL | 0.50 | 0.69 | 0.40 |
| HSV | 182° | 81° | 67° |
| CMYK | 0.81 | 0.02 | 0.00 0.33 |
| XYZ | 22.0447 | 31.2909 | 43.9076 |
| Yxy | 31.2909 | 0.2267 | 0.3218 |
| Hunter Lab | 55.9383 | -27.5469 | -7.3817 |
| CIE-Lab | 62.7524 | -32.2473 | -11.9798 |
#20a8ac hex color red value is 32, green value is 168 and the blue value of its RGB is 168. Cylindrical-coordinate representations (also known as HSL) of color #20a8ac hue: 0.50 , saturation: 0.69 and the lightness value of 20a8ac is 0.40.
The process color (four color CMYK) of #20a8ac hex color is 0.81, 0.02, 0.00, 0.33. Web safe color of #20a8ac is #339999
Color #20a8ac contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00100000 | 10101000 | 10101100 |
| Octal | 40 | 250 | 254 |
| Decimal | 32 | 168 | 172 |
| Hexadecimal | 20 | A8 | AC |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#20a8ac; }
.myforecolor {color:#20a8ac; }
.mybordercolor {border:3px solid #20a8ac; }
This sample text font color is #20a8ac
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#20a8ac">Text here</p>
This div background color is #20a8ac
<div style="background-color:#20a8ac">
Div content here</div>
This div border color is #20a8ac
<div style="border:3px solid #20a8ac">
Div here</div>
| #20a8ac | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(32,168,172, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #20a8ac;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #20a8ac;
-webkit-box-shadow: 1px 1px 3px 2px #20a8ac;
box-shadow: 1px 1px 3px 2px #20a8ac;
}
<p style="text-shadow: 4px 4px 2px rgba(32,168,172, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #20a8ac">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #20a8ac
<div style="-moz-box-shadow: 1px 1px 3px 2px #20a8ac; -webkit-box-shadow: 1px 1px 3px 2px #20a8ac; box-shadow: 1px 1px 3px 2px #20a8ac;">
Div content here</div>