import { jobsPalette as palette } from '@hero-design/colors'; import swag from './swag'; import type { SystemPalette, BrandSystemPalette } from './types'; const jobsBrandSystemPallete: BrandSystemPalette = { primary: palette.apple, onPrimary: palette.white, secondary: palette.maasstrichtBlueLight30, onSecondary: palette.white, defaultSurface: palette.white, highlightedSurface: palette.hitPinkLight90, pressedSurface: palette.appleDark20, decorativePrimary: palette.hitPink, decorativePrimarySurface: palette.hitPinkLight80, }; /** * @deprecated This palette is deprecated and will be removed in the next major release. */ const jobsSystemPalette: SystemPalette = { ...swag, ...jobsBrandSystemPallete, }; export default jobsSystemPalette;