const max_events = 25
; Record definition
record lights is
byte red
byte grn
byte blu
byte pix_start
byte pix_finish
end record
const lights lighting[max_events] = {
{ 2, 2, 50, 26, 42},; 0 clouding over
{ 2, 2, 24, 51, 68},; 1 rain
{ 0, 0, 0, 77, 93},; 2 thunderstorm
{ 0, 0, 0,102,119},; 3 thunderstorm
{ 2, 2, 50,128,144},; 4 moon light
{ 0, 0, 0, 0, 16},; 5 dawn twilight
{100, 40, 0, 0, 16},; 6 early dawn
{150,124,100, 7, 24},; 7 brightening
{200,200,200, 16, 33},; 8 good sun
{230,230,230, 24, 40},; 9 bright day
{240,240,240, 33, 49},; 10 full sun
{250,250,250, 40, 57},; 11 full sun
{255,255,255, 49, 66},; 12 storm coming
{ 6, 6, 6, 58, 75},; 13 thunderstorm
{ 6, 6, 6, 68, 84},; 14 thunderstorm
{255,255,255, 77, 93},; 15 clearing up
{200,200,200, 86,102},; 16 bit of a dip
{255,255,255, 95,111},; 17 full sun
{240,240,240, 57, 66},; 18 not so bright
{220,220,220,104,120},; 19 dimming down
{150,150, 40,111,128},; 20 early dusk
{ 50, 20, 0,120,144},; 21 sunset
{ 0, 0, 0, 0, 9},; 22 dusk twilight
{ 2, 2, 24, 0, 9},; 23 moon light
{ 2, 2, 50, 26, 42} ; 24 rollover value
}