nodes/colours.pyΒΆ

Part of SNKRX.

 1"""SNKRX palette: neon-on-dark."""
 2
 3# Background black (used as clear colour and panels)
 4BG = (0.06, 0.07, 0.09, 1.0)
 5BG2 = (0.10, 0.11, 0.14, 1.0)
 6FG = (0.92, 0.94, 0.96, 1.0)
 7GREY = (0.55, 0.58, 0.62, 1.0)
 8DIM = (0.30, 0.33, 0.38, 1.0)
 9
10# Class colours (a327ex palette mirror)
11RED = (1.00, 0.30, 0.30, 1.0)
12ORANGE = (1.00, 0.60, 0.20, 1.0)
13YELLOW = (1.00, 0.90, 0.30, 1.0)
14GREEN = (0.40, 1.00, 0.45, 1.0)
15BLUE = (0.35, 0.65, 1.00, 1.0)
16PURPLE = (0.75, 0.45, 1.00, 1.0)
17WHITE = (1.0, 1.0, 1.0, 1.0)
18
19CLASS_COLOURS = {
20    "warrior": YELLOW,
21    "archer": GREEN,
22    "mage": BLUE,
23    "rogue": RED,
24}