From 1c1cfc6d75b432de6a7a2f1fc49d877ba7d670c0 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Wed, 15 Nov 2023 19:54:18 -0600 Subject: [PATCH] CE-740 Add blueGray and grayLines colors --- src/qqq/assets/theme/base/colors.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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",