A.7-polish-4 applet stat-block palette tweak — user-edited 2026-05-25 PM. Two adjustments inside _billboard.scss's .my-sign-applet-stat-block block: (1) Minor/middle .stat-face-title color shifts from --quiUser to --quaUser — the previous --quiUser tint blended too closely w. the keywords text in the applet at applet-card-w sizing; --quaUser provides better contrast against the dimmer surrounding body. (2) The gravity-polarity stat-block inversion now reads --priUser bg + --secUser-tinted keywords/border (was --secUser bg + --priUser keywords) — the prior assignment had the stat-block more saturated than the adjacent card, drawing the eye away from the card art; flipping the assignment lets the card stay the visual anchor while the stat-block recedes into a calmer companion surface. .stat-face-label color stays --quiUser since it's the always-on identity marker and reads correctly against both bg variants. Pure SCSS — no template / view / JS / test changes
Some checks failed
ci/woodpecker/push/pyswiss Pipeline was successful
ci/woodpecker/push/main Pipeline failed

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Disco DeDisco
2026-05-25 02:46:55 -04:00
parent 7c6ab39635
commit 711b609e0c

View File

@@ -639,7 +639,7 @@ body.page-billposts {
line-height: 1.15;
margin: 0 0 calc(var(--applet-card-w) * 0.03);
text-wrap: balance;
color: rgba(var(--quiUser), 1);
color: rgba(var(--quaUser), 1);
}
&[data-arcana-key="MAJOR"] .stat-face-title {
color: rgba(var(--terUser), 1);
@@ -676,12 +676,12 @@ body.page-billposts {
// --secUser stat block (light), w. --quiUser label + --priUser
// keywords for contrast against the light bg.
.my-sign-applet-body[data-polarity="gravity"] .my-sign-applet-stat-block {
background: rgba(var(--secUser), 0.8);
border-color: rgba(var(--priUser), 0.15);
background: rgba(var(--priUser), 1);
border-color: rgba(var(--secUser), 0.15);
.stat-face-label { color: rgba(var(--quiUser), 1); }
.stat-keywords li {
color: rgba(var(--priUser), 1);
border-bottom-color: rgba(var(--priUser), 0.18);
color: rgba(var(--secUser), 1);
border-bottom-color: rgba(var(--secUser), 0.18);
}
}