import { eBensPalette as palette } from '@hero-design/colors'; import swag from './swag'; import type { SystemPalette, BrandSystemPalette } from './types'; const eBensBrandSystemPallete: BrandSystemPalette = { primary: palette.violet, onPrimary: palette.white, secondary: palette.violetLight30, onSecondary: palette.white, defaultSurface: palette.white, highlightedSurface: palette.violetLight90, pressedSurface: palette.violetDark20, decorativePrimary: palette.mauve, decorativePrimarySurface: palette.mauveLight80, }; /** * @deprecated This palette is deprecated and will be removed in the next major release. */ const eBensSystemPalette: SystemPalette = { ...swag, ...eBensBrandSystemPallete, }; export default eBensSystemPalette;