This repository has been archived on 2025-01-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2023-05-03 19:53:01 +03:00
|
|
|
from random import choice
|
|
|
|
|
|
|
|
|
|
from discord import Color
|
|
|
|
|
|
|
|
|
|
light_colors = [
|
|
|
|
|
Color(0xaaffaa),
|
|
|
|
|
Color(0xF9FFAA),
|
|
|
|
|
Color(0xFFAAAA),
|
|
|
|
|
Color(0xFFCCAA),
|
|
|
|
|
Color(0xAAFFE3),
|
|
|
|
|
Color(0xAAB0FF),
|
|
|
|
|
Color(0xFFAAF7)
|
|
|
|
|
]
|
|
|
|
|
|
2023-05-11 15:12:16 +03:00
|
|
|
def choise_light_color(): return choice(light_colors)
|
|
|
|
|
|