mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# ENNTool -- mIRC art animation tool (for EFnet #MiRCART) (WIP)
|
|
# Copyright (c) 2018 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
# This project is licensed under the terms of the MIT license.
|
|
#
|
|
|
|
#
|
|
# MiRCARTColours: mIRC colour number to RGBA map given none of ^[BFV_] (bold, italic, reverse, underline],
|
|
#
|
|
ENNToolMiRCARTColours = [
|
|
[255, 255, 255], # White
|
|
[0, 0, 0], # Black
|
|
[0, 0, 187], # Blue
|
|
[0, 187, 0], # Green
|
|
[255, 85, 85], # Light Red
|
|
[187, 0, 0], # Red
|
|
[187, 0, 187], # Purple
|
|
[187, 187, 0], # Yellow
|
|
[255, 255, 85], # Light Yellow
|
|
[85, 255, 85], # Light Green
|
|
[0, 187, 187], # Cyan
|
|
[85, 255, 255], # Light Cyan
|
|
[85, 85, 255], # Light Blue
|
|
[255, 85, 255], # Pink
|
|
[85, 85, 85], # Grey
|
|
[187, 187, 187], # Light Grey
|
|
]
|
|
|
|
#
|
|
# MiRCARTColours: mIRC colour number to RGBA float map given none of ^[BFV_] (bold, italic, reverse, underline],
|
|
#
|
|
ENNToolMiRCARTColoursFloat = [
|
|
[1.00, 1.00, 1.00], # White
|
|
[0.00, 0.00, 0.00], # Black
|
|
[0.00, 0.00, 0.73], # Blue
|
|
[0.00, 0.73, 0.00], # Green
|
|
[1.00, 0.33, 0.33], # Light Red
|
|
[0.73, 0.00, 0.00], # Red
|
|
[0.73, 0.00, 0.73], # Purple
|
|
[0.73, 0.73, 0.00], # Yellow
|
|
[1.00, 1.00, 0.33], # Light Yellow
|
|
[0.33, 1.00, 0.33], # Light Green
|
|
[0.00, 0.73, 0.73], # Cyan
|
|
[0.33, 1.00, 1.00], # Light Cyan
|
|
[0.33, 0.33, 1.00], # Light Blue
|
|
[1.00, 0.33, 1.00], # Pink
|
|
[0.33, 0.33, 0.33], # Grey
|
|
[0.73, 0.73, 0.73], # Light Grey
|
|
]
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|