HEX: #3880DD
RGB: (56,128,221)
#3880DD contains mainly blue color. Web safe color of #3880DD is #3366CC (or #36C).
#3880DD color RGB value is (56,128,221).
RGB: (56,128,221) (22%,50%,87%)
R 56 of 255 = 22%
G 128 of 255 = 50%
B 221 of 255 = 87%
R + G + B ~ 53%. #3880DD is middle color (not dark and not light).
R + G + B =
56 + 128 + 221 = 405 (100%)
R 56 of 405 ~ 13.83%
G 128 of 405 ~ 31.6%
B 221 of 405 ~ 54.57%
#3880DD color CMYK value is (75,42,0,13).
CMYK: (75,42,0,13) C75M42Y0K13 (75%,42%,0%,13%) (0.75/0.42/0.00/0.13)
38 | 80 | DD | |
---|---|---|---|
RGB | 56 | 128 | 221 |
HSL | 214° | 70.82% | 54.31% |
HSB/HSV | 214° | 74.66% | 86.67% |
CMYK | 74.66% | 42.08% | 0.00% |
13.33% |
HEX | 38 | 80 | DD |
Decimal | 56 | 128 | 221 |
Binary | 111000 | 10000000 | 11011101 |
Octal | 70 | 200 | 335 |
Examples of css and html codes for elements with #3880DD color. Also use rgb(56,128,221) instead hex code.
.myTextColor { color: #3880DD; }
<p style="color:#3880DD">This sample text font color is #3880DD.</p>
This text font color is #3880DD.
.myBgColor { background-color: #3880DD; }
<div style="background-color:#3880DD">Inner text</div>
This div background color is #3880DD.
.myBorderColor { border: 1px solid #3880DD; }
<div style="border:3px solid #3880DD">Div</div>
This div border color is #3880DD.
.myOpacity80 { color: #3880DD; opacity: 0.8; }
<p style="color:#3880DD;opacity:0.8;">80%</p>
Text with #3880DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #3880DD;}
<p style="text-shadow: 3px 3px 1px #3880DD">Text here.</p>
This text has shadow with #3880DD color.
.textShadow {text-shadow: 3px 3px 1px #3880DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #3880DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #3880DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#3880DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#3880DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #3880DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #3880DD; -webkit-box-shadow: 1px 1px 3px 2px #3880DD; box-shadow: 1px 1px 3px 2px #3880DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #3880DD; -webkit-box-shadow: 1px 1px 3px 2px #3880DD; box-shadow:1px 1px 3px 2px #3880DD;">
Div content here</div>
This text has color #3880DD on black background.
This text has color #3880DD on white background.
This text has black color on #3880DD background.
This text has white color on #3880DD background.