centralize the theming

This commit is contained in:
fred 2025-08-20 10:06:23 -07:00
parent 30b28056de
commit db8b20ee71
20 changed files with 183 additions and 114 deletions

View file

@ -47,7 +47,7 @@ const AddBulkSteps: React.FC<AddBulkStepsProps> = ({ steps, onChange }) => {
return (
<div>
<h3 className="text-xl font-bold">Steps:</h3>
<h3 className="text-xl font-bold text-[var(--color-secondaryTextDark)]">Steps:</h3>
<textarea
rows={8}
value={textValue}
@ -55,7 +55,7 @@ const AddBulkSteps: React.FC<AddBulkStepsProps> = ({ steps, onChange }) => {
onKeyDown={handleKeyDown}
onBlur={handleBlur}
placeholder="Enter steps separated by new line"
className="mb-4 p-2 border border-gray-300 rounded w-full"
className="mb-4 p-2 border border-[var(--color-primaryBorder)] rounded w-full"
/>
</div>
);