fix(decnet_web/css): sweep violet rgba literals to tokens

Credentials drawer code-block labels (printable:, b64:) and a
dozen other violet wash/tint sites still carried bare rgba(238,
130, 238, *) literals — bright magenta in light mode where
--violet has resolved to charcoal-purple #2d1b4e. Mirrors the
prior matrix/alert/warn/info sweeps: by-alpha buckets land on
var(--violet-tint-10) or var(--violet).
This commit is contained in:
2026-05-09 03:50:29 -04:00
parent aa0b22aacb
commit 388a968d89
10 changed files with 19 additions and 19 deletions

View File

@@ -319,7 +319,7 @@
flex-direction: column;
overflow: hidden;
}
.modal.violet { border-color: var(--violet); box-shadow: 0 0 30px rgba(238, 130, 238, 0.25); }
.modal.violet { border-color: var(--violet); box-shadow: 0 0 30px var(--violet); }
.modal.wide { width: 880px; }
.modal-head {
padding: 16px 22px;