From 65237a0170a9da8496656d4039de8f4a15291f61 Mon Sep 17 00:00:00 2001 From: Venkata Suresh Yarava <69299412+Sureshyarava@users.noreply.github.com> Date: Tue, 1 Oct 2024 17:07:00 -0400 Subject: [PATCH] added Theme.ts file which contains all the hex values of the majors colors that are used (#293) * added Theme.ts file which contains all the hex values of the majors colors that are used --------- Co-authored-by: Venkata Suresh Co-authored-by: Dylan --- client/assets/theme.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 client/assets/theme.ts diff --git a/client/assets/theme.ts b/client/assets/theme.ts new file mode 100644 index 000000000..65e0f3be7 --- /dev/null +++ b/client/assets/theme.ts @@ -0,0 +1,9 @@ +export const colors = { + gray: "#E3E3E3", + darkGray: "#8E8E8E", + green: "#34D1BF", + white: "#FFFFFF", + red: "#FF2147", + black: "#000000", + blue: "#3532D4", +};