HEX: #95BCD6
RGB: (149,188,214)
#95BCD6 contains mainly green and blue colors. Web safe color of #95BCD6 is #99CCCC (or #9CC).
#95BCD6 color RGB value is (149,188,214).
RGB: (149,188,214) (58%,74%,84%)
R 149 of 255 = 58%
G 188 of 255 = 74%
B 214 of 255 = 84%
R + G + B ~ 72%. #95BCD6 is quite light color.
R + G + B =
149 + 188 + 214 = 551 (100%)
R 149 of 551 ~ 27.04%
G 188 of 551 ~ 34.12%
B 214 of 551 ~ 38.84%
#95BCD6 color CMYK value is (30,12,0,16).
CMYK: (30,12,0,16) C30M12Y0K16 (30%,12%,0%,16%) (0.30/0.12/0.00/0.16)
95 | BC | D6 | |
---|---|---|---|
RGB | 149 | 188 | 214 |
HSL | 204° | 44.22% | 71.18% |
HSB/HSV | 204° | 30.37% | 83.92% |
CMYK | 30.37% | 12.15% | 0.00% |
16.08% |
HEX | 95 | BC | D6 |
Decimal | 149 | 188 | 214 |
Binary | 10010101 | 10111100 | 11010110 |
Octal | 225 | 274 | 326 |
Examples of css and html codes for elements with #95BCD6 color. Also use rgb(149,188,214) instead hex code.
.myTextColor { color: #95BCD6; }
<p style="color:#95BCD6">This sample text font color is #95BCD6.</p>
This text font color is #95BCD6.
.myBgColor { background-color: #95BCD6; }
<div style="background-color:#95BCD6">Inner text</div>
This div background color is #95BCD6.
.myBorderColor { border: 1px solid #95BCD6; }
<div style="border:3px solid #95BCD6">Div</div>
This div border color is #95BCD6.
.myOpacity80 { color: #95BCD6; opacity: 0.8; }
<p style="color:#95BCD6;opacity:0.8;">80%</p>
Text with #95BCD6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95BCD6;}
<p style="text-shadow: 3px 3px 1px #95BCD6">Text here.</p>
This text has shadow with #95BCD6 color.
.textShadow {text-shadow: 3px 3px 1px #95BCD6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95BCD6, 5px 5px 20px red">Text here.</p>
This text has shadow with #95BCD6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95BCD6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95BCD6, Direction=45, Strength=4)">Text</p>
This text has shadow with #95BCD6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95BCD6; -webkit-box-shadow: 1px 1px 3px 2px #95BCD6; box-shadow: 1px 1px 3px 2px #95BCD6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95BCD6; -webkit-box-shadow: 1px 1px 3px 2px #95BCD6; box-shadow:1px 1px 3px 2px #95BCD6;">
Div content here</div>
This text has color #95BCD6 on black background.
This text has color #95BCD6 on white background.
This text has black color on #95BCD6 background.
This text has white color on #95BCD6 background.