HEX: #AF6357
RGB: (175,99,87)
#AF6357 contains mainly red color. Web safe color of #AF6357 is #996666 (or #966).
#AF6357 color RGB value is (175,99,87).
RGB: (175,99,87) (69%,39%,34%)
R 175 of 255 = 69%
G 99 of 255 = 39%
B 87 of 255 = 34%
R + G + B ~ 47%. #AF6357 is middle color (not dark and not light).
R + G + B =
175 + 99 + 87 = 361 (100%)
R 175 of 361 ~ 48.48%
G 99 of 361 ~ 27.42%
B 87 of 361 ~ 24.1%
#AF6357 color CMYK value is (0,43,50,31).
CMYK: (0,43,50,31) C0M43Y50K31 (0%,43%,50%,31%) (0.00/0.43/0.50/0.31)
AF | 63 | 57 | |
---|---|---|---|
RGB | 175 | 99 | 87 |
HSL | 8° | 35.48% | 51.37% |
HSB/HSV | 8° | 50.29% | 68.63% |
CMYK | 0.00% | 43.43% | 50.29% |
31.37% |
HEX | AF | 63 | 57 |
Decimal | 175 | 99 | 87 |
Binary | 10101111 | 1100011 | 1010111 |
Octal | 257 | 143 | 127 |
Examples of css and html codes for elements with #AF6357 color. Also use rgb(175,99,87) instead hex code.
.myTextColor { color: #AF6357; }
<p style="color:#AF6357">This sample text font color is #AF6357.</p>
This text font color is #AF6357.
.myBgColor { background-color: #AF6357; }
<div style="background-color:#AF6357">Inner text</div>
This div background color is #AF6357.
.myBorderColor { border: 1px solid #AF6357; }
<div style="border:3px solid #AF6357">Div</div>
This div border color is #AF6357.
.myOpacity80 { color: #AF6357; opacity: 0.8; }
<p style="color:#AF6357;opacity:0.8;">80%</p>
Text with #AF6357 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF6357;}
<p style="text-shadow: 3px 3px 1px #AF6357">Text here.</p>
This text has shadow with #AF6357 color.
.textShadow {text-shadow: 3px 3px 1px #AF6357, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF6357, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF6357 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF6357, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF6357, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF6357 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF6357; -webkit-box-shadow: 1px 1px 3px 2px #AF6357; box-shadow: 1px 1px 3px 2px #AF6357; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF6357; -webkit-box-shadow: 1px 1px 3px 2px #AF6357; box-shadow:1px 1px 3px 2px #AF6357;">
Div content here</div>
This text has color #AF6357 on black background.
This text has color #AF6357 on white background.
This text has black color on #AF6357 background.
This text has white color on #AF6357 background.