nightshade-api 0.53.0

Procedural high level API for the nightshade game engine
Documentation
/* nightshade jump-label overlay. */

.nightshade-jump-overlay {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: color-mix(in srgb, var(--nightshade-bg) 45%, transparent);
}

.nightshade-jump-label {
  position: fixed;
  transform: translate(-50%, -50%);
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--nightshade-accent);
  color: var(--nightshade-bg);
  font-family: var(--nightshade-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--nightshade-shadow);
}

.nightshade-jump-typed {
  opacity: 0.5;
}