1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

add secondary color option [skip ci]

This commit is contained in:
checktheroads
2019-08-23 08:49:11 -07:00
parent e337913cbe
commit 97bbed26e7

View File

@@ -231,11 +231,12 @@ class Branding(BaseSettings):
"""Class model for params.colors"""
primary: Color = "#40798c"
background: Color = "#fbfffe"
light: Color = "#fbfffe"
dark: Color = "#383541"
secondary: Color = "#330036"
danger: Color = "#ff5e5b"
warning: Color = "#eec643"
light: Color = "#fbfffe"
dark: Color = "#383541"
background: Color = "#fbfffe"
class Tag(BaseSettings):
"""Class model for params.colors.tag"""