Parcourir la source

add seagreen back

Aykut Saraç il y a 3 ans
Parent
commit
752d913d8d
3 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 1 1
      src/components/Button/index.tsx
  2. 1 0
      src/constants/theme.ts
  3. 1 0
      src/typings/styled.d.ts

+ 1 - 1
src/components/Button/index.tsx

@@ -5,7 +5,7 @@ enum ButtonType {
   PRIMARY = "SILVER_DARK",
   SECONDARY = "BLURPLE",
   DANGER = "DANGER",
-  SUCCESS = "LIGHTGREEN",
+  SUCCESS = "SEAGREEN",
   WARNING = "ORANGE",
 }
 

+ 1 - 0
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"

+ 1 - 0
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;