HEX: #71688D
RGB: (113,104,141)
#71688D contains red, green and blue colors in about the same proportion. Web safe color of #71688D is #666699 (or #669).
#71688D color RGB value is (113,104,141).
RGB: (113,104,141) (44%,41%,55%)
R 113 of 255 = 44%
G 104 of 255 = 41%
B 141 of 255 = 55%
R + G + B ~ 47%. #71688D is middle color (not dark and not light).
R + G + B =
113 + 104 + 141 = 358 (100%)
R 113 of 358 ~ 31.56%
G 104 of 358 ~ 29.05%
B 141 of 358 ~ 39.39%
#71688D color CMYK value is (20,26,0,45).
CMYK: (20,26,0,45) C20M26Y0K45 (20%,26%,0%,45%) (0.20/0.26/0.00/0.45)
71 | 68 | 8D | |
---|---|---|---|
RGB | 113 | 104 | 141 |
HSL | 255° | 15.10% | 48.04% |
HSB/HSV | 255° | 26.24% | 55.29% |
CMYK | 19.86% | 26.24% | 0.00% |
44.71% |
HEX | 71 | 68 | 8D |
Decimal | 113 | 104 | 141 |
Binary | 1110001 | 1101000 | 10001101 |
Octal | 161 | 150 | 215 |
Examples of css and html codes for elements with #71688D color. Also use rgb(113,104,141) instead hex code.
.myTextColor { color: #71688D; }
<p style="color:#71688D">This sample text font color is #71688D.</p>
This text font color is #71688D.
.myBgColor { background-color: #71688D; }
<div style="background-color:#71688D">Inner text</div>
This div background color is #71688D.
.myBorderColor { border: 1px solid #71688D; }
<div style="border:3px solid #71688D">Div</div>
This div border color is #71688D.
.myOpacity80 { color: #71688D; opacity: 0.8; }
<p style="color:#71688D;opacity:0.8;">80%</p>
Text with #71688D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71688D;}
<p style="text-shadow: 3px 3px 1px #71688D">Text here.</p>
This text has shadow with #71688D color.
.textShadow {text-shadow: 3px 3px 1px #71688D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71688D, 5px 5px 20px red">Text here.</p>
This text has shadow with #71688D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71688D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71688D, Direction=45, Strength=4)">Text</p>
This text has shadow with #71688D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71688D; -webkit-box-shadow: 1px 1px 3px 2px #71688D; box-shadow: 1px 1px 3px 2px #71688D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71688D; -webkit-box-shadow: 1px 1px 3px 2px #71688D; box-shadow:1px 1px 3px 2px #71688D;">
Div content here</div>
This text has color #71688D on black background.
This text has color #71688D on white background.
This text has black color on #71688D background.
This text has white color on #71688D background.