diff --git a/app/components/Button/Button.tsx b/app/components/Button/Button.tsx index 6ae047d..3538153 100644 --- a/app/components/Button/Button.tsx +++ b/app/components/Button/Button.tsx @@ -68,23 +68,23 @@ function classNames({ }): string { // Base classes let buttonStyles = `${ - icon ? "rounded-full" : "rounded-md" + icon ? "rounded-full" : "rounded-md font-medium" } transition-all box-border`; // Set classes for different variants let variantStyles = ""; switch (variant) { case "primary": - variantStyles = "text-white bg-stone-600 hover:opacity-80"; + variantStyles = "text-white bg-primary-600 hover:opacity-80"; break; case "secondary": - variantStyles = "text-stone-700 bg-stone-200 hover:opacity-80"; + variantStyles = "text-neutral-800 bg-neutral-300 hover:opacity-80"; break; case "outlined": variantStyles = - "bg-inherit text-stone-800 border-stone-400 border hover:bg-stone-200"; + "bg-inherit text-primary-500 border-primary-500 border hover:bg-primary-100"; break; case "text": - variantStyles = "hover:bg-stone-200 text-stone-700"; + variantStyles = "hover:bg-neutral-200 text-neutral-700"; break; } buttonStyles = append(buttonStyles, variantStyles); diff --git a/app/components/Dialog/Dialog.tsx b/app/components/Dialog/Dialog.tsx index 5439aaa..86c4652 100644 --- a/app/components/Dialog/Dialog.tsx +++ b/app/components/Dialog/Dialog.tsx @@ -24,7 +24,7 @@ export const Dialog: React.FC> = ({ className="relative z-10" data-testid="dialog" > -
+
@@ -57,13 +57,13 @@ export const Dialog: React.FC> = ({ {title} {description && (
-

{description}

+

{description}

)} diff --git a/app/components/Input/Input.tsx b/app/components/Input/Input.tsx index 013c10c..699c51e 100644 --- a/app/components/Input/Input.tsx +++ b/app/components/Input/Input.tsx @@ -8,7 +8,7 @@ export const Input: React.FC> = data-testid="input" className={[ !props.hidden && "block", - "w-full bg-inherit focus:outline-none placeholder-stone-400", + "w-full bg-inherit focus:outline-none placeholder-neutral-400", className, ].join(" ")} {...props} diff --git a/app/components/MarkingInput/MarkingInput.tsx b/app/components/MarkingInput/MarkingInput.tsx index d19bbd2..db16b03 100644 --- a/app/components/MarkingInput/MarkingInput.tsx +++ b/app/components/MarkingInput/MarkingInput.tsx @@ -67,7 +67,7 @@ export const MarkingInput: React.FC = ({ marking, deleteMark }) => { style={{ width: `${mark.length || 1}ch`, }} - className="font-mono rounded-sm !bg-stone-200 w-auto" + className="font-mono rounded-sm !bg-neutral-200 w-auto" /> + ); }; diff --git a/app/components/forms/setlist/SetlistForm.tsx b/app/components/forms/setlist/SetlistForm.tsx index d917572..782315c 100644 --- a/app/components/forms/setlist/SetlistForm.tsx +++ b/app/components/forms/setlist/SetlistForm.tsx @@ -19,7 +19,7 @@ const SetlistForm = forwardRef< className="space-y-3" >
-
-