; Colours towards which flares tend at edges of screen.
; Specified as R,G,B, each value being between 0 and 255 inclusive.
left_colour		255,0,0
right_colour		0,255,0
top_colour		255,0,0
bottom_colour		0,0,255

; Highest opacity for onscreen flares
; 0 = full transparent, 255 = fully opaque.
max_opacity		50

; Range between which the aperture starts to close (shrinking the flares)
; Length 0 is when the sun is in the centre of the screen.
; Length 1024 is when the sun is in corner of the screen.
; Between the two lengths, flare radius is scaled between 1 and flare_min.
aperture_max		400.0
aperture_min		20.0

flare_min		0.5

; a     = Offset along line from sun, through centre of screen (0% - 100%).
; b     = Radius of flare.
; c     = anulus/disc flag (0 - anulus, 1 - disc).
; d,e   = range of line lengths between which flare is visible.
;	  1024 is the length from centre to corner.
;         Flares may still be visible when the sun is offscreen, so
;	  length in excess of this value are acceptable. 
; f,g,h = rgb triplet describing colour of flare.
;----------------------------------------------------------
;			a    b   c  d   e     f    g    h
;----------------------------------------------------------
add_flare		2,   40, 0, 0, 2000,  255, 150, 150
add_flare	      	6,   12, 1, 0, 1800,  150, 255, 150
add_flare	      	10,  45, 1, 0, 1700, 200, 200, 255
add_flare	      	14,  25, 1, 0, 1600, 200, 200, 255
add_flare	      	19,  15, 1, 0, 1900, 200, 200, 255
add_flare	      	21,  25, 1, 0, 2000, 200, 200, 255
add_flare	      	26,  70, 0, 0, 1800, 200, 200, 255
;add_flare	      	30,  17, 1, 0, 2200, 255, 200, 200
add_flare	      	35,  13, 1, 0, 2400, 100, 255, 200
add_flare	      	42,  25, 1, 0, 2700,  200, 255, 200
add_flare	      	43,  35, 0, 0, 2000,  200, 200, 255
add_flare	      	58,  75, 1, 0, 2200,  200, 255, 200
add_flare	      	62,  50, 0, 0, 1900,  255, 100, 200
;add_flare	      	75,  40, 1, 0, 1500,  100, 100, 255
add_flare	       	80,  25, 1, 0, 1200,  200, 100, 255
;add_flare	      	85,  10, 1, 0, 1000, 255, 100, 100
add_flare	      	92,  40, 0, 0, 2000,  255, 200, 200
add_flare		95,  18, 1, 0, 2400, 100, 100, 255
add_flare	      	100, 10, 0, 0, 3500,  150, 255, 180
