HEX: #AF5C6D
RGB: (175,92,109)
#AF5C6D contains mainly red color. Web safe color of #AF5C6D is #996666 (or #966).
#AF5C6D color RGB value is (175,92,109).
RGB: (175,92,109) (69%,36%,43%)
R 175 of 255 = 69%
G 92 of 255 = 36%
B 109 of 255 = 43%
R + G + B ~ 49%. #AF5C6D is middle color (not dark and not light).
R + G + B =
175 + 92 + 109 = 376 (100%)
R 175 of 376 ~ 46.54%
G 92 of 376 ~ 24.47%
B 109 of 376 ~ 28.99%
#AF5C6D color CMYK value is (0,47,38,31).
CMYK: (0,47,38,31) C0M47Y38K31 (0%,47%,38%,31%) (0.00/0.47/0.38/0.31)
AF | 5C | 6D | |
---|---|---|---|
RGB | 175 | 92 | 109 |
HSL | 348° | 34.16% | 52.35% |
HSB/HSV | 348° | 47.43% | 68.63% |
CMYK | 0.00% | 47.43% | 37.71% |
31.37% |
HEX | AF | 5C | 6D |
Decimal | 175 | 92 | 109 |
Binary | 10101111 | 1011100 | 1101101 |
Octal | 257 | 134 | 155 |
Examples of css and html codes for elements with #AF5C6D color. Also use rgb(175,92,109) instead hex code.
.myTextColor { color: #AF5C6D; }
<p style="color:#AF5C6D">This sample text font color is #AF5C6D.</p>
This text font color is #AF5C6D.
.myBgColor { background-color: #AF5C6D; }
<div style="background-color:#AF5C6D">Inner text</div>
This div background color is #AF5C6D.
.myBorderColor { border: 1px solid #AF5C6D; }
<div style="border:3px solid #AF5C6D">Div</div>
This div border color is #AF5C6D.
.myOpacity80 { color: #AF5C6D; opacity: 0.8; }
<p style="color:#AF5C6D;opacity:0.8;">80%</p>
Text with #AF5C6D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF5C6D;}
<p style="text-shadow: 3px 3px 1px #AF5C6D">Text here.</p>
This text has shadow with #AF5C6D color.
.textShadow {text-shadow: 3px 3px 1px #AF5C6D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF5C6D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF5C6D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF5C6D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF5C6D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF5C6D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF5C6D; -webkit-box-shadow: 1px 1px 3px 2px #AF5C6D; box-shadow: 1px 1px 3px 2px #AF5C6D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF5C6D; -webkit-box-shadow: 1px 1px 3px 2px #AF5C6D; box-shadow:1px 1px 3px 2px #AF5C6D;">
Div content here</div>
This text has color #AF5C6D on black background.
This text has color #AF5C6D on white background.
This text has black color on #AF5C6D background.
This text has white color on #AF5C6D background.