style: Change human bar color to light grey

This commit is contained in:
Paul Gauthier (aider) 2024-12-26 19:57:59 -04:00
parent a19f8996b8
commit 36cf2348d0

View file

@ -33,8 +33,8 @@ document.addEventListener('DOMContentLoaded', function () {
{ {
label: 'Human', label: 'Human',
data: [{% for row in site.data.blame %}{ x: '{{ row.end_tag }}', y: {{ row.total_lines | minus: row.aider_total }} },{% endfor %}], data: [{% for row in site.data.blame %}{ x: '{{ row.end_tag }}', y: {{ row.total_lines | minus: row.aider_total }} },{% endfor %}],
backgroundColor: 'rgba(255, 99, 132, 0.8)', backgroundColor: 'rgba(200, 200, 200, 0.8)',
borderColor: 'rgba(255, 99, 132, 1)', borderColor: 'rgba(200, 200, 200, 1)',
borderWidth: 1 borderWidth: 1
}] }]
}; };