enable color as opposed to grayscale by default

This commit is contained in:
EthanHealy01 2025-09-26 11:21:13 +01:00
parent a27929d13e
commit 7b21e87fcf
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ export default function FakeScanPreview({ file, parameters }: Props) {
}
const grayscale = parameters.colorspace === 'grayscale' ? 'grayscale(1)' : 'grayscale(0)';
const sepia = parameters.yellowish ? 'sepia(0.35)' : 'sepia(0)';
const sepia = parameters.yellowish ? 'sepia(0.6)' : 'sepia(0)';
// Simulate noise via drop-shadow stacking is heavy; skip and rely on server-side
return `${grayscale} ${sepia} brightness(${brightness}) contrast(${contrast}) blur(${blur}px)`;
}, [parameters]);

View File

@ -21,7 +21,7 @@ export const defaultParameters: FakeScanParameters = {
quality: 'high',
rotation: 'slight',
advancedEnabled: false,
colorspace: 'grayscale',
colorspace: 'color',
border: 20,
rotate: 0,
rotateVariance: 2,