HEX: #84ADCD
RGB: (132,173,205)
#84ADCD contains mainly green and blue colors. Web safe color of #84ADCD is #9999CC (or #99C).
#84ADCD color RGB value is (132,173,205).
RGB: (132,173,205) (52%,68%,80%)
R 132 of 255 = 52%
G 173 of 255 = 68%
B 205 of 255 = 80%
R + G + B ~ 67%. #84ADCD is quite light color.
R + G + B =
132 + 173 + 205 = 510 (100%)
R 132 of 510 ~ 25.88%
G 173 of 510 ~ 33.92%
B 205 of 510 ~ 40.2%
#84ADCD color CMYK value is (36,16,0,20).
CMYK: (36,16,0,20) C36M16Y0K20 (36%,16%,0%,20%) (0.36/0.16/0.00/0.20)
84 | AD | CD | |
---|---|---|---|
RGB | 132 | 173 | 205 |
HSL | 206° | 42.20% | 66.08% |
HSB/HSV | 206° | 35.61% | 80.39% |
CMYK | 35.61% | 15.61% | 0.00% |
19.61% |
HEX | 84 | AD | CD |
Decimal | 132 | 173 | 205 |
Binary | 10000100 | 10101101 | 11001101 |
Octal | 204 | 255 | 315 |
Examples of css and html codes for elements with #84ADCD color. Also use rgb(132,173,205) instead hex code.
.myTextColor { color: #84ADCD; }
<p style="color:#84ADCD">This sample text font color is #84ADCD.</p>
This text font color is #84ADCD.
.myBgColor { background-color: #84ADCD; }
<div style="background-color:#84ADCD">Inner text</div>
This div background color is #84ADCD.
.myBorderColor { border: 1px solid #84ADCD; }
<div style="border:3px solid #84ADCD">Div</div>
This div border color is #84ADCD.
.myOpacity80 { color: #84ADCD; opacity: 0.8; }
<p style="color:#84ADCD;opacity:0.8;">80%</p>
Text with #84ADCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84ADCD;}
<p style="text-shadow: 3px 3px 1px #84ADCD">Text here.</p>
This text has shadow with #84ADCD color.
.textShadow {text-shadow: 3px 3px 1px #84ADCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84ADCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #84ADCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84ADCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84ADCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #84ADCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84ADCD; -webkit-box-shadow: 1px 1px 3px 2px #84ADCD; box-shadow: 1px 1px 3px 2px #84ADCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84ADCD; -webkit-box-shadow: 1px 1px 3px 2px #84ADCD; box-shadow:1px 1px 3px 2px #84ADCD;">
Div content here</div>
This text has color #84ADCD on black background.
This text has color #84ADCD on white background.
This text has black color on #84ADCD background.
This text has white color on #84ADCD background.