HEX: #AF4E49
RGB: (175,78,73)
#AF4E49 contains mainly red color. Web safe color of #AF4E49 is #996633 (or #963).
#AF4E49 color RGB value is (175,78,73).
RGB: (175,78,73) (69%,31%,29%)
R 175 of 255 = 69%
G 78 of 255 = 31%
B 73 of 255 = 29%
R + G + B ~ 43%. #AF4E49 is middle color (not dark and not light).
R + G + B =
175 + 78 + 73 = 326 (100%)
R 175 of 326 ~ 53.68%
G 78 of 326 ~ 23.93%
B 73 of 326 ~ 22.39%
#AF4E49 color CMYK value is (0,55,58,31).
CMYK: (0,55,58,31) C0M55Y58K31 (0%,55%,58%,31%) (0.00/0.55/0.58/0.31)
AF | 4E | 49 | |
---|---|---|---|
RGB | 175 | 78 | 73 |
HSL | 3° | 41.13% | 48.63% |
HSB/HSV | 3° | 58.29% | 68.63% |
CMYK | 0.00% | 55.43% | 58.29% |
31.37% |
HEX | AF | 4E | 49 |
Decimal | 175 | 78 | 73 |
Binary | 10101111 | 1001110 | 1001001 |
Octal | 257 | 116 | 111 |
Examples of css and html codes for elements with #AF4E49 color. Also use rgb(175,78,73) instead hex code.
.myTextColor { color: #AF4E49; }
<p style="color:#AF4E49">This sample text font color is #AF4E49.</p>
This text font color is #AF4E49.
.myBgColor { background-color: #AF4E49; }
<div style="background-color:#AF4E49">Inner text</div>
This div background color is #AF4E49.
.myBorderColor { border: 1px solid #AF4E49; }
<div style="border:3px solid #AF4E49">Div</div>
This div border color is #AF4E49.
.myOpacity80 { color: #AF4E49; opacity: 0.8; }
<p style="color:#AF4E49;opacity:0.8;">80%</p>
Text with #AF4E49 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF4E49;}
<p style="text-shadow: 3px 3px 1px #AF4E49">Text here.</p>
This text has shadow with #AF4E49 color.
.textShadow {text-shadow: 3px 3px 1px #AF4E49, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF4E49, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF4E49 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF4E49, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF4E49, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF4E49 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF4E49; -webkit-box-shadow: 1px 1px 3px 2px #AF4E49; box-shadow: 1px 1px 3px 2px #AF4E49; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF4E49; -webkit-box-shadow: 1px 1px 3px 2px #AF4E49; box-shadow:1px 1px 3px 2px #AF4E49;">
Div content here</div>
This text has color #AF4E49 on black background.
This text has color #AF4E49 on white background.
This text has black color on #AF4E49 background.
This text has white color on #AF4E49 background.