Skip to content

Commit

Permalink
Change default room background color.
Browse files Browse the repository at this point in the history
Blue is the most likely color to be used as the room background, like the
sky or water. Blue is also by far the most popular color because it
conveys feelings of tranquility. For these reasons, 66CCFF is a logical
choice to set the default room background color to, and is also web safe.
The color matches the Swing look and feel quite nicely.
  • Loading branch information
RobertBColton committed Jan 23, 2016
1 parent 4fa0748 commit 7a1acc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org/lateralgm/resources/Room.java
Expand Up @@ -55,7 +55,7 @@ public enum PRoom
} }


private static final EnumMap<PRoom,Object> DEFS = PropertyMap.makeDefaultMap(PRoom.class,"",640, private static final EnumMap<PRoom,Object> DEFS = PropertyMap.makeDefaultMap(PRoom.class,"",640,
480,16,16,false,30,false,Color.LIGHT_GRAY,true,"",true,500,450,true,true,true,true,true, 480,16,16,false,30,false,new Color(102, 204, 255),true,"",true,500,450,true,true,true,true,true,
false,false,false,TAB_OBJECTS,0,0,false); false,false,false,TAB_OBJECTS,0,0,false);


public Room() public Room()
Expand Down

0 comments on commit 7a1acc1

Please sign in to comment.