HEX: #B1DADD
RGB: (177,218,221)
#B1DADD contains red, green and blue colors in about the same proportion. Web safe color of #B1DADD is #99CCCC (or #9CC).
#B1DADD color RGB value is (177,218,221).
RGB: (177,218,221) (69%,85%,87%)
R 177 of 255 = 69%
G 218 of 255 = 85%
B 221 of 255 = 87%
R + G + B ~ 80%. #B1DADD is quite light color.
R + G + B =
177 + 218 + 221 = 616 (100%)
R 177 of 616 ~ 28.73%
G 218 of 616 ~ 35.39%
B 221 of 616 ~ 35.88%
#B1DADD color CMYK value is (20,1,0,13).
CMYK: (20,1,0,13) C20M1Y0K13 (20%,1%,0%,13%) (0.20/0.01/0.00/0.13)
B1 | DA | DD | |
---|---|---|---|
RGB | 177 | 218 | 221 |
HSL | 184° | 39.29% | 78.04% |
HSB/HSV | 184° | 19.91% | 86.67% |
CMYK | 19.91% | 1.36% | 0.00% |
13.33% |
HEX | B1 | DA | DD |
Decimal | 177 | 218 | 221 |
Binary | 10110001 | 11011010 | 11011101 |
Octal | 261 | 332 | 335 |
Examples of css and html codes for elements with #B1DADD color. Also use rgb(177,218,221) instead hex code.
.myTextColor { color: #B1DADD; }
<p style="color:#B1DADD">This sample text font color is #B1DADD.</p>
This text font color is #B1DADD.
.myBgColor { background-color: #B1DADD; }
<div style="background-color:#B1DADD">Inner text</div>
This div background color is #B1DADD.
.myBorderColor { border: 1px solid #B1DADD; }
<div style="border:3px solid #B1DADD">Div</div>
This div border color is #B1DADD.
.myOpacity80 { color: #B1DADD; opacity: 0.8; }
<p style="color:#B1DADD;opacity:0.8;">80%</p>
Text with #B1DADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1DADD;}
<p style="text-shadow: 3px 3px 1px #B1DADD">Text here.</p>
This text has shadow with #B1DADD color.
.textShadow {text-shadow: 3px 3px 1px #B1DADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1DADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1DADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1DADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1DADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1DADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1DADD; -webkit-box-shadow: 1px 1px 3px 2px #B1DADD; box-shadow: 1px 1px 3px 2px #B1DADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1DADD; -webkit-box-shadow: 1px 1px 3px 2px #B1DADD; box-shadow:1px 1px 3px 2px #B1DADD;">
Div content here</div>
This text has color #B1DADD on black background.
This text has color #B1DADD on white background.
This text has black color on #B1DADD background.
This text has white color on #B1DADD background.