mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Temp * Dialog setup * Fixed basic beastform * Reworked beastform to hold it's data entirely in the beastformEffect * UpdateActorTokens fix * Removed hardcoded tierlimit on beastform * PR fixes
18 lines
540 B
Text
18 lines
540 B
Text
/**
|
|
* Applies theme-specific styles.
|
|
* @param {Rules} @darkRules - Styles to apply when `.theme-dark` is present
|
|
* @param {Rules} @lightRules - Styles to apply when `.theme-light` is present
|
|
*/
|
|
.appTheme(@darkRules, @lightRules) {
|
|
.themed {
|
|
&.theme-dark .application.sheet.dh-style,
|
|
&.theme-dark.application.sheet.dh-style {
|
|
@darkRules();
|
|
}
|
|
|
|
&.theme-light .application.sheet.dh-style,
|
|
&.theme-light.application.sheet.dh-style {
|
|
@lightRules();
|
|
}
|
|
}
|
|
}
|