feat: add build CI

This commit is contained in:
rubyowo
2022-12-10 18:37:34 +04:00
committed by GitHub
parent 17aaa5b36c
commit 35597b98d7
6 changed files with 86 additions and 49 deletions

View File

@@ -7,9 +7,9 @@ ctp_colors = {
"macchiato": Flavour.macchiato()
}
def get_all_accent(color):
def get_all_accent(flavor):
accent = {}
for key, value in color.__dict__.items():
for key, value in flavor.__dict__.items():
if key not in ['white', 'black', 'text', 'subtext0', 'subtext1', 'overlay0', 'overlay1', 'overlay2', 'surface0', 'surface1', 'surface2', 'base', 'mantle', 'crust']:
accent[key] = value