import { walletPalette as palette } from '@hero-design/colors'; import swag from './swag'; import type { SystemPalette, BrandSystemPalette } from './types'; const walletBrandSystemPallete: BrandSystemPalette = { primary: palette.royalBlue, onPrimary: palette.white, secondary: palette.royalBlueDark30, onSecondary: palette.white, defaultSurface: palette.white, highlightedSurface: palette.royalBlueLight90, pressedSurface: palette.royalBlueDark20, decorativePrimary: palette.frenchSky, decorativePrimarySurface: palette.frenchSkyLight80, }; /** * @deprecated This palette is deprecated and will be removed in the next major release. */ const walletSystemPalette: SystemPalette = { ...swag, ...walletBrandSystemPallete, }; export default walletSystemPalette;