HEX: #C58993
RGB: (197,137,147)
#C58993 contains mainly red and blue colors. Web safe color of #C58993 is #CC9999 (or #C99).
#C58993 color RGB value is (197,137,147).
RGB: (197,137,147) (77%,54%,58%)
R 197 of 255 = 77%
G 137 of 255 = 54%
B 147 of 255 = 58%
R + G + B ~ 63%. #C58993 is quite light color.
R + G + B =
197 + 137 + 147 = 481 (100%)
R 197 of 481 ~ 40.96%
G 137 of 481 ~ 28.48%
B 147 of 481 ~ 30.56%
#C58993 color CMYK value is (0,30,25,23).
CMYK: (0,30,25,23) C0M30Y25K23 (0%,30%,25%,23%) (0.00/0.30/0.25/0.23)
C5 | 89 | 93 | |
---|---|---|---|
RGB | 197 | 137 | 147 |
HSL | 350° | 34.09% | 65.49% |
HSB/HSV | 350° | 30.46% | 77.25% |
CMYK | 0.00% | 30.46% | 25.38% |
22.75% |
HEX | C5 | 89 | 93 |
Decimal | 197 | 137 | 147 |
Binary | 11000101 | 10001001 | 10010011 |
Octal | 305 | 211 | 223 |
Examples of css and html codes for elements with #C58993 color. Also use rgb(197,137,147) instead hex code.
.myTextColor { color: #C58993; }
<p style="color:#C58993">This sample text font color is #C58993.</p>
This text font color is #C58993.
.myBgColor { background-color: #C58993; }
<div style="background-color:#C58993">Inner text</div>
This div background color is #C58993.
.myBorderColor { border: 1px solid #C58993; }
<div style="border:3px solid #C58993">Div</div>
This div border color is #C58993.
.myOpacity80 { color: #C58993; opacity: 0.8; }
<p style="color:#C58993;opacity:0.8;">80%</p>
Text with #C58993 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C58993;}
<p style="text-shadow: 3px 3px 1px #C58993">Text here.</p>
This text has shadow with #C58993 color.
.textShadow {text-shadow: 3px 3px 1px #C58993, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C58993, 5px 5px 20px red">Text here.</p>
This text has shadow with #C58993 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C58993, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C58993, Direction=45, Strength=4)">Text</p>
This text has shadow with #C58993 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C58993; -webkit-box-shadow: 1px 1px 3px 2px #C58993; box-shadow: 1px 1px 3px 2px #C58993; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C58993; -webkit-box-shadow: 1px 1px 3px 2px #C58993; box-shadow:1px 1px 3px 2px #C58993;">
Div content here</div>
This text has color #C58993 on black background.
This text has color #C58993 on white background.
This text has black color on #C58993 background.
This text has white color on #C58993 background.