HEX: #738CBB
RGB: (115,140,187)
#738CBB contains mainly green and blue colors. Web safe color of #738CBB is #6699CC (or #69C).
#738CBB color RGB value is (115,140,187).
RGB: (115,140,187) (45%,55%,73%)
R 115 of 255 = 45%
G 140 of 255 = 55%
B 187 of 255 = 73%
R + G + B ~ 58%. #738CBB is middle color (not dark and not light).
R + G + B =
115 + 140 + 187 = 442 (100%)
R 115 of 442 ~ 26.02%
G 140 of 442 ~ 31.67%
B 187 of 442 ~ 42.31%
#738CBB color CMYK value is (39,25,0,27).
CMYK: (39,25,0,27) C39M25Y0K27 (39%,25%,0%,27%) (0.39/0.25/0.00/0.27)
73 | 8C | BB | |
---|---|---|---|
RGB | 115 | 140 | 187 |
HSL | 219° | 34.62% | 59.22% |
HSB/HSV | 219° | 38.50% | 73.33% |
CMYK | 38.50% | 25.13% | 0.00% |
26.67% |
HEX | 73 | 8C | BB |
Decimal | 115 | 140 | 187 |
Binary | 1110011 | 10001100 | 10111011 |
Octal | 163 | 214 | 273 |
Examples of css and html codes for elements with #738CBB color. Also use rgb(115,140,187) instead hex code.
.myTextColor { color: #738CBB; }
<p style="color:#738CBB">This sample text font color is #738CBB.</p>
This text font color is #738CBB.
.myBgColor { background-color: #738CBB; }
<div style="background-color:#738CBB">Inner text</div>
This div background color is #738CBB.
.myBorderColor { border: 1px solid #738CBB; }
<div style="border:3px solid #738CBB">Div</div>
This div border color is #738CBB.
.myOpacity80 { color: #738CBB; opacity: 0.8; }
<p style="color:#738CBB;opacity:0.8;">80%</p>
Text with #738CBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #738CBB;}
<p style="text-shadow: 3px 3px 1px #738CBB">Text here.</p>
This text has shadow with #738CBB color.
.textShadow {text-shadow: 3px 3px 1px #738CBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #738CBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #738CBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#738CBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#738CBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #738CBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #738CBB; -webkit-box-shadow: 1px 1px 3px 2px #738CBB; box-shadow: 1px 1px 3px 2px #738CBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #738CBB; -webkit-box-shadow: 1px 1px 3px 2px #738CBB; box-shadow:1px 1px 3px 2px #738CBB;">
Div content here</div>
This text has color #738CBB on black background.
This text has color #738CBB on white background.
This text has black color on #738CBB background.
This text has white color on #738CBB background.