Musicreater/msctLib/settings.py

33 lines
491 B
Python
Raw Normal View History

# -*- coding:utf-8 -*-
2022-03-09 22:10:54 +08:00
DEFAULTBLUE = (0, 137, 242)
2022-06-25 22:06:19 +08:00
# 0089F2
2022-03-09 22:10:54 +08:00
WEAKBLUE = (0, 161, 231)
2022-06-25 22:06:19 +08:00
# 00A1E7
2022-03-09 22:10:54 +08:00
LIGHTBLUE = (38, 226, 255)
2022-06-25 22:06:19 +08:00
# 26E2FF
2022-03-09 22:10:54 +08:00
RED = (255, 52, 50)
2022-06-25 22:06:19 +08:00
# FF3432
2022-03-09 22:10:54 +08:00
PURPLE = (171, 112, 255)
2022-06-25 22:06:19 +08:00
# AB70FF
2022-03-09 22:10:54 +08:00
GREEN = (0, 255, 33)
WHITE = (242, 244, 246)
2022-06-25 22:06:19 +08:00
# F2F4F6
2022-03-09 22:10:54 +08:00
BLACK = (18, 17, 16)
2022-06-25 22:06:19 +08:00
# 121110
settings = {
'language' : 'zh-CN',
'theme' : {
'' : '',
},
}
class msctSetting:
def __init__(self,**settings) -> None:
pass
def __call__(self, **kwds):
2022-06-25 22:06:19 +08:00
pass