diff --git a/pytorrent/static/styles.css b/pytorrent/static/styles.css index 98ff1b8..79b49ab 100644 --- a/pytorrent/static/styles.css +++ b/pytorrent/static/styles.css @@ -6,7 +6,8 @@ --statusbar: calc(34px * var(--ui-scale)); --mobile-filterbar-height: 132px; --sidebar: calc(270px * var(--ui-scale)); - --torrent-progress-complete: #198754; + /* Note: Completed torrent progress follows Bootstrap success badges exactly. */ + --torrent-progress-complete: var(--bs-success); --pytorrent-page-bg: var(--bs-body-bg); --pytorrent-shell-shadow: 0 12px 45px rgba(0, 0, 0, 0.38); } @@ -1387,6 +1388,9 @@ body.mobile-mode .mobile-card { width 0.25s ease, background-color 0.25s ease; } +.torrent-progress.is-complete .progress-bar { + background: var(--torrent-progress-complete) !important; +} .torrent-progress > span { position: absolute; inset: 0;