mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-04 23:06:39 +00:00
28 lines
851 B
Python
28 lines
851 B
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.
|
|
#
|
|
|
|
ENNToolMiRCARTColours = [
|
|
[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
|