HEX: #7077AB
RGB: (112,119,171)
#7077AB contains red, green and blue colors in about the same proportion. Web safe color of #7077AB is #666699 (or #669).
#7077AB color RGB value is (112,119,171).
RGB: (112,119,171) (44%,47%,67%)
R 112 of 255 = 44%
G 119 of 255 = 47%
B 171 of 255 = 67%
R + G + B ~ 53%. #7077AB is middle color (not dark and not light).
R + G + B =
112 + 119 + 171 = 402 (100%)
R 112 of 402 ~ 27.86%
G 119 of 402 ~ 29.6%
B 171 of 402 ~ 42.54%
#7077AB color CMYK value is (35,30,0,33).
CMYK: (35,30,0,33) C35M30Y0K33 (35%,30%,0%,33%) (0.35/0.30/0.00/0.33)
70 | 77 | AB | |
---|---|---|---|
RGB | 112 | 119 | 171 |
HSL | 233° | 25.99% | 55.49% |
HSB/HSV | 233° | 34.50% | 67.06% |
CMYK | 34.50% | 30.41% | 0.00% |
32.94% |
HEX | 70 | 77 | AB |
Decimal | 112 | 119 | 171 |
Binary | 1110000 | 1110111 | 10101011 |
Octal | 160 | 167 | 253 |
Examples of css and html codes for elements with #7077AB color. Also use rgb(112,119,171) instead hex code.
.myTextColor { color: #7077AB; }
<p style="color:#7077AB">This sample text font color is #7077AB.</p>
This text font color is #7077AB.
.myBgColor { background-color: #7077AB; }
<div style="background-color:#7077AB">Inner text</div>
This div background color is #7077AB.
.myBorderColor { border: 1px solid #7077AB; }
<div style="border:3px solid #7077AB">Div</div>
This div border color is #7077AB.
.myOpacity80 { color: #7077AB; opacity: 0.8; }
<p style="color:#7077AB;opacity:0.8;">80%</p>
Text with #7077AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7077AB;}
<p style="text-shadow: 3px 3px 1px #7077AB">Text here.</p>
This text has shadow with #7077AB color.
.textShadow {text-shadow: 3px 3px 1px #7077AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7077AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7077AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7077AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7077AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7077AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7077AB; -webkit-box-shadow: 1px 1px 3px 2px #7077AB; box-shadow: 1px 1px 3px 2px #7077AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7077AB; -webkit-box-shadow: 1px 1px 3px 2px #7077AB; box-shadow:1px 1px 3px 2px #7077AB;">
Div content here</div>
This text has color #7077AB on black background.
This text has color #7077AB on white background.
This text has black color on #7077AB background.
This text has white color on #7077AB background.