(color: ColorInput)
| 108 | const color = createMemo(() => entryColor(props.commit, theme())) |
| 109 | const suppressBackgrounds = createMemo(() => props.opts?.suppressBackgrounds === true) |
| 110 | const diffBg = (color: ColorInput) => (suppressBackgrounds() ? transparent : color) |
| 111 | const streaming = createMemo(() => props.commit.phase === "progress") |
| 112 | const text = createMemo(() => { |
| 113 | const next = body() |