display.setDefault for background does not work correctly

It looks like only absolute colours can be set for the background. For example, this line sets the background colour to white, not a light red:

display.setDefault( "background", 255,200,100 )

I guess it now uses the 0-1 range for colours, so your line would/should/could be (approximately):

[lua]display.setDefault( “background”, 1, 0.8, 0.4 )[/lua]

Good catch - totally forgot about that.

I guess it now uses the 0-1 range for colours, so your line would/should/could be (approximately):

[lua]display.setDefault( “background”, 1, 0.8, 0.4 )[/lua]

Good catch - totally forgot about that.