HEX: #767EAB
RGB: (118,126,171)
#767EAB contains red, green and blue colors in about the same proportion. Web safe color of #767EAB is #666699 (or #669).
#767EAB color RGB value is (118,126,171).
RGB: (118,126,171) (46%,49%,67%)
R 118 of 255 = 46%
G 126 of 255 = 49%
B 171 of 255 = 67%
R + G + B ~ 54%. #767EAB is middle color (not dark and not light).
R + G + B =
118 + 126 + 171 = 415 (100%)
R 118 of 415 ~ 28.43%
G 126 of 415 ~ 30.36%
B 171 of 415 ~ 41.2%
#767EAB color CMYK value is (31,26,0,33).
CMYK: (31,26,0,33) C31M26Y0K33 (31%,26%,0%,33%) (0.31/0.26/0.00/0.33)
76 | 7E | AB | |
---|---|---|---|
RGB | 118 | 126 | 171 |
HSL | 231° | 23.98% | 56.67% |
HSB/HSV | 231° | 30.99% | 67.06% |
CMYK | 30.99% | 26.32% | 0.00% |
32.94% |
HEX | 76 | 7E | AB |
Decimal | 118 | 126 | 171 |
Binary | 1110110 | 1111110 | 10101011 |
Octal | 166 | 176 | 253 |
Examples of css and html codes for elements with #767EAB color. Also use rgb(118,126,171) instead hex code.
.myTextColor { color: #767EAB; }
<p style="color:#767EAB">This sample text font color is #767EAB.</p>
This text font color is #767EAB.
.myBgColor { background-color: #767EAB; }
<div style="background-color:#767EAB">Inner text</div>
This div background color is #767EAB.
.myBorderColor { border: 1px solid #767EAB; }
<div style="border:3px solid #767EAB">Div</div>
This div border color is #767EAB.
.myOpacity80 { color: #767EAB; opacity: 0.8; }
<p style="color:#767EAB;opacity:0.8;">80%</p>
Text with #767EAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #767EAB;}
<p style="text-shadow: 3px 3px 1px #767EAB">Text here.</p>
This text has shadow with #767EAB color.
.textShadow {text-shadow: 3px 3px 1px #767EAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #767EAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #767EAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#767EAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#767EAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #767EAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #767EAB; -webkit-box-shadow: 1px 1px 3px 2px #767EAB; box-shadow: 1px 1px 3px 2px #767EAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #767EAB; -webkit-box-shadow: 1px 1px 3px 2px #767EAB; box-shadow:1px 1px 3px 2px #767EAB;">
Div content here</div>
This text has color #767EAB on black background.
This text has color #767EAB on white background.
This text has black color on #767EAB background.
This text has white color on #767EAB background.