HEX: #7E99AE
RGB: (126,153,174)
#7E99AE contains red, green and blue colors in about the same proportion. Web safe color of #7E99AE is #669999 (or #699).
#7E99AE color RGB value is (126,153,174).
RGB: (126,153,174) (49%,60%,68%)
R 126 of 255 = 49%
G 153 of 255 = 60%
B 174 of 255 = 68%
R + G + B ~ 59%. #7E99AE is middle color (not dark and not light).
R + G + B =
126 + 153 + 174 = 453 (100%)
R 126 of 453 ~ 27.81%
G 153 of 453 ~ 33.77%
B 174 of 453 ~ 38.41%
#7E99AE color CMYK value is (28,12,0,32).
CMYK: (28,12,0,32) C28M12Y0K32 (28%,12%,0%,32%) (0.28/0.12/0.00/0.32)
7E | 99 | AE | |
---|---|---|---|
RGB | 126 | 153 | 174 |
HSL | 206° | 22.86% | 58.82% |
HSB/HSV | 206° | 27.59% | 68.24% |
CMYK | 27.59% | 12.07% | 0.00% |
31.76% |
HEX | 7E | 99 | AE |
Decimal | 126 | 153 | 174 |
Binary | 1111110 | 10011001 | 10101110 |
Octal | 176 | 231 | 256 |
Examples of css and html codes for elements with #7E99AE color. Also use rgb(126,153,174) instead hex code.
.myTextColor { color: #7E99AE; }
<p style="color:#7E99AE">This sample text font color is #7E99AE.</p>
This text font color is #7E99AE.
.myBgColor { background-color: #7E99AE; }
<div style="background-color:#7E99AE">Inner text</div>
This div background color is #7E99AE.
.myBorderColor { border: 1px solid #7E99AE; }
<div style="border:3px solid #7E99AE">Div</div>
This div border color is #7E99AE.
.myOpacity80 { color: #7E99AE; opacity: 0.8; }
<p style="color:#7E99AE;opacity:0.8;">80%</p>
Text with #7E99AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E99AE;}
<p style="text-shadow: 3px 3px 1px #7E99AE">Text here.</p>
This text has shadow with #7E99AE color.
.textShadow {text-shadow: 3px 3px 1px #7E99AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E99AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E99AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E99AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E99AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E99AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E99AE; -webkit-box-shadow: 1px 1px 3px 2px #7E99AE; box-shadow: 1px 1px 3px 2px #7E99AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E99AE; -webkit-box-shadow: 1px 1px 3px 2px #7E99AE; box-shadow:1px 1px 3px 2px #7E99AE;">
Div content here</div>
This text has color #7E99AE on black background.
This text has color #7E99AE on white background.
This text has black color on #7E99AE background.
This text has white color on #7E99AE background.