diff --git a/packages/pancake-uikit/src/theme/colors.ts b/packages/pancake-uikit/src/theme/colors.ts index fb8c01d0b..6a9ebd799 100644 --- a/packages/pancake-uikit/src/theme/colors.ts +++ b/packages/pancake-uikit/src/theme/colors.ts @@ -40,6 +40,7 @@ export const lightColors: Colors = { blue: "linear-gradient(180deg, #A7E8F1 0%, #94E1F2 100%)", violet: "linear-gradient(180deg, #E2C9FB 0%, #CDB8FA 100%)", violetAlt: "linear-gradient(180deg, #CBD7EF 0%, #9A9FD0 100%)", + gold: "linear-gradient(180deg, #FFD800 0%, #FDAB32 100%)", }, }; @@ -70,5 +71,6 @@ export const darkColors: Colors = { blue: "linear-gradient(180deg, #00707F 0%, #19778C 100%)", violet: "linear-gradient(180deg, #6C4999 0%, #6D4DB2 100%)", violetAlt: "linear-gradient(180deg, #434575 0%, #66578D 100%)", + gold: "linear-gradient(180deg, #FFD800 0%, #FDAB32 100%)", }, }; diff --git a/packages/pancake-uikit/src/theme/types.ts b/packages/pancake-uikit/src/theme/types.ts index 8f0990dcf..058e859b6 100644 --- a/packages/pancake-uikit/src/theme/types.ts +++ b/packages/pancake-uikit/src/theme/types.ts @@ -34,6 +34,7 @@ export type Gradients = { blue: string; violet: string; violetAlt: string; + gold: string; }; export type Colors = {