HEX: #1174AF
RGB: (17,116,175)
#1174AF contains mainly green and blue colors. Web safe color of #1174AF is #006699 (or #069).
#1174AF color RGB value is (17,116,175).
RGB: (17,116,175) (7%,45%,69%)
R 17 of 255 = 7%
G 116 of 255 = 45%
B 175 of 255 = 69%
R + G + B ~ 40%. #1174AF is middle color (not dark and not light).
R + G + B =
17 + 116 + 175 = 308 (100%)
R 17 of 308 ~ 5.52%
G 116 of 308 ~ 37.66%
B 175 of 308 ~ 56.82%
#1174AF color CMYK value is (90,34,0,31).
CMYK: (90,34,0,31) C90M34Y0K31 (90%,34%,0%,31%) (0.90/0.34/0.00/0.31)
11 | 74 | AF | |
---|---|---|---|
RGB | 17 | 116 | 175 |
HSL | 202° | 82.29% | 37.65% |
HSB/HSV | 202° | 90.29% | 68.63% |
CMYK | 90.29% | 33.71% | 0.00% |
31.37% |
HEX | 11 | 74 | AF |
Decimal | 17 | 116 | 175 |
Binary | 10001 | 1110100 | 10101111 |
Octal | 21 | 164 | 257 |
Examples of css and html codes for elements with #1174AF color. Also use rgb(17,116,175) instead hex code.
.myTextColor { color: #1174AF; }
<p style="color:#1174AF">This sample text font color is #1174AF.</p>
This text font color is #1174AF.
.myBgColor { background-color: #1174AF; }
<div style="background-color:#1174AF">Inner text</div>
This div background color is #1174AF.
.myBorderColor { border: 1px solid #1174AF; }
<div style="border:3px solid #1174AF">Div</div>
This div border color is #1174AF.
.myOpacity80 { color: #1174AF; opacity: 0.8; }
<p style="color:#1174AF;opacity:0.8;">80%</p>
Text with #1174AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #1174AF;}
<p style="text-shadow: 3px 3px 1px #1174AF">Text here.</p>
This text has shadow with #1174AF color.
.textShadow {text-shadow: 3px 3px 1px #1174AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #1174AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #1174AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#1174AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#1174AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #1174AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #1174AF; -webkit-box-shadow: 1px 1px 3px 2px #1174AF; box-shadow: 1px 1px 3px 2px #1174AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #1174AF; -webkit-box-shadow: 1px 1px 3px 2px #1174AF; box-shadow:1px 1px 3px 2px #1174AF;">
Div content here</div>
This text has color #1174AF on black background.
This text has color #1174AF on white background.
This text has black color on #1174AF background.
This text has white color on #1174AF background.