Restore the subtle paper-grain background texture
The flat ambient-glow background (from an earlier "premium minimalism" pass) read as plain white/black. Brings back the fine SVG noise grain so the page background has some structure instead of a bare color. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
3489370d11
commit
c39384d38e
1 changed files with 6 additions and 12 deletions
|
|
@ -11,22 +11,16 @@ html {
|
||||||
mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
|
mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Premium-Hintergrund: kein Muster/Korn, sondern gedaempfte (nie reine) Grundfarbe plus
|
/* Feines Papierkorn als Hintergrundstruktur statt einer reinen Flaeche - erinnert an
|
||||||
zwei sehr weiche, grossflaechige Marken-Gruen-Glows als ambiente Lichtstimmung - das
|
leicht zerknittertes Papier. Sehr kontrastarm, damit es nie mit Text/Bildern konkurriert.
|
||||||
Prinzip, das echte High-End-Marken (Porsche, Rolex) statt sichtbarer Texturen nutzen:
|
Das Weiss ist bewusst etwas gedaempft (statt reinem #fff), das blendet weniger. */
|
||||||
ruhige, tief abgestufte Flaeche + Licht statt Dekor. */
|
|
||||||
.page-texture {
|
.page-texture {
|
||||||
background-color: #f6f5f0;
|
background-color: #f6f5f0;
|
||||||
background-image:
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch' result='noise'/%3E%3CfeColorMatrix in='noise' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
|
||||||
radial-gradient(ellipse 900px 700px at 92% -8%, rgba(107, 166, 38, 0.06), transparent 60%),
|
background-size: 180px 180px;
|
||||||
radial-gradient(ellipse 800px 650px at -8% 100%, rgba(107, 166, 38, 0.05), transparent 55%);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark .page-texture {
|
.dark .page-texture {
|
||||||
background-color: #0a0b07;
|
background-color: #0a0b07;
|
||||||
background-image:
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch' result='noise'/%3E%3CfeColorMatrix in='noise' type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
|
||||||
radial-gradient(ellipse 900px 700px at 92% -8%, rgba(146, 212, 68, 0.13), transparent 60%),
|
|
||||||
radial-gradient(ellipse 800px 650px at -8% 100%, rgba(146, 212, 68, 0.1), transparent 55%);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue