HEX: #7984BE
RGB: (121,132,190)
#7984BE contains mainly green and blue colors. Web safe color of #7984BE is #6699CC (or #69C).
#7984BE color RGB value is (121,132,190).
RGB: (121,132,190) (47%,52%,75%)
R 121 of 255 = 47%
G 132 of 255 = 52%
B 190 of 255 = 75%
R + G + B ~ 58%. #7984BE is middle color (not dark and not light).
R + G + B =
121 + 132 + 190 = 443 (100%)
R 121 of 443 ~ 27.31%
G 132 of 443 ~ 29.8%
B 190 of 443 ~ 42.89%
#7984BE color CMYK value is (36,31,0,25).
CMYK: (36,31,0,25) C36M31Y0K25 (36%,31%,0%,25%) (0.36/0.31/0.00/0.25)
79 | 84 | BE | |
---|---|---|---|
RGB | 121 | 132 | 190 |
HSL | 230° | 34.67% | 60.98% |
HSB/HSV | 230° | 36.32% | 74.51% |
CMYK | 36.32% | 30.53% | 0.00% |
25.49% |
HEX | 79 | 84 | BE |
Decimal | 121 | 132 | 190 |
Binary | 1111001 | 10000100 | 10111110 |
Octal | 171 | 204 | 276 |
Examples of css and html codes for elements with #7984BE color. Also use rgb(121,132,190) instead hex code.
.myTextColor { color: #7984BE; }
<p style="color:#7984BE">This sample text font color is #7984BE.</p>
This text font color is #7984BE.
.myBgColor { background-color: #7984BE; }
<div style="background-color:#7984BE">Inner text</div>
This div background color is #7984BE.
.myBorderColor { border: 1px solid #7984BE; }
<div style="border:3px solid #7984BE">Div</div>
This div border color is #7984BE.
.myOpacity80 { color: #7984BE; opacity: 0.8; }
<p style="color:#7984BE;opacity:0.8;">80%</p>
Text with #7984BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7984BE;}
<p style="text-shadow: 3px 3px 1px #7984BE">Text here.</p>
This text has shadow with #7984BE color.
.textShadow {text-shadow: 3px 3px 1px #7984BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7984BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7984BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7984BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7984BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7984BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7984BE; -webkit-box-shadow: 1px 1px 3px 2px #7984BE; box-shadow: 1px 1px 3px 2px #7984BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7984BE; -webkit-box-shadow: 1px 1px 3px 2px #7984BE; box-shadow:1px 1px 3px 2px #7984BE;">
Div content here</div>
This text has color #7984BE on black background.
This text has color #7984BE on white background.
This text has black color on #7984BE background.
This text has white color on #7984BE background.