HEX: #77CCDB
RGB: (119,204,219)
#77CCDB contains mainly green and blue colors. Web safe color of #77CCDB is #66CCCC (or #6CC).
#77CCDB color RGB value is (119,204,219).
RGB: (119,204,219) (47%,80%,86%)
R 119 of 255 = 47%
G 204 of 255 = 80%
B 219 of 255 = 86%
R + G + B ~ 71%. #77CCDB is quite light color.
R + G + B =
119 + 204 + 219 = 542 (100%)
R 119 of 542 ~ 21.96%
G 204 of 542 ~ 37.64%
B 219 of 542 ~ 40.41%
#77CCDB color CMYK value is (46,7,0,14).
CMYK: (46,7,0,14) C46M7Y0K14 (46%,7%,0%,14%) (0.46/0.07/0.00/0.14)
77 | CC | DB | |
---|---|---|---|
RGB | 119 | 204 | 219 |
HSL | 189° | 58.14% | 66.27% |
HSB/HSV | 189° | 45.66% | 85.88% |
CMYK | 45.66% | 6.85% | 0.00% |
14.12% |
HEX | 77 | CC | DB |
Decimal | 119 | 204 | 219 |
Binary | 1110111 | 11001100 | 11011011 |
Octal | 167 | 314 | 333 |
Examples of css and html codes for elements with #77CCDB color. Also use rgb(119,204,219) instead hex code.
.myTextColor { color: #77CCDB; }
<p style="color:#77CCDB">This sample text font color is #77CCDB.</p>
This text font color is #77CCDB.
.myBgColor { background-color: #77CCDB; }
<div style="background-color:#77CCDB">Inner text</div>
This div background color is #77CCDB.
.myBorderColor { border: 1px solid #77CCDB; }
<div style="border:3px solid #77CCDB">Div</div>
This div border color is #77CCDB.
.myOpacity80 { color: #77CCDB; opacity: 0.8; }
<p style="color:#77CCDB;opacity:0.8;">80%</p>
Text with #77CCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77CCDB;}
<p style="text-shadow: 3px 3px 1px #77CCDB">Text here.</p>
This text has shadow with #77CCDB color.
.textShadow {text-shadow: 3px 3px 1px #77CCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77CCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #77CCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77CCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77CCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #77CCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77CCDB; -webkit-box-shadow: 1px 1px 3px 2px #77CCDB; box-shadow: 1px 1px 3px 2px #77CCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77CCDB; -webkit-box-shadow: 1px 1px 3px 2px #77CCDB; box-shadow:1px 1px 3px 2px #77CCDB;">
Div content here</div>
This text has color #77CCDB on black background.
This text has color #77CCDB on white background.
This text has black color on #77CCDB background.
This text has white color on #77CCDB background.