diff --git a/platform/ui/src/components/IconButton/IconButton.jsx b/platform/ui/src/components/IconButton/IconButton.jsx index ac85878a7..8992e6177 100644 --- a/platform/ui/src/components/IconButton/IconButton.jsx +++ b/platform/ui/src/components/IconButton/IconButton.jsx @@ -31,31 +31,31 @@ const disabledClasses = { const variantClasses = { text: { default: - 'text-white hover:bg-primary-light hover:text-black active:opacity-80 focus:bg-primary-light focus:text-black', + 'text-white hover:bg-custom-aquaBright hover:text-black active:opacity-80 focus:bg-custom-aquaBright focus:text-black', primary: - 'text-primary-main hover:bg-primary-main hover:text-white active:opacity-80 focus:bg-primary-main focus:text-white', + 'text-custom-blue hover:bg-custom-blue hover:text-white active:opacity-80 focus:bg-custom-blue focus:text-white', secondary: - 'text-darkBlue-100 hover:bg-darkBlue-100 hover:text-white active:opacity-80 focus:bg-darkBlue-100 focus:text-white', + 'text-custom-violetPale hover:bg-custom-violetPale hover:text-white active:opacity-80 focus:bg-custom-violetPale focus:text-white', white: 'text-white hover:bg-white hover:text-black active:opacity-80 focus:bg-white focus:text-black', }, outlined: { default: - 'border bg-trasparent border-primary-light text-white hover:opacity-80 active:opacity-100 focus:opacity-80', + 'border bg-trasparent border-custom-aquaBright text-white hover:opacity-80 active:opacity-100 focus:opacity-80', primary: - 'border bg-transparent border-primary-main text-primary-main hover:opacity-80 active:opacity-100 focus:opacity-80', + 'border bg-transparent border-custom-blue text-custom-blue hover:opacity-80 active:opacity-100 focus:opacity-80', secondary: - 'border bg-transparent border-darkBlue-100 text-darkBlue-100 hover:opacity-80 active:opacity-100 focus:opacity-80', + 'border bg-transparent border-custom-violetPale text-custom-violetPale hover:opacity-80 active:opacity-100 focus:opacity-80', white: 'border bg-transparent border-white text-white hover:opacity-80 active:opacity-100 focus:opacity-80', }, contained: { default: - 'bg-primary-light text-black hover:opacity-80 active:opacity-100 focus:opacity-80', + 'bg-custom-aquaBright text-black hover:opacity-80 active:opacity-100 focus:opacity-80', primary: - 'bg-primary-main text-white hover:opacity-80 active:opacity-100 focus:opacity-80', + 'bg-custom-blue text-white hover:opacity-80 active:opacity-100 focus:opacity-80', secondary: - 'bg-darkBlue-100 text-white hover:opacity-80 active:opacity-100 focus:opacity-80', + 'bg-custom-violetPale text-white hover:opacity-80 active:opacity-100 focus:opacity-80', white: 'bg-white text-black hover:opacity-80 active:opacity-100 focus:opacity-80', },