HEX: #AF606B
RGB: (175,96,107)
#AF606B contains mainly red color. Web safe color of #AF606B is #996666 (or #966).
#AF606B color RGB value is (175,96,107).
RGB: (175,96,107) (69%,38%,42%)
R 175 of 255 = 69%
G 96 of 255 = 38%
B 107 of 255 = 42%
R + G + B ~ 50%. #AF606B is middle color (not dark and not light).
R + G + B =
175 + 96 + 107 = 378 (100%)
R 175 of 378 ~ 46.3%
G 96 of 378 ~ 25.4%
B 107 of 378 ~ 28.31%
#AF606B color CMYK value is (0,45,39,31).
CMYK: (0,45,39,31) C0M45Y39K31 (0%,45%,39%,31%) (0.00/0.45/0.39/0.31)
AF | 60 | 6B | |
---|---|---|---|
RGB | 175 | 96 | 107 |
HSL | 352° | 33.05% | 53.14% |
HSB/HSV | 352° | 45.14% | 68.63% |
CMYK | 0.00% | 45.14% | 38.86% |
31.37% |
HEX | AF | 60 | 6B |
Decimal | 175 | 96 | 107 |
Binary | 10101111 | 1100000 | 1101011 |
Octal | 257 | 140 | 153 |
Examples of css and html codes for elements with #AF606B color. Also use rgb(175,96,107) instead hex code.
.myTextColor { color: #AF606B; }
<p style="color:#AF606B">This sample text font color is #AF606B.</p>
This text font color is #AF606B.
.myBgColor { background-color: #AF606B; }
<div style="background-color:#AF606B">Inner text</div>
This div background color is #AF606B.
.myBorderColor { border: 1px solid #AF606B; }
<div style="border:3px solid #AF606B">Div</div>
This div border color is #AF606B.
.myOpacity80 { color: #AF606B; opacity: 0.8; }
<p style="color:#AF606B;opacity:0.8;">80%</p>
Text with #AF606B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF606B;}
<p style="text-shadow: 3px 3px 1px #AF606B">Text here.</p>
This text has shadow with #AF606B color.
.textShadow {text-shadow: 3px 3px 1px #AF606B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF606B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF606B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF606B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF606B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF606B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF606B; -webkit-box-shadow: 1px 1px 3px 2px #AF606B; box-shadow: 1px 1px 3px 2px #AF606B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF606B; -webkit-box-shadow: 1px 1px 3px 2px #AF606B; box-shadow:1px 1px 3px 2px #AF606B;">
Div content here</div>
This text has color #AF606B on black background.
This text has color #AF606B on white background.
This text has black color on #AF606B background.
This text has white color on #AF606B background.