HEX: #7EBCC9
RGB: (126,188,201)
#7EBCC9 contains mainly green and blue colors. Web safe color of #7EBCC9 is #66CCCC (or #6CC).
#7EBCC9 color RGB value is (126,188,201).
RGB: (126,188,201) (49%,74%,79%)
R 126 of 255 = 49%
G 188 of 255 = 74%
B 201 of 255 = 79%
R + G + B ~ 67%. #7EBCC9 is quite light color.
R + G + B =
126 + 188 + 201 = 515 (100%)
R 126 of 515 ~ 24.47%
G 188 of 515 ~ 36.5%
B 201 of 515 ~ 39.03%
#7EBCC9 color CMYK value is (37,6,0,21).
CMYK: (37,6,0,21) C37M6Y0K21 (37%,6%,0%,21%) (0.37/0.06/0.00/0.21)
7E | BC | C9 | |
---|---|---|---|
RGB | 126 | 188 | 201 |
HSL | 190° | 40.98% | 64.12% |
HSB/HSV | 190° | 37.31% | 78.82% |
CMYK | 37.31% | 6.47% | 0.00% |
21.18% |
HEX | 7E | BC | C9 |
Decimal | 126 | 188 | 201 |
Binary | 1111110 | 10111100 | 11001001 |
Octal | 176 | 274 | 311 |
Examples of css and html codes for elements with #7EBCC9 color. Also use rgb(126,188,201) instead hex code.
.myTextColor { color: #7EBCC9; }
<p style="color:#7EBCC9">This sample text font color is #7EBCC9.</p>
This text font color is #7EBCC9.
.myBgColor { background-color: #7EBCC9; }
<div style="background-color:#7EBCC9">Inner text</div>
This div background color is #7EBCC9.
.myBorderColor { border: 1px solid #7EBCC9; }
<div style="border:3px solid #7EBCC9">Div</div>
This div border color is #7EBCC9.
.myOpacity80 { color: #7EBCC9; opacity: 0.8; }
<p style="color:#7EBCC9;opacity:0.8;">80%</p>
Text with #7EBCC9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EBCC9;}
<p style="text-shadow: 3px 3px 1px #7EBCC9">Text here.</p>
This text has shadow with #7EBCC9 color.
.textShadow {text-shadow: 3px 3px 1px #7EBCC9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EBCC9, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EBCC9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EBCC9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EBCC9, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EBCC9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EBCC9; -webkit-box-shadow: 1px 1px 3px 2px #7EBCC9; box-shadow: 1px 1px 3px 2px #7EBCC9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EBCC9; -webkit-box-shadow: 1px 1px 3px 2px #7EBCC9; box-shadow:1px 1px 3px 2px #7EBCC9;">
Div content here</div>
This text has color #7EBCC9 on black background.
This text has color #7EBCC9 on white background.
This text has black color on #7EBCC9 background.
This text has white color on #7EBCC9 background.