diff --git a/src/qqq/assets/theme/base/colors.ts b/src/qqq/assets/theme/base/colors.ts index 8162765..3df58a4 100644 --- a/src/qqq/assets/theme/base/colors.ts +++ b/src/qqq/assets/theme/base/colors.ts @@ -79,11 +79,18 @@ interface Types main: string; focus: string; } + blueGray: + | { + main: string; + } gray: | { - light: string; main: string; focus: string; + } + grayLines: + | { + main: string; } | any; primary: ColorsTypes | any; @@ -180,11 +187,19 @@ const colors: Types = { focus: "#ffffff", }, + blueGray: { + main: "#546E7A" + }, + gray: { main: "#757575", focus: "#757575", }, + grayLines: { + main: "#D6D6D6" + }, + black: { light: "#000000", main: "#000000",