Turquoise.
[naja.git] / naja / widgets / info_area.py
index f0f8eefee7c86b1ac291c9f418d915cba17d2118..36b375533f0c497f68f80151b7e9357b8f64b792 100644 (file)
@@ -20,12 +20,12 @@ from naja.widgets.text import TextBoxWidget, TextWidget
 
 
 HINTS = {
-    ACT: ("Choose an action using the Up/Down keys.\n"
-          "Press Return to execute the action."),
-    EXAMINE: "Select a tile to examine using the arrow keys.",
+    ACT: "Choose an action using {NORTH,SOUTH} keys.\n"
+         "Press {RETURN} to execute it.",
+    EXAMINE: "Browse the tiles with {NORTH,SOUTH,EAST,WEST} keys.",
 }
 
-HINT_LEGAL_MOVE = "\nPress Return to move to this tile."
+HINT_LEGAL_MOVE = "\nPress {RETURN} to move to this tile."
 
 TITLES = {
     ACT: "Choose an Action",
@@ -85,8 +85,9 @@ class InfoAreaWidget(Widget):
 
         hint = TextBoxWidget(
             (0, 0), hint_text, padding=4,
-            box_width=box_width,
-            border=2, border_colour=PALETTE.GREY)
+            colour=PALETTE.WHITE, border=2,
+            bg_colour=PALETTE.BLACK, border_colour=PALETTE.BLUE,
+            box_width=box_width)
         hint.prepare()
         y_offset = (INFO_SIZE[1] - hint.surface.get_rect().height
                     - BIT_SIZE[1] - 2)