HEX: #727DBB
RGB: (114,125,187)
#727DBB contains mainly blue color. Web safe color of #727DBB is #6666CC (or #66C).
#727DBB color RGB value is (114,125,187).
RGB: (114,125,187) (45%,49%,73%)
R 114 of 255 = 45%
G 125 of 255 = 49%
B 187 of 255 = 73%
R + G + B ~ 56%. #727DBB is middle color (not dark and not light).
R + G + B =
114 + 125 + 187 = 426 (100%)
R 114 of 426 ~ 26.76%
G 125 of 426 ~ 29.34%
B 187 of 426 ~ 43.9%
#727DBB color CMYK value is (39,33,0,27).
CMYK: (39,33,0,27) C39M33Y0K27 (39%,33%,0%,27%) (0.39/0.33/0.00/0.27)
72 | 7D | BB | |
---|---|---|---|
RGB | 114 | 125 | 187 |
HSL | 231° | 34.93% | 59.02% |
HSB/HSV | 231° | 39.04% | 73.33% |
CMYK | 39.04% | 33.16% | 0.00% |
26.67% |
HEX | 72 | 7D | BB |
Decimal | 114 | 125 | 187 |
Binary | 1110010 | 1111101 | 10111011 |
Octal | 162 | 175 | 273 |
Examples of css and html codes for elements with #727DBB color. Also use rgb(114,125,187) instead hex code.
.myTextColor { color: #727DBB; }
<p style="color:#727DBB">This sample text font color is #727DBB.</p>
This text font color is #727DBB.
.myBgColor { background-color: #727DBB; }
<div style="background-color:#727DBB">Inner text</div>
This div background color is #727DBB.
.myBorderColor { border: 1px solid #727DBB; }
<div style="border:3px solid #727DBB">Div</div>
This div border color is #727DBB.
.myOpacity80 { color: #727DBB; opacity: 0.8; }
<p style="color:#727DBB;opacity:0.8;">80%</p>
Text with #727DBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #727DBB;}
<p style="text-shadow: 3px 3px 1px #727DBB">Text here.</p>
This text has shadow with #727DBB color.
.textShadow {text-shadow: 3px 3px 1px #727DBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #727DBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #727DBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#727DBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#727DBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #727DBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #727DBB; -webkit-box-shadow: 1px 1px 3px 2px #727DBB; box-shadow: 1px 1px 3px 2px #727DBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #727DBB; -webkit-box-shadow: 1px 1px 3px 2px #727DBB; box-shadow:1px 1px 3px 2px #727DBB;">
Div content here</div>
This text has color #727DBB on black background.
This text has color #727DBB on white background.
This text has black color on #727DBB background.
This text has white color on #727DBB background.