HEX: #9DD2EB
RGB: (157,210,235)
#9DD2EB contains mainly green and blue colors. Web safe color of #9DD2EB is #99CCFF (or #9CF).
#9DD2EB color RGB value is (157,210,235).
RGB: (157,210,235) (62%,82%,92%)
R 157 of 255 = 62%
G 210 of 255 = 82%
B 235 of 255 = 92%
R + G + B ~ 79%. #9DD2EB is quite light color.
R + G + B =
157 + 210 + 235 = 602 (100%)
R 157 of 602 ~ 26.08%
G 210 of 602 ~ 34.88%
B 235 of 602 ~ 39.04%
#9DD2EB color CMYK value is (33,11,0,8).
CMYK: (33,11,0,8) C33M11Y0K8 (33%,11%,0%,8%) (0.33/0.11/0.00/0.08)
9D | D2 | EB | |
---|---|---|---|
RGB | 157 | 210 | 235 |
HSL | 199° | 66.10% | 76.86% |
HSB/HSV | 199° | 33.19% | 92.16% |
CMYK | 33.19% | 10.64% | 0.00% |
7.84% |
HEX | 9D | D2 | EB |
Decimal | 157 | 210 | 235 |
Binary | 10011101 | 11010010 | 11101011 |
Octal | 235 | 322 | 353 |
Examples of css and html codes for elements with #9DD2EB color. Also use rgb(157,210,235) instead hex code.
.myTextColor { color: #9DD2EB; }
<p style="color:#9DD2EB">This sample text font color is #9DD2EB.</p>
This text font color is #9DD2EB.
.myBgColor { background-color: #9DD2EB; }
<div style="background-color:#9DD2EB">Inner text</div>
This div background color is #9DD2EB.
.myBorderColor { border: 1px solid #9DD2EB; }
<div style="border:3px solid #9DD2EB">Div</div>
This div border color is #9DD2EB.
.myOpacity80 { color: #9DD2EB; opacity: 0.8; }
<p style="color:#9DD2EB;opacity:0.8;">80%</p>
Text with #9DD2EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9DD2EB;}
<p style="text-shadow: 3px 3px 1px #9DD2EB">Text here.</p>
This text has shadow with #9DD2EB color.
.textShadow {text-shadow: 3px 3px 1px #9DD2EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9DD2EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #9DD2EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9DD2EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9DD2EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #9DD2EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9DD2EB; -webkit-box-shadow: 1px 1px 3px 2px #9DD2EB; box-shadow: 1px 1px 3px 2px #9DD2EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9DD2EB; -webkit-box-shadow: 1px 1px 3px 2px #9DD2EB; box-shadow:1px 1px 3px 2px #9DD2EB;">
Div content here</div>
This text has color #9DD2EB on black background.
This text has color #9DD2EB on white background.
This text has black color on #9DD2EB background.
This text has white color on #9DD2EB background.