HEX: #7E83AB
RGB: (126,131,171)
#7E83AB contains red, green and blue colors in about the same proportion. Web safe color of #7E83AB is #669999 (or #699).
#7E83AB color RGB value is (126,131,171).
RGB: (126,131,171) (49%,51%,67%)
R 126 of 255 = 49%
G 131 of 255 = 51%
B 171 of 255 = 67%
R + G + B ~ 56%. #7E83AB is middle color (not dark and not light).
R + G + B =
126 + 131 + 171 = 428 (100%)
R 126 of 428 ~ 29.44%
G 131 of 428 ~ 30.61%
B 171 of 428 ~ 39.95%
#7E83AB color CMYK value is (26,23,0,33).
CMYK: (26,23,0,33) C26M23Y0K33 (26%,23%,0%,33%) (0.26/0.23/0.00/0.33)
7E | 83 | AB | |
---|---|---|---|
RGB | 126 | 131 | 171 |
HSL | 233° | 21.13% | 58.24% |
HSB/HSV | 233° | 26.32% | 67.06% |
CMYK | 26.32% | 23.39% | 0.00% |
32.94% |
HEX | 7E | 83 | AB |
Decimal | 126 | 131 | 171 |
Binary | 1111110 | 10000011 | 10101011 |
Octal | 176 | 203 | 253 |
Examples of css and html codes for elements with #7E83AB color. Also use rgb(126,131,171) instead hex code.
.myTextColor { color: #7E83AB; }
<p style="color:#7E83AB">This sample text font color is #7E83AB.</p>
This text font color is #7E83AB.
.myBgColor { background-color: #7E83AB; }
<div style="background-color:#7E83AB">Inner text</div>
This div background color is #7E83AB.
.myBorderColor { border: 1px solid #7E83AB; }
<div style="border:3px solid #7E83AB">Div</div>
This div border color is #7E83AB.
.myOpacity80 { color: #7E83AB; opacity: 0.8; }
<p style="color:#7E83AB;opacity:0.8;">80%</p>
Text with #7E83AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E83AB;}
<p style="text-shadow: 3px 3px 1px #7E83AB">Text here.</p>
This text has shadow with #7E83AB color.
.textShadow {text-shadow: 3px 3px 1px #7E83AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E83AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E83AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E83AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E83AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E83AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E83AB; -webkit-box-shadow: 1px 1px 3px 2px #7E83AB; box-shadow: 1px 1px 3px 2px #7E83AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E83AB; -webkit-box-shadow: 1px 1px 3px 2px #7E83AB; box-shadow:1px 1px 3px 2px #7E83AB;">
Div content here</div>
This text has color #7E83AB on black background.
This text has color #7E83AB on white background.
This text has black color on #7E83AB background.
This text has white color on #7E83AB background.