style(fonts): use readable font for window titles while keeping Wood

Stamp for content headings
This commit is contained in:
Alexander Minges 2025-07-17 20:26:54 +02:00
parent bcf43f1bd6
commit 3c5e24a646
Signed by: Athemis
GPG key ID: 31FBDEF92DDB162B

View file

@ -66,12 +66,17 @@
}
// Direct CSS rules with higher specificity to override FoundryVTT defaults
h1, h2, h4, h5,
h1:not(.window-title), h2, h4, h5,
.ds4-currency-title,
.ds4-embedded-document-list-title {
font-family: var(--ds4-font-heading) !important;
text-transform: uppercase;
font-weight: 100;
font-weight: 100 !important;
text-rendering: optimizeSpeed;
}
// Keep window titles readable with standard font
.window-title {
font-family: var(--font-sans) !important;
font-weight: 600 !important;
text-transform: none;
}