diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-29 16:46:50 +0200 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-29 16:46:50 +0200 |
commit | 43a58a7be48208f8d87ee5256c84008a02425ecf (patch) | |
tree | 8fee5e83861b7b1a382b26da4a089dc6872aa5b2 /src/sliceitoff/display/colors.py | |
parent | 505ca2dead48d80b15f64f316218502bdc54daea (diff) |
docstring etc linting
Diffstat (limited to 'src/sliceitoff/display/colors.py')
-rw-r--r-- | src/sliceitoff/display/colors.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/sliceitoff/display/colors.py b/src/sliceitoff/display/colors.py deleted file mode 100644 index f8747c0..0000000 --- a/src/sliceitoff/display/colors.py +++ /dev/null @@ -1,21 +0,0 @@ -""" 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) -] - |