HEX: #83BBEE
RGB: (131,187,238)
#83BBEE contains mainly green and blue colors. Web safe color of #83BBEE is #99CCFF (or #9CF).
#83BBEE color RGB value is (131,187,238).
RGB: (131,187,238) (51%,73%,93%)
R 131 of 255 = 51%
G 187 of 255 = 73%
B 238 of 255 = 93%
R + G + B ~ 72%. #83BBEE is quite light color.
R + G + B =
131 + 187 + 238 = 556 (100%)
R 131 of 556 ~ 23.56%
G 187 of 556 ~ 33.63%
B 238 of 556 ~ 42.81%
#83BBEE color CMYK value is (45,21,0,7).
CMYK: (45,21,0,7) C45M21Y0K7 (45%,21%,0%,7%) (0.45/0.21/0.00/0.07)
83 | BB | EE | |
---|---|---|---|
RGB | 131 | 187 | 238 |
HSL | 209° | 75.89% | 72.35% |
HSB/HSV | 209° | 44.96% | 93.33% |
CMYK | 44.96% | 21.43% | 0.00% |
6.67% |
HEX | 83 | BB | EE |
Decimal | 131 | 187 | 238 |
Binary | 10000011 | 10111011 | 11101110 |
Octal | 203 | 273 | 356 |
Examples of css and html codes for elements with #83BBEE color. Also use rgb(131,187,238) instead hex code.
.myTextColor { color: #83BBEE; }
<p style="color:#83BBEE">This sample text font color is #83BBEE.</p>
This text font color is #83BBEE.
.myBgColor { background-color: #83BBEE; }
<div style="background-color:#83BBEE">Inner text</div>
This div background color is #83BBEE.
.myBorderColor { border: 1px solid #83BBEE; }
<div style="border:3px solid #83BBEE">Div</div>
This div border color is #83BBEE.
.myOpacity80 { color: #83BBEE; opacity: 0.8; }
<p style="color:#83BBEE;opacity:0.8;">80%</p>
Text with #83BBEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83BBEE;}
<p style="text-shadow: 3px 3px 1px #83BBEE">Text here.</p>
This text has shadow with #83BBEE color.
.textShadow {text-shadow: 3px 3px 1px #83BBEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83BBEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #83BBEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83BBEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83BBEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #83BBEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83BBEE; -webkit-box-shadow: 1px 1px 3px 2px #83BBEE; box-shadow: 1px 1px 3px 2px #83BBEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83BBEE; -webkit-box-shadow: 1px 1px 3px 2px #83BBEE; box-shadow:1px 1px 3px 2px #83BBEE;">
Div content here</div>
This text has color #83BBEE on black background.
This text has color #83BBEE on white background.
This text has black color on #83BBEE background.
This text has white color on #83BBEE background.