import { swagPalette as palette } from '@hero-design/colors'; import type { SystemPalette, BrandSystemPalette } from './types'; import globalPalette from './global'; const swagBrandSystemPallete: BrandSystemPalette = { primary: palette.scarletGum, onPrimary: palette.white, secondary: palette.scarletGumLight30, onSecondary: palette.white, defaultSurface: palette.greyLight90, highlightedSurface: palette.scarletGumLight90, pressedSurface: palette.scarletGumDark20, decorativePrimary: palette.white, decorativePrimarySurface: palette.maasstrichtBlueLight80, }; /** * @deprecated This palette is deprecated and will be removed in the next major release. */ const swagSystemPalette: SystemPalette = { // Global ...globalPalette, // Brand ...swagBrandSystemPallete, }; export default swagSystemPalette;