| name | scan-and-paper-textures |
| description | Use when adding hand-made or scanned feel to digital surfaces. Scan textures (dust, grain, fold lines) add tactile authenticity.
|
Scan and Paper Textures
Scan textures = digital signal of physical origin. Subtle dust, grain, fold lines suggest the artifact came from print, not pixels.
Texture types
- Paper grain — fine fibrous pattern (5-10% opacity)
- Scan dust — small particles (random spots, 3-5% opacity)
- Fold lines — vertical creases (5-8% opacity)
- Halftone dots — large-grain pattern (subtle)
- Edge wear — feathered/torn edges on photos
- Film grain — even pixel noise (5-10% opacity)
Where to apply
- Photo overlay (entire image)
- Editorial article body backgrounds
- Section divider backgrounds
- Pull-quote backgrounds
- Hero compositions
Not for:
- Buttons (interferes with click target)
- Form fields
- Mobile viewport (performance)
Implementation
Method 1: SVG filter (procedural)
.texture-overlay::after {
content: '';
position: absolute;
inset: 0;
background-image: url('/textures/paper-grain.svg');
opacity: 0.08;
mix-blend-mode: multiply;
pointer-events: none;
}
Method 2: PNG overlay (pre-rendered, smaller file)
Where this fits in the X3 empire
Used in CardPrepAI editorial and methodology pages for tactile feel.