import { workPalette as palette } from '@hero-design/colors'; import swag from './swag'; import type { SystemPalette, BrandSystemPalette } from './types'; const workBrandSystemPallete: BrandSystemPalette = { primary: palette.black, onPrimary: palette.white, secondary: palette.blackLight30, onSecondary: palette.white, defaultSurface: palette.white, highlightedSurface: palette.blackLight90, pressedSurface: palette.black, decorativePrimary: palette.gold, decorativePrimarySurface: palette.goldLight80, }; /** * @deprecated This palette is deprecated and will be removed in the next major release. */ const workSystemPalette: SystemPalette = { ...swag, ...workBrandSystemPallete, }; export default workSystemPalette;