Hex #fff360 Color

#fff360
equivalent to

RGB

(255, 243, 96)

Details of #fff360

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
75.4019
0.15
0.00
94.4002
86.2057
55°
92.8470
243
86.2057
1.00
0.05
-13.0013
0.4068
62°
-17.5203
96
23.7316
0.69
0.62   0.00
69.9843
0.4651
100°
49.8424

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
11110011
363
243
F3
Blue
1100000
140
96
60

RGB in % of #fff360

%42.93
%40.91
%16.16

CMYK in % of #fff360

%0
%5
%62
%0

Triads of color #fff360

#fff360 #f360ff #60ff60

Similar Colors to #fff360

#fff360 #ffa460 #bcff60

Preview Color #fff360 on black ground

#fff360 is very interesting for text.

Preview Color #fff360 on white ground

#fff360 is very interesting for text.

CSS Codes #fff360 color

.mybgcolor {background-color:#fff360; }
.myforecolor {color:#fff360; }
.mybordercolor {border:3px solid #fff360; }

Text Font Color #fff360

<p style="color:#fff360">Text here</p>

This sample text font color is #fff360
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #fff360

<div style="background-color:#fff360">
Div content here</div>

This div background color is #fff360


Border Color #fff360

<div style="border:3px solid #fff360">
Div here</div>

The color of this border is #fff360


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #fff360; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #fff360;
-webkit-box-shadow: 1px 1px 3px 2px #fff360;
box-shadow:         1px 1px 3px 2px #fff360; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #fff360">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #fff360;
  -webkit-box-shadow: 1px 1px 3px 2px #fff360;
  box-shadow:         1px 1px 3px 2px #fff360;">
Div content here</div>

The shadow of div box using color #fff360