Skip to content

Commit 27d3f33

Browse files
authored
Merge pull request #173 from QuLogic/fix-dark-badges
Mark badges as dark mode compatible
2 parents ca0d256 + e73d970 commit 27d3f33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/template.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@
1818
<tr>
1919
<td>
2020
<a href="{{ package.repo }}">
21-
<img src="_static/badges/code-gray.svg" alt="code badge">
21+
<img src="_static/badges/code-gray.svg" alt="code badge" class="dark-light">
2222
</a>
2323
</td>
2424

2525
<td>
2626
{% if 'pypi' in package.badges %}
2727
<a href="https://pypi.org/project/{{ package.pypi_name }}">
28-
<img src="_static/badges/pip-orange.svg" alt="pypi badge">
28+
<img src="_static/badges/pip-orange.svg" alt="pypi badge" class="dark-light">
2929
</a>
3030
{% endif %}
3131
</td>
3232
<td>
3333
{% if 'conda' in package.badges %}
3434
<a href="https://anaconda.org/{{ package.conda_channel }}/{{ package.conda_package }}">
35-
<img src="_static/badges/conda-blue.svg" alt="conda badge">
35+
<img src="_static/badges/conda-blue.svg" alt="conda badge" class="dark-light">
3636
</a>
3737
{% endif %}
3838
</td>

0 commit comments

Comments
 (0)