style(headings): replace FoundryVTT header fonts with DS4 heading font

This commit is contained in:
Alexander Minges 2025-07-17 20:17:25 +02:00
parent dfb2a4a781
commit bcf43f1bd6
Signed by: Athemis
GPG key ID: 31FBDEF92DDB162B

View file

@ -57,4 +57,21 @@
:root {
--ds4-font-primary: Lora, serif;
--ds4-font-heading: "Wood Stamp", sans-serif;
// Override FoundryVTT header fonts to use DS4 heading font
--font-h1: var(--ds4-font-heading);
--font-h2: var(--ds4-font-heading);
--font-h4: var(--ds4-font-heading);
--font-h5: var(--ds4-font-heading);
}
// Direct CSS rules with higher specificity to override FoundryVTT defaults
h1, 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;
}