diff --git a/src/levelEditor/GeoConstants.js b/src/levelEditor/GeoConstants.js index 50c38a7..66b0947 100644 --- a/src/levelEditor/GeoConstants.js +++ b/src/levelEditor/GeoConstants.js @@ -32,25 +32,25 @@ const PIXEL_COLOR_HEIGHTS = [ // Colors export const EDITOR_UI_PIXEL_COLORS: Map = new Map([ [PIXEL_COLOR_WALKABLE, '#fff'], - [PIXEL_COLOR_RAMP, '#e2e2e2'], - [PIXEL_COLOR_UNSWIMABLE_WALL, '#555'], - [PIXEL_COLOR_SWIMABLE_WALL, 'pink'], - [PIXEL_COLOR_SKY, 'lightblue'], - [PIXEL_COLOR_UNWALKABLE_COLLISION, 'brown'], - [PIXEL_COLOR_WATER, 'blue'], - [PIXEL_COLOR_HEIGHTS[0], '#eeeeee'], - [PIXEL_COLOR_HEIGHTS[1], '#e5e5e5'], - [PIXEL_COLOR_HEIGHTS[2], '#dddddd'], - [PIXEL_COLOR_HEIGHTS[3], '#d4d4d4'], - [PIXEL_COLOR_HEIGHTS[4], '#cccccc'], - [PIXEL_COLOR_HEIGHTS[5], '#c3c3c3'], - [PIXEL_COLOR_HEIGHTS[6], '#bbbbbb'], - [PIXEL_COLOR_HEIGHTS[7], '#b2b2b2'], - [PIXEL_COLOR_HEIGHTS[8], '#aaaaaa'], - [PIXEL_COLOR_HEIGHTS[9], '#a1a1a1'], - [PIXEL_COLOR_HEIGHTS[10], '#999999'], - [PIXEL_COLOR_HEIGHTS[11], '#909090'], - [PIXEL_COLOR_HEIGHTS[12], '#888888'], + [PIXEL_COLOR_RAMP, '#f3cd90'], + [PIXEL_COLOR_UNSWIMABLE_WALL, '#4f4d66'], + [PIXEL_COLOR_SWIMABLE_WALL, '#8e89c4'], + [PIXEL_COLOR_SKY, '#a4c4ff'], + [PIXEL_COLOR_UNWALKABLE_COLLISION, '#ef5436'], + [PIXEL_COLOR_WATER, '#3e54e4'], + [PIXEL_COLOR_HEIGHTS[0], '#fdcece'], + [PIXEL_COLOR_HEIGHTS[1], '#f0afaf'], + [PIXEL_COLOR_HEIGHTS[2], '#ce98a6'], + [PIXEL_COLOR_HEIGHTS[3], '#c1839f'], + [PIXEL_COLOR_HEIGHTS[4], '#b06b92'], + [PIXEL_COLOR_HEIGHTS[5], '#9a587d'], + [PIXEL_COLOR_HEIGHTS[6], '#825076'], + [PIXEL_COLOR_HEIGHTS[7], '#6d4a6d'], + [PIXEL_COLOR_HEIGHTS[8], '#594063'], + [PIXEL_COLOR_HEIGHTS[9], '#493958'], + [PIXEL_COLOR_HEIGHTS[10], '#3d3352'], + [PIXEL_COLOR_HEIGHTS[11], '#35304c'], + [PIXEL_COLOR_HEIGHTS[12], '#2e2c48'], ]); export const EXPORT_TERRAIN_PIXEL_COLORS: Map = new Map([