HEX: #9B627D
RGB: (155,98,125)
#9B627D contains red, green and blue colors in about the same proportion. Web safe color of #9B627D is #996666 (or #966).
#9B627D color RGB value is (155,98,125).
RGB: (155,98,125) (61%,38%,49%)
R 155 of 255 = 61%
G 98 of 255 = 38%
B 125 of 255 = 49%
R + G + B ~ 49%. #9B627D is middle color (not dark and not light).
R + G + B =
155 + 98 + 125 = 378 (100%)
R 155 of 378 ~ 41.01%
G 98 of 378 ~ 25.93%
B 125 of 378 ~ 33.07%
#9B627D color CMYK value is (0,37,19,39).
CMYK: (0,37,19,39) C0M37Y19K39 (0%,37%,19%,39%) (0.00/0.37/0.19/0.39)
9B | 62 | 7D | |
---|---|---|---|
RGB | 155 | 98 | 125 |
HSL | 332° | 22.53% | 49.61% |
HSB/HSV | 332° | 36.77% | 60.78% |
CMYK | 0.00% | 36.77% | 19.35% |
39.22% |
HEX | 9B | 62 | 7D |
Decimal | 155 | 98 | 125 |
Binary | 10011011 | 1100010 | 1111101 |
Octal | 233 | 142 | 175 |
Examples of css and html codes for elements with #9B627D color. Also use rgb(155,98,125) instead hex code.
.myTextColor { color: #9B627D; }
<p style="color:#9B627D">This sample text font color is #9B627D.</p>
This text font color is #9B627D.
.myBgColor { background-color: #9B627D; }
<div style="background-color:#9B627D">Inner text</div>
This div background color is #9B627D.
.myBorderColor { border: 1px solid #9B627D; }
<div style="border:3px solid #9B627D">Div</div>
This div border color is #9B627D.
.myOpacity80 { color: #9B627D; opacity: 0.8; }
<p style="color:#9B627D;opacity:0.8;">80%</p>
Text with #9B627D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9B627D;}
<p style="text-shadow: 3px 3px 1px #9B627D">Text here.</p>
This text has shadow with #9B627D color.
.textShadow {text-shadow: 3px 3px 1px #9B627D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9B627D, 5px 5px 20px red">Text here.</p>
This text has shadow with #9B627D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9B627D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9B627D, Direction=45, Strength=4)">Text</p>
This text has shadow with #9B627D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9B627D; -webkit-box-shadow: 1px 1px 3px 2px #9B627D; box-shadow: 1px 1px 3px 2px #9B627D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9B627D; -webkit-box-shadow: 1px 1px 3px 2px #9B627D; box-shadow:1px 1px 3px 2px #9B627D;">
Div content here</div>
This text has color #9B627D on black background.
This text has color #9B627D on white background.
This text has black color on #9B627D background.
This text has white color on #9B627D background.