HEX: #B1D0EB
RGB: (177,208,235)
#B1D0EB contains red, green and blue colors in about the same proportion. Web safe color of #B1D0EB is #99CCFF (or #9CF).
#B1D0EB color RGB value is (177,208,235).
RGB: (177,208,235) (69%,82%,92%)
R 177 of 255 = 69%
G 208 of 255 = 82%
B 235 of 255 = 92%
R + G + B ~ 81%. #B1D0EB is quite light color.
R + G + B =
177 + 208 + 235 = 620 (100%)
R 177 of 620 ~ 28.55%
G 208 of 620 ~ 33.55%
B 235 of 620 ~ 37.9%
#B1D0EB color CMYK value is (25,11,0,8).
CMYK: (25,11,0,8) C25M11Y0K8 (25%,11%,0%,8%) (0.25/0.11/0.00/0.08)
B1 | D0 | EB | |
---|---|---|---|
RGB | 177 | 208 | 235 |
HSL | 208° | 59.18% | 80.78% |
HSB/HSV | 208° | 24.68% | 92.16% |
CMYK | 24.68% | 11.49% | 0.00% |
7.84% |
HEX | B1 | D0 | EB |
Decimal | 177 | 208 | 235 |
Binary | 10110001 | 11010000 | 11101011 |
Octal | 261 | 320 | 353 |
Examples of css and html codes for elements with #B1D0EB color. Also use rgb(177,208,235) instead hex code.
.myTextColor { color: #B1D0EB; }
<p style="color:#B1D0EB">This sample text font color is #B1D0EB.</p>
This text font color is #B1D0EB.
.myBgColor { background-color: #B1D0EB; }
<div style="background-color:#B1D0EB">Inner text</div>
This div background color is #B1D0EB.
.myBorderColor { border: 1px solid #B1D0EB; }
<div style="border:3px solid #B1D0EB">Div</div>
This div border color is #B1D0EB.
.myOpacity80 { color: #B1D0EB; opacity: 0.8; }
<p style="color:#B1D0EB;opacity:0.8;">80%</p>
Text with #B1D0EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1D0EB;}
<p style="text-shadow: 3px 3px 1px #B1D0EB">Text here.</p>
This text has shadow with #B1D0EB color.
.textShadow {text-shadow: 3px 3px 1px #B1D0EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1D0EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1D0EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1D0EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1D0EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1D0EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1D0EB; -webkit-box-shadow: 1px 1px 3px 2px #B1D0EB; box-shadow: 1px 1px 3px 2px #B1D0EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1D0EB; -webkit-box-shadow: 1px 1px 3px 2px #B1D0EB; box-shadow:1px 1px 3px 2px #B1D0EB;">
Div content here</div>
This text has color #B1D0EB on black background.
This text has color #B1D0EB on white background.
This text has black color on #B1D0EB background.
This text has white color on #B1D0EB background.