HEX: #BDFDDC
RGB: (189,253,220)
#BDFDDC contains mainly green and blue colors. Web safe color of #BDFDDC is #CCFFCC (or #CFC).
#BDFDDC color RGB value is (189,253,220).
RGB: (189,253,220) (74%,99%,86%)
R 189 of 255 = 74%
G 253 of 255 = 99%
B 220 of 255 = 86%
R + G + B ~ 86%. #BDFDDC is light color.
R + G + B =
189 + 253 + 220 = 662 (100%)
R 189 of 662 ~ 28.55%
G 253 of 662 ~ 38.22%
B 220 of 662 ~ 33.23%
#BDFDDC color CMYK value is (25,0,13,1).
CMYK: (25,0,13,1) C25M0Y13K1 (25%,0%,13%,1%) (0.25/0.00/0.13/0.01)
BD | FD | DC | |
---|---|---|---|
RGB | 189 | 253 | 220 |
HSL | 149° | 94.12% | 86.67% |
HSB/HSV | 149° | 25.30% | 99.22% |
CMYK | 25.30% | 0.00% | 13.04% |
0.78% |
HEX | BD | FD | DC |
Decimal | 189 | 253 | 220 |
Binary | 10111101 | 11111101 | 11011100 |
Octal | 275 | 375 | 334 |
Examples of css and html codes for elements with #BDFDDC color. Also use rgb(189,253,220) instead hex code.
.myTextColor { color: #BDFDDC; }
<p style="color:#BDFDDC">This sample text font color is #BDFDDC.</p>
This text font color is #BDFDDC.
.myBgColor { background-color: #BDFDDC; }
<div style="background-color:#BDFDDC">Inner text</div>
This div background color is #BDFDDC.
.myBorderColor { border: 1px solid #BDFDDC; }
<div style="border:3px solid #BDFDDC">Div</div>
This div border color is #BDFDDC.
.myOpacity80 { color: #BDFDDC; opacity: 0.8; }
<p style="color:#BDFDDC;opacity:0.8;">80%</p>
Text with #BDFDDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDFDDC;}
<p style="text-shadow: 3px 3px 1px #BDFDDC">Text here.</p>
This text has shadow with #BDFDDC color.
.textShadow {text-shadow: 3px 3px 1px #BDFDDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDFDDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDFDDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDFDDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDFDDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDFDDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDFDDC; -webkit-box-shadow: 1px 1px 3px 2px #BDFDDC; box-shadow: 1px 1px 3px 2px #BDFDDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDFDDC; -webkit-box-shadow: 1px 1px 3px 2px #BDFDDC; box-shadow:1px 1px 3px 2px #BDFDDC;">
Div content here</div>
This text has color #BDFDDC on black background.
This text has color #BDFDDC on white background.
This text has black color on #BDFDDC background.
This text has white color on #BDFDDC background.