mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
f3140d4b3d
libcanvas/Canvas.py, libgui/GuiCanvasPanel.py: split from libcanvas/Canvas.py. libcanvas/CanvasImportStore.py:import{Ansi{Buffer,File},SauceFile}(): fixed (via spoke.) {libgui/Gui{CanvasInterface,Frame},libtools/Tool{Fill,Select,Text},roar}.py: updated. libgui/GuiCanvasWxBackend.py: merged from libcanvas/CanvasBackend.py.
30 lines
897 B
Python
30 lines
897 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# GuiCanvasColours.py -- XXX
|
|
# 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
|