summaryrefslogtreecommitdiff
path: root/src/sliceitoff/display/colors.py
blob: f8747c02a5bcbc7167003612030a0b990be5797a (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 """

CGA_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)
]