HEX: #7D97CE
RGB: (125,151,206)
#7D97CE contains mainly green and blue colors. Web safe color of #7D97CE is #6699CC (or #69C).
#7D97CE color RGB value is (125,151,206).
RGB: (125,151,206) (49%,59%,81%)
R 125 of 255 = 49%
G 151 of 255 = 59%
B 206 of 255 = 81%
R + G + B ~ 63%. #7D97CE is quite light color.
R + G + B =
125 + 151 + 206 = 482 (100%)
R 125 of 482 ~ 25.93%
G 151 of 482 ~ 31.33%
B 206 of 482 ~ 42.74%
#7D97CE color CMYK value is (39,27,0,19).
CMYK: (39,27,0,19) C39M27Y0K19 (39%,27%,0%,19%) (0.39/0.27/0.00/0.19)
7D | 97 | CE | |
---|---|---|---|
RGB | 125 | 151 | 206 |
HSL | 221° | 45.25% | 64.90% |
HSB/HSV | 221° | 39.32% | 80.78% |
CMYK | 39.32% | 26.70% | 0.00% |
19.22% |
HEX | 7D | 97 | CE |
Decimal | 125 | 151 | 206 |
Binary | 1111101 | 10010111 | 11001110 |
Octal | 175 | 227 | 316 |
Examples of css and html codes for elements with #7D97CE color. Also use rgb(125,151,206) instead hex code.
.myTextColor { color: #7D97CE; }
<p style="color:#7D97CE">This sample text font color is #7D97CE.</p>
This text font color is #7D97CE.
.myBgColor { background-color: #7D97CE; }
<div style="background-color:#7D97CE">Inner text</div>
This div background color is #7D97CE.
.myBorderColor { border: 1px solid #7D97CE; }
<div style="border:3px solid #7D97CE">Div</div>
This div border color is #7D97CE.
.myOpacity80 { color: #7D97CE; opacity: 0.8; }
<p style="color:#7D97CE;opacity:0.8;">80%</p>
Text with #7D97CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D97CE;}
<p style="text-shadow: 3px 3px 1px #7D97CE">Text here.</p>
This text has shadow with #7D97CE color.
.textShadow {text-shadow: 3px 3px 1px #7D97CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D97CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D97CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D97CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D97CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D97CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D97CE; -webkit-box-shadow: 1px 1px 3px 2px #7D97CE; box-shadow: 1px 1px 3px 2px #7D97CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D97CE; -webkit-box-shadow: 1px 1px 3px 2px #7D97CE; box-shadow:1px 1px 3px 2px #7D97CE;">
Div content here</div>
This text has color #7D97CE on black background.
This text has color #7D97CE on white background.
This text has black color on #7D97CE background.
This text has white color on #7D97CE background.