mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-01 13:26:38 +00:00
30 lines
890 B
Python
30 lines
890 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# GuiCanvasColours.py
|
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
|
#
|
|
|
|
#
|
|
# Colours: mIRC colour number to RGBA map given none of ^[BFV_] (bold, italic, reverse, underline)
|
|
#
|
|
Colours = [
|
|
[255, 255, 255, 255, "White"],
|
|
[0, 0, 0, 255, "Black"],
|
|
[0, 0, 187, 255, "Blue"],
|
|
[0, 187, 0, 255, "Green"],
|
|
[255, 85, 85, 255, "Light Red"],
|
|
[187, 0, 0, 255, "Red"],
|
|
[187, 0, 187, 255, "Purple"],
|
|
[187, 187, 0, 255, "Yellow"],
|
|
[255, 255, 85, 255, "Light Yellow"],
|
|
[85, 255, 85, 255, "Light Green"],
|
|
[0, 187, 187, 255, "Cyan"],
|
|
[85, 255, 255, 255, "Light Cyan"],
|
|
[85, 85, 255, 255, "Light Blue"],
|
|
[255, 85, 255, 255, "Pink"],
|
|
[85, 85, 85, 255, "Grey"],
|
|
[187, 187, 187, 255, "Light Grey"],
|
|
];
|
|
|
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|