summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
authorPekka Lampila <pekka.lampila@iki.fi>2014-02-20 05:10:14 +0200
committerPekka Lampila <pekka.lampila@iki.fi>2014-02-20 05:19:10 +0200
commitdec474a8ca7661a22e66b7537d594a75e3414587 (patch)
tree742438d75531262fec9ce8d398ea989af76eaaa8 /crawl-ref/source/initfile.cc
parent6d62fe8043bd1b7df30b1e61e83d7bb31e509b41 (diff)
downloadcrawl-ref-dec474a8ca7661a22e66b7537d594a75e3414587.tar.gz
crawl-ref-dec474a8ca7661a22e66b7537d594a75e3414587.zip
Change default minimap colours. (ontoclasm)
Old defaults were: tile_player_col = white tile_monster_col = red tile_neutral_col = red tile_peaceful_col = lightred tile_friendly_col = lightred tile_plant_col = darkgreen tile_item_col = green tile_unseen_col = black tile_floor_col = lightgrey tile_mapped_floor_col = lightblue tile_wall_col = darkgrey tile_mapped_wall_col = blue tile_door_col = brown tile_downstairs_col = magenta tile_upstairs_col = blue tile_branchstairs_col = magenta tile_feature_col = cyan tile_trap_col = yellow tile_water_col = grey tile_lava_col = grey tile_excluded_col = darkcyan tile_excl_centre_col = darkblue tile_window_col = yellow
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc42
1 files changed, 21 insertions, 21 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 1cfd973453..2adb3d49f6 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -971,28 +971,28 @@ void game_options::reset_options()
// minimap colours
tile_player_col = str_to_tile_colour("white");
- tile_monster_col = str_to_tile_colour("red");
- tile_neutral_col = str_to_tile_colour("red");
- tile_peaceful_col = str_to_tile_colour("lightred");
- tile_friendly_col = str_to_tile_colour("lightred");
- tile_plant_col = str_to_tile_colour("darkgreen");
- tile_item_col = str_to_tile_colour("green");
+ tile_monster_col = str_to_tile_colour("#660000");
+ tile_neutral_col = str_to_tile_colour("#660000");
+ tile_peaceful_col = str_to_tile_colour("#664400");
+ tile_friendly_col = str_to_tile_colour("#664400");
+ tile_plant_col = str_to_tile_colour("#446633");
+ tile_item_col = str_to_tile_colour("#005544");
tile_unseen_col = str_to_tile_colour("black");
- tile_floor_col = str_to_tile_colour("lightgrey");
- tile_wall_col = str_to_tile_colour("darkgrey");
- tile_mapped_floor_col = str_to_tile_colour("lightblue");
- tile_mapped_wall_col = str_to_tile_colour("blue");
- tile_door_col = str_to_tile_colour("brown");
- tile_downstairs_col = str_to_tile_colour("magenta");
- tile_upstairs_col = str_to_tile_colour("blue");
- tile_branchstairs_col = str_to_tile_colour("magenta");
- tile_feature_col = str_to_tile_colour("cyan");
- tile_trap_col = str_to_tile_colour("yellow");
- tile_water_col = str_to_tile_colour("grey");
- tile_lava_col = str_to_tile_colour("grey");
- tile_excluded_col = str_to_tile_colour("darkcyan");
- tile_excl_centre_col = str_to_tile_colour("darkblue");
- tile_window_col = str_to_tile_colour("yellow");
+ tile_floor_col = str_to_tile_colour("#333333");
+ tile_wall_col = str_to_tile_colour("#666666");
+ tile_mapped_floor_col = str_to_tile_colour("#222266");
+ tile_mapped_wall_col = str_to_tile_colour("#444499");
+ tile_door_col = str_to_tile_colour("#775544");
+ tile_downstairs_col = str_to_tile_colour("#ff00ff");
+ tile_upstairs_col = str_to_tile_colour("cyan");
+ tile_branchstairs_col = str_to_tile_colour("#ff7788");
+ tile_feature_col = str_to_tile_colour("#ffcc00");
+ tile_trap_col = str_to_tile_colour("#aa6644");
+ tile_water_col = str_to_tile_colour("#114455");
+ tile_lava_col = str_to_tile_colour("#552211");
+ tile_excluded_col = str_to_tile_colour("#552266");
+ tile_excl_centre_col = str_to_tile_colour("#552266");
+ tile_window_col = str_to_tile_colour("#558855");
#endif
#ifdef USE_TILE_LOCAL