HEX: #B3D8DC
RGB: (179,216,220)
#B3D8DC contains red, green and blue colors in about the same proportion. Web safe color of #B3D8DC is #99CCCC (or #9CC).
#B3D8DC color RGB value is (179,216,220).
RGB: (179,216,220) (70%,85%,86%)
R 179 of 255 = 70%
G 216 of 255 = 85%
B 220 of 255 = 86%
R + G + B ~ 80%. #B3D8DC is quite light color.
R + G + B =
179 + 216 + 220 = 615 (100%)
R 179 of 615 ~ 29.11%
G 216 of 615 ~ 35.12%
B 220 of 615 ~ 35.77%
#B3D8DC color CMYK value is (19,2,0,14).
CMYK: (19,2,0,14) C19M2Y0K14 (19%,2%,0%,14%) (0.19/0.02/0.00/0.14)
B3 | D8 | DC | |
---|---|---|---|
RGB | 179 | 216 | 220 |
HSL | 186° | 36.94% | 78.24% |
HSB/HSV | 186° | 18.64% | 86.27% |
CMYK | 18.64% | 1.82% | 0.00% |
13.73% |
HEX | B3 | D8 | DC |
Decimal | 179 | 216 | 220 |
Binary | 10110011 | 11011000 | 11011100 |
Octal | 263 | 330 | 334 |
Examples of css and html codes for elements with #B3D8DC color. Also use rgb(179,216,220) instead hex code.
.myTextColor { color: #B3D8DC; }
<p style="color:#B3D8DC">This sample text font color is #B3D8DC.</p>
This text font color is #B3D8DC.
.myBgColor { background-color: #B3D8DC; }
<div style="background-color:#B3D8DC">Inner text</div>
This div background color is #B3D8DC.
.myBorderColor { border: 1px solid #B3D8DC; }
<div style="border:3px solid #B3D8DC">Div</div>
This div border color is #B3D8DC.
.myOpacity80 { color: #B3D8DC; opacity: 0.8; }
<p style="color:#B3D8DC;opacity:0.8;">80%</p>
Text with #B3D8DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B3D8DC;}
<p style="text-shadow: 3px 3px 1px #B3D8DC">Text here.</p>
This text has shadow with #B3D8DC color.
.textShadow {text-shadow: 3px 3px 1px #B3D8DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B3D8DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B3D8DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B3D8DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B3D8DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B3D8DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B3D8DC; -webkit-box-shadow: 1px 1px 3px 2px #B3D8DC; box-shadow: 1px 1px 3px 2px #B3D8DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B3D8DC; -webkit-box-shadow: 1px 1px 3px 2px #B3D8DC; box-shadow:1px 1px 3px 2px #B3D8DC;">
Div content here</div>
This text has color #B3D8DC on black background.
This text has color #B3D8DC on white background.
This text has black color on #B3D8DC background.
This text has white color on #B3D8DC background.