summaryrefslogtreecommitdiff
path: root/src/sliceitoff/display/static.py
blob: 8791fb0b39750ce3f08b5e342a690f6ec4029cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
""" display.static - static data like resolution and colors defined here """

INTERNAL_WIDTH = 320_000
INTERNAL_HEIGHT = 240_000

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