HEX: #738AD4
RGB: (115,138,212)
#738AD4 contains mainly blue color. Web safe color of #738AD4 is #6699CC (or #69C).
#738AD4 color RGB value is (115,138,212).
RGB: (115,138,212) (45%,54%,83%)
R 115 of 255 = 45%
G 138 of 255 = 54%
B 212 of 255 = 83%
R + G + B ~ 61%. #738AD4 is quite light color.
R + G + B =
115 + 138 + 212 = 465 (100%)
R 115 of 465 ~ 24.73%
G 138 of 465 ~ 29.68%
B 212 of 465 ~ 45.59%
#738AD4 color CMYK value is (46,35,0,17).
CMYK: (46,35,0,17) C46M35Y0K17 (46%,35%,0%,17%) (0.46/0.35/0.00/0.17)
73 | 8A | D4 | |
---|---|---|---|
RGB | 115 | 138 | 212 |
HSL | 226° | 53.01% | 64.12% |
HSB/HSV | 226° | 45.75% | 83.14% |
CMYK | 45.75% | 34.91% | 0.00% |
16.86% |
HEX | 73 | 8A | D4 |
Decimal | 115 | 138 | 212 |
Binary | 1110011 | 10001010 | 11010100 |
Octal | 163 | 212 | 324 |
Examples of css and html codes for elements with #738AD4 color. Also use rgb(115,138,212) instead hex code.
.myTextColor { color: #738AD4; }
<p style="color:#738AD4">This sample text font color is #738AD4.</p>
This text font color is #738AD4.
.myBgColor { background-color: #738AD4; }
<div style="background-color:#738AD4">Inner text</div>
This div background color is #738AD4.
.myBorderColor { border: 1px solid #738AD4; }
<div style="border:3px solid #738AD4">Div</div>
This div border color is #738AD4.
.myOpacity80 { color: #738AD4; opacity: 0.8; }
<p style="color:#738AD4;opacity:0.8;">80%</p>
Text with #738AD4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #738AD4;}
<p style="text-shadow: 3px 3px 1px #738AD4">Text here.</p>
This text has shadow with #738AD4 color.
.textShadow {text-shadow: 3px 3px 1px #738AD4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #738AD4, 5px 5px 20px red">Text here.</p>
This text has shadow with #738AD4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#738AD4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#738AD4, Direction=45, Strength=4)">Text</p>
This text has shadow with #738AD4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #738AD4; -webkit-box-shadow: 1px 1px 3px 2px #738AD4; box-shadow: 1px 1px 3px 2px #738AD4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #738AD4; -webkit-box-shadow: 1px 1px 3px 2px #738AD4; box-shadow:1px 1px 3px 2px #738AD4;">
Div content here</div>
This text has color #738AD4 on black background.
This text has color #738AD4 on white background.
This text has black color on #738AD4 background.
This text has white color on #738AD4 background.