HEX: #7B97BC
RGB: (123,151,188)
#7B97BC contains mainly green and blue colors. Web safe color of #7B97BC is #6699CC (or #69C).
#7B97BC color RGB value is (123,151,188).
RGB: (123,151,188) (48%,59%,74%)
R 123 of 255 = 48%
G 151 of 255 = 59%
B 188 of 255 = 74%
R + G + B ~ 60%. #7B97BC is middle color (not dark and not light).
R + G + B =
123 + 151 + 188 = 462 (100%)
R 123 of 462 ~ 26.62%
G 151 of 462 ~ 32.68%
B 188 of 462 ~ 40.69%
#7B97BC color CMYK value is (35,20,0,26).
CMYK: (35,20,0,26) C35M20Y0K26 (35%,20%,0%,26%) (0.35/0.20/0.00/0.26)
7B | 97 | BC | |
---|---|---|---|
RGB | 123 | 151 | 188 |
HSL | 214° | 32.66% | 60.98% |
HSB/HSV | 214° | 34.57% | 73.73% |
CMYK | 34.57% | 19.68% | 0.00% |
26.27% |
HEX | 7B | 97 | BC |
Decimal | 123 | 151 | 188 |
Binary | 1111011 | 10010111 | 10111100 |
Octal | 173 | 227 | 274 |
Examples of css and html codes for elements with #7B97BC color. Also use rgb(123,151,188) instead hex code.
.myTextColor { color: #7B97BC; }
<p style="color:#7B97BC">This sample text font color is #7B97BC.</p>
This text font color is #7B97BC.
.myBgColor { background-color: #7B97BC; }
<div style="background-color:#7B97BC">Inner text</div>
This div background color is #7B97BC.
.myBorderColor { border: 1px solid #7B97BC; }
<div style="border:3px solid #7B97BC">Div</div>
This div border color is #7B97BC.
.myOpacity80 { color: #7B97BC; opacity: 0.8; }
<p style="color:#7B97BC;opacity:0.8;">80%</p>
Text with #7B97BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7B97BC;}
<p style="text-shadow: 3px 3px 1px #7B97BC">Text here.</p>
This text has shadow with #7B97BC color.
.textShadow {text-shadow: 3px 3px 1px #7B97BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7B97BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7B97BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7B97BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7B97BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7B97BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7B97BC; -webkit-box-shadow: 1px 1px 3px 2px #7B97BC; box-shadow: 1px 1px 3px 2px #7B97BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7B97BC; -webkit-box-shadow: 1px 1px 3px 2px #7B97BC; box-shadow:1px 1px 3px 2px #7B97BC;">
Div content here</div>
This text has color #7B97BC on black background.
This text has color #7B97BC on white background.
This text has black color on #7B97BC background.
This text has white color on #7B97BC background.