apps/web: change prod danger color

pacakges/ui: fix button secondary className
This commit is contained in:
vchikalkin 2023-11-10 10:43:59 +03:00
parent 7c9dc6f855
commit c0178de98d
2 changed files with 6 additions and 11 deletions

View File

@ -1,9 +1,9 @@
import { env } from '../config/env';
export const COLORS_PROD = {
COLOR_DANGER: '#D10000',
COLOR_DANGER: '#B20004',
COLOR_PRIMARY: '#1C01A9',
COLOR_SECONDARY: '#3A0185',
COLOR_SECONDARY: '#5A31D6',
COLOR_TERTIARTY: '#580161',
};
export const COLORS_DEV = {

View File

@ -19,8 +19,8 @@ const variants = cva(
'outline-default':
'bg-transparent text-primary border border-primary hover:bg-primary hover:text-white',
'outline-secondary':
'opacity-70 bg-transparent text-primary border border-primary hover:bg-primary hover:text-white',
secondary: 'bg-primary-400 hover:bg-primary-700 hover:opacity-100',
'opacity-70 bg-transparent text-secondary border border-secondary hover:bg-secondary hover:text-white',
secondary: 'bg-secondary hover:bg-secondary-700',
},
},
}
@ -29,12 +29,7 @@ const variants = cva(
export type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<typeof variants>;
export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
({ className, intent, type, ...props }, ref) => (
<button
type="button"
className={cn(variants({ className, intent, type }))}
ref={ref}
{...props}
/>
({ className, intent, ...props }, ref) => (
<button type="button" className={cn(variants({ className, intent }))} ref={ref} {...props} />
)
);