forked from chrismelba/lightclockwifiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttongradient.h
More file actions
17 lines (16 loc) · 1.09 KB
/
buttongradient.h
File metadata and controls
17 lines (16 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const char buttongradient_css[] PROGMEM = R"=====(
<style type="text/css">
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3240ff+0,d6d6d6+50,eeff00+100 */
.$scheme{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/$hourcolor+0,0026ff+100 */
background: $hourcolor; /* Old browsers */
background: -moz-linear-gradient(left, $hourcolor 0%, $minutecolor 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,$hourcolor), color-stop(100%,$minutecolor)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, $hourcolor 0%,$minutecolor 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, $hourcolor 0%,$minutecolor 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, $hourcolor 0%,$minutecolor 100%); /* IE10+ */
background: linear-gradient(to right, $hourcolor 0%,$minutecolor 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$hourcolor', endColorstr='$minutecolor',GradientType=1 ); /* IE6-9 */
}
</style>
)=====";