HEX: #977CB7
RGB: (151,124,183)
#977CB7 contains red, green and blue colors in about the same proportion. Web safe color of #977CB7 is #9966CC (or #96C).
#977CB7 color RGB value is (151,124,183).
RGB: (151,124,183) (59%,49%,72%)
R 151 of 255 = 59%
G 124 of 255 = 49%
B 183 of 255 = 72%
R + G + B ~ 60%. #977CB7 is middle color (not dark and not light).
R + G + B =
151 + 124 + 183 = 458 (100%)
R 151 of 458 ~ 32.97%
G 124 of 458 ~ 27.07%
B 183 of 458 ~ 39.96%
#977CB7 color CMYK value is (17,32,0,28).
CMYK: (17,32,0,28) C17M32Y0K28 (17%,32%,0%,28%) (0.17/0.32/0.00/0.28)
97 | 7C | B7 | |
---|---|---|---|
RGB | 151 | 124 | 183 |
HSL | 267° | 29.06% | 60.20% |
HSB/HSV | 267° | 32.24% | 71.76% |
CMYK | 17.49% | 32.24% | 0.00% |
28.24% |
HEX | 97 | 7C | B7 |
Decimal | 151 | 124 | 183 |
Binary | 10010111 | 1111100 | 10110111 |
Octal | 227 | 174 | 267 |
Examples of css and html codes for elements with #977CB7 color. Also use rgb(151,124,183) instead hex code.
.myTextColor { color: #977CB7; }
<p style="color:#977CB7">This sample text font color is #977CB7.</p>
This text font color is #977CB7.
.myBgColor { background-color: #977CB7; }
<div style="background-color:#977CB7">Inner text</div>
This div background color is #977CB7.
.myBorderColor { border: 1px solid #977CB7; }
<div style="border:3px solid #977CB7">Div</div>
This div border color is #977CB7.
.myOpacity80 { color: #977CB7; opacity: 0.8; }
<p style="color:#977CB7;opacity:0.8;">80%</p>
Text with #977CB7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #977CB7;}
<p style="text-shadow: 3px 3px 1px #977CB7">Text here.</p>
This text has shadow with #977CB7 color.
.textShadow {text-shadow: 3px 3px 1px #977CB7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #977CB7, 5px 5px 20px red">Text here.</p>
This text has shadow with #977CB7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#977CB7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#977CB7, Direction=45, Strength=4)">Text</p>
This text has shadow with #977CB7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #977CB7; -webkit-box-shadow: 1px 1px 3px 2px #977CB7; box-shadow: 1px 1px 3px 2px #977CB7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #977CB7; -webkit-box-shadow: 1px 1px 3px 2px #977CB7; box-shadow:1px 1px 3px 2px #977CB7;">
Div content here</div>
This text has color #977CB7 on black background.
This text has color #977CB7 on white background.
This text has black color on #977CB7 background.
This text has white color on #977CB7 background.