refactor: update color classes to use CSS variables for consistency

This commit is contained in:
hamed
2026-07-27 17:07:17 +03:30
parent bdc00fe267
commit e4edaea9b8
3 changed files with 32 additions and 2 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ export default function ImageCropModal({ src, fileName, onCancel, onConfirm }: I
<span className="text-xs text-[var(--text-2)] shrink-0">بزرگنمایی</span>
<input type="range" min={1} max={3} step={0.01} value={zoom}
onChange={e => setZoom(Number(e.target.value))}
className="w-full accent-indigo-600" />
className="w-full accent-[var(--primary)]" />
</div>
<div className="flex items-center justify-end gap-3">
<button onClick={onCancel} disabled={processing}