HEX: #7074AF
RGB: (112,116,175)
#7074AF contains mainly green and blue colors. Web safe color of #7074AF is #666699 (or #669).
#7074AF color RGB value is (112,116,175).
RGB: (112,116,175) (44%,45%,69%)
R 112 of 255 = 44%
G 116 of 255 = 45%
B 175 of 255 = 69%
R + G + B ~ 53%. #7074AF is middle color (not dark and not light).
R + G + B =
112 + 116 + 175 = 403 (100%)
R 112 of 403 ~ 27.79%
G 116 of 403 ~ 28.78%
B 175 of 403 ~ 43.42%
#7074AF color CMYK value is (36,34,0,31).
CMYK: (36,34,0,31) C36M34Y0K31 (36%,34%,0%,31%) (0.36/0.34/0.00/0.31)
70 | 74 | AF | |
---|---|---|---|
RGB | 112 | 116 | 175 |
HSL | 236° | 28.25% | 56.27% |
HSB/HSV | 236° | 36.00% | 68.63% |
CMYK | 36.00% | 33.71% | 0.00% |
31.37% |
HEX | 70 | 74 | AF |
Decimal | 112 | 116 | 175 |
Binary | 1110000 | 1110100 | 10101111 |
Octal | 160 | 164 | 257 |
Examples of css and html codes for elements with #7074AF color. Also use rgb(112,116,175) instead hex code.
.myTextColor { color: #7074AF; }
<p style="color:#7074AF">This sample text font color is #7074AF.</p>
This text font color is #7074AF.
.myBgColor { background-color: #7074AF; }
<div style="background-color:#7074AF">Inner text</div>
This div background color is #7074AF.
.myBorderColor { border: 1px solid #7074AF; }
<div style="border:3px solid #7074AF">Div</div>
This div border color is #7074AF.
.myOpacity80 { color: #7074AF; opacity: 0.8; }
<p style="color:#7074AF;opacity:0.8;">80%</p>
Text with #7074AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7074AF;}
<p style="text-shadow: 3px 3px 1px #7074AF">Text here.</p>
This text has shadow with #7074AF color.
.textShadow {text-shadow: 3px 3px 1px #7074AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7074AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #7074AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7074AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7074AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #7074AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7074AF; -webkit-box-shadow: 1px 1px 3px 2px #7074AF; box-shadow: 1px 1px 3px 2px #7074AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7074AF; -webkit-box-shadow: 1px 1px 3px 2px #7074AF; box-shadow:1px 1px 3px 2px #7074AF;">
Div content here</div>
This text has color #7074AF on black background.
This text has color #7074AF on white background.
This text has black color on #7074AF background.
This text has white color on #7074AF background.