From 752d913d8dd37ad775418d32f2f3e8a1ad132126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aykut=20Sara=C3=A7?= Date: Fri, 18 Mar 2022 11:22:26 +0300 Subject: [PATCH] add seagreen back --- src/components/Button/index.tsx | 2 +- src/constants/theme.ts | 1 + src/typings/styled.d.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Button/index.tsx b/src/components/Button/index.tsx index fea5cf9..b4e1edb 100644 --- a/src/components/Button/index.tsx +++ b/src/components/Button/index.tsx @@ -5,7 +5,7 @@ enum ButtonType { PRIMARY = "SILVER_DARK", SECONDARY = "BLURPLE", DANGER = "DANGER", - SUCCESS = "LIGHTGREEN", + SUCCESS = "SEAGREEN", WARNING = "ORANGE", } diff --git a/src/constants/theme.ts b/src/constants/theme.ts index 6761487..b7a978f 100644 --- a/src/constants/theme.ts +++ b/src/constants/theme.ts @@ -12,6 +12,7 @@ export const darkTheme: DefaultTheme = { DARK_SALMON: "#E9967A", DANGER: "#F26522", LIGHTGREEN: "#90EE90", + SEAGREEN: "#3BA55D", ORANGE: "#FAA81A", SILVER: "#B9BBBE", SILVER_DARK: "#4D4D4D" diff --git a/src/typings/styled.d.ts b/src/typings/styled.d.ts index 2269160..9794c1f 100644 --- a/src/typings/styled.d.ts +++ b/src/typings/styled.d.ts @@ -20,6 +20,7 @@ declare module "styled-components" { DARK_SALMON: string; DANGER: string; LIGHTGREEN: string; + SEAGREEN: string; ORANGE: string; SILVER: string; SILVER_DARK: string;