dh-token-spotlight/styles/styles.css

23 lines
706 B
CSS

/* Daggerheart Token Spotlight Glow Effect */
.dh-spotlight-glow {
color: #ffd700 !important; /* Gold */
text-shadow: 0 0 5px #ffb300, 0 0 10px #ffb300, 0 0 15px #ff8c00;
}
/* Ensure the control icon container doesn't obscure the glow and has adequate spacing */
#token-hud .control-icon.active i.dh-spotlight-glow {
color: #ffd700;
}
/* Vertically center the generic FontAwesome icon */
#token-hud .control-icon[data-action="toggle-spotlight"] {
display: flex;
justify-content: center;
align-items: center;
}
/* Player spotlight request effect */
#token-hud .control-icon.active i.dh-spotlight-request {
color: #4da6ff;
text-shadow: 0 0 5px #007bff, 0 0 10px #007bff;
}