mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2024-11-11 01:27:35 +08:00
25 lines
427 B
Python
25 lines
427 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
|
|
DEFAULTBLUE = (0, 137, 242)
|
|
WEAKBLUE = (0, 161, 231)
|
|
LIGHTBLUE = (38, 226, 255)
|
|
RED = (255, 52, 50)
|
|
PURPLE = (171, 112, 255)
|
|
GREEN = (0, 255, 33)
|
|
WHITE = (242, 244, 246)
|
|
BLACK = (18, 17, 16)
|
|
|
|
settings = {
|
|
'language' : 'zh-CN',
|
|
'theme' : {
|
|
'' : '',
|
|
},
|
|
}
|
|
|
|
class msctSetting:
|
|
def __init__(self,**settings) -> None:
|
|
pass
|
|
|
|
def __call__(self, **kwds):
|
|
pass |