summaryrefslogtreecommitdiff
path: root/src/sliceitoff/display/colors.py
blob: 18ccfc9bb8403a7bf920e2ecf54e312595dfb452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
""" text.colors - colors are defined here """

EGA_COLORS=[
    (0x00,0x00,0x00,0xFF),
    (0x00,0x00,0xAA,0xFF),
    (0x00,0xAA,0x00,0xFF),
    (0x00,0xAA,0xAA,0xFF),
    (0xAA,0x00,0x00,0xFF),
    (0xAA,0x00,0xAA,0xFF),
    (0xAA,0x55,0x00,0xFF),
    (0xAA,0xAA,0xAA,0xFF),
    (0x55,0x55,0x55,0xFF),
    (0x55,0x55,0xFF,0xFF),
    (0x55,0xFF,0x55,0xFF),
    (0x55,0xFF,0xFF,0xFF),
    (0xFF,0x55,0x55,0xFF),
    (0xFF,0x55,0xFF,0xFF),
    (0xFF,0xFF,0x55,0xFF),
    (0xFF,0xFF,0xFF,0xFF)
]