HEX: #FF6600
RGB: (255,102,0)
#FF6600 contains mainly red color. #FF6600 color is web safe color. It maybe written shortly as #F60.
#FF6600 color RGB value is (255,102,0).
RGB: (255,102,0) (100%,40%,0%)
R 255 of 255 = 100%
G 102 of 255 = 40%
B 0 of 255 = 0%
R + G + B ~ 47%. #FF6600 is middle color (not dark and not light).
R + G + B =
255 + 102 + 0 = 357 (100%)
R 255 of 357 ~ 71.43%
G 102 of 357 ~ 28.57%
B 0 of 357 ~ 0%
#FF6600 color CMYK value is (0,60,100,0).
CMYK: (0,60,100,0) C0M60Y100K0 (0%,60%,100%,0%) (0.00/0.60/1.00/0.00)
FF | 66 | 00 | |
---|---|---|---|
RGB | 255 | 102 | 0 |
HSL | 24° | 100.00% | 50.00% |
HSB/HSV | 24° | 100.00% | 100.00% |
CMYK | 0.00% | 60.00% | 100.00% |
0.00% |
HEX | FF | 66 | 00 |
Decimal | 255 | 102 | 0 |
Binary | 11111111 | 1100110 | 0 |
Octal | 377 | 146 | 0 |
Examples of css and html codes for elements with #FF6600 color. Also use rgb(255,102,0) instead hex code.
.myTextColor { color: #FF6600; }
<p style="color:#FF6600">This sample text font color is #FF6600.</p>
This text font color is #FF6600.
.myBgColor { background-color: #FF6600; }
<div style="background-color:#FF6600">Inner text</div>
This div background color is #FF6600.
.myBorderColor { border: 1px solid #FF6600; }
<div style="border:3px solid #FF6600">Div</div>
This div border color is #FF6600.
.myOpacity80 { color: #FF6600; opacity: 0.8; }
<p style="color:#FF6600;opacity:0.8;">80%</p>
Text with #FF6600 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FF6600;}
<p style="text-shadow: 3px 3px 1px #FF6600">Text here.</p>
This text has shadow with #FF6600 color.
.textShadow {text-shadow: 3px 3px 1px #FF6600, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FF6600, 5px 5px 20px red">Text here.</p>
This text has shadow with #FF6600 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FF6600, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FF6600, Direction=45, Strength=4)">Text</p>
This text has shadow with #FF6600 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FF6600; -webkit-box-shadow: 1px 1px 3px 2px #FF6600; box-shadow: 1px 1px 3px 2px #FF6600; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FF6600; -webkit-box-shadow: 1px 1px 3px 2px #FF6600; box-shadow:1px 1px 3px 2px #FF6600;">
Div content here</div>
This text has color #FF6600 on black background.
This text has color #FF6600 on white background.
This text has black color on #FF6600 background.
This text has white color on #FF6600 background.