:root {
--bg: #0d1117;
--panel: #161b22;
--line: #30363d;
--fg: #e6edf3;
--dim: #8b949e;
--accent: #1f6feb;
--warn: #d29922;
--err: #f85149;
--ok: #3fb950;
color-scheme: dark;
}
@media (prefers-color-scheme: light) {
:root {
--bg: #ffffff;
--panel: #f6f8fa;
--line: #d1d9e0;
--fg: #1f2328;
--dim: #636c76;
--accent: #0969da;
--warn: #9a6700;
--err: #cf222e;
--ok: #1a7f37;
color-scheme: light;
}
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--bg);
color: var(--fg);
font: 12px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.replay {
margin: 0;
padding: 7px 12px;
font-size: 12px;
color: var(--bg);
background: #f74c00;
border-bottom: 1px solid var(--line);
}
.replay a { color: var(--bg); text-decoration: underline; }
table { width: 100%; border-collapse: collapse; }
th {
text-align: left;
font-weight: 500;
color: var(--dim);
padding: 8px 10px 6px;
border-bottom: 1px solid var(--line);
position: sticky;
top: 41px;
background: var(--bg);
}
td {
padding: 3px 10px;
border-bottom: 1px solid var(--line);
vertical-align: top;
white-space: nowrap;
}
tbody tr:hover { background: var(--panel); cursor: pointer; }
tr.detail:hover { background: var(--panel); cursor: default; }
tr.detail td { white-space: normal; }
tbody tr:focus-visible {
outline: 2px solid var(--accent);
outline-offset: -2px;
background: var(--panel);
}
.t { color: var(--dim); width: 1%; }
.num { text-align: right; width: 1%; font-variant-numeric: tabular-nums; }
.msg {
width: 100%;
max-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.sev-trace, .sev-debug { color: var(--dim); }
.sev-info { color: var(--fg); }
.sev-warn { color: var(--warn); }
.sev-error, .sev-fatal { color: var(--err); }
.empty, .err { padding: 40px 0; text-align: center; color: var(--dim); }
.err { color: var(--err); text-align: left; padding: 16px 0; white-space: pre-wrap; }