HEX: #BDD5CC
RGB: (189,213,204)
#BDD5CC contains red, green and blue colors in about the same proportion. Web safe color of #BDD5CC is #CCCCCC (or #CCC).
#BDD5CC color RGB value is (189,213,204).
RGB: (189,213,204) (74%,84%,80%)
R 189 of 255 = 74%
G 213 of 255 = 84%
B 204 of 255 = 80%
R + G + B ~ 79%. #BDD5CC is quite light color.
R + G + B =
189 + 213 + 204 = 606 (100%)
R 189 of 606 ~ 31.19%
G 213 of 606 ~ 35.15%
B 204 of 606 ~ 33.66%
#BDD5CC color CMYK value is (11,0,4,16).
CMYK: (11,0,4,16) C11M0Y4K16 (11%,0%,4%,16%) (0.11/0.00/0.04/0.16)
BD | D5 | CC | |
---|---|---|---|
RGB | 189 | 213 | 204 |
HSL | 158° | 22.22% | 78.82% |
HSB/HSV | 158° | 11.27% | 83.53% |
CMYK | 11.27% | 0.00% | 4.23% |
16.47% |
HEX | BD | D5 | CC |
Decimal | 189 | 213 | 204 |
Binary | 10111101 | 11010101 | 11001100 |
Octal | 275 | 325 | 314 |
Examples of css and html codes for elements with #BDD5CC color. Also use rgb(189,213,204) instead hex code.
.myTextColor { color: #BDD5CC; }
<p style="color:#BDD5CC">This sample text font color is #BDD5CC.</p>
This text font color is #BDD5CC.
.myBgColor { background-color: #BDD5CC; }
<div style="background-color:#BDD5CC">Inner text</div>
This div background color is #BDD5CC.
.myBorderColor { border: 1px solid #BDD5CC; }
<div style="border:3px solid #BDD5CC">Div</div>
This div border color is #BDD5CC.
.myOpacity80 { color: #BDD5CC; opacity: 0.8; }
<p style="color:#BDD5CC;opacity:0.8;">80%</p>
Text with #BDD5CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDD5CC;}
<p style="text-shadow: 3px 3px 1px #BDD5CC">Text here.</p>
This text has shadow with #BDD5CC color.
.textShadow {text-shadow: 3px 3px 1px #BDD5CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDD5CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDD5CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDD5CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDD5CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDD5CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDD5CC; -webkit-box-shadow: 1px 1px 3px 2px #BDD5CC; box-shadow: 1px 1px 3px 2px #BDD5CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDD5CC; -webkit-box-shadow: 1px 1px 3px 2px #BDD5CC; box-shadow:1px 1px 3px 2px #BDD5CC;">
Div content here</div>
This text has color #BDD5CC on black background.
This text has color #BDD5CC on white background.
This text has black color on #BDD5CC background.
This text has white color on #BDD5CC background.