This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from kandinsky import fill_rect as rect, draw_string | |
| from ion import keydown as kd, KEY_OK, KEY_BACK, KEY_UP, KEY_DOWN, KEY_LEFT, KEY_RIGHT, KEY_ALPHA, KEY_SHIFT, KEY_EXE, KEY_PLUS, KEY_ZERO, KEY_ONE, KEY_TWO, KEY_THREE, KEY_FOUR, KEY_FIVE, KEY_SIX, KEY_SEVEN, KEY_EIGHT, KEY_NINE | |
| from time import sleep | |
| # ─── Palette ─────────────────────────────────────────────────────────────── | |
| BG = (15, 15, 30) # fond sombre bleu nuit | |
| PANEL = (25, 25, 55) # panneaux | |
| ACCENT = (80, 200, 255) # bleu cyan vif | |
| ACCENT2 = (255, 200, 60) # jaune doré | |
| WHITE = (240, 240, 240) |