Skip to content

Commit

Permalink
chore: use new method for github dark mode images (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored Nov 3, 2024
1 parent 3bdae69 commit e406e8f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<div align="center">
<img src="https://raw.githubusercontent.com/txpipe/pallas/master/assets/logo-dark.svg?sanitize=true#gh-dark-mode-only" alt="Pallas Logo" width="500">
<img src="https://raw.githubusercontent.com/txpipe/pallas/master/assets/logo-light.svg?sanitize=true#gh-light-mode-only" alt="Pallas Logo" width="500">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/txpipe/pallas/master/assets/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/txpipe/pallas/master/assets/logo-light.svg">
<img src="https://raw.githubusercontent.com/txpipe/pallas/master/assets/logo-light.svg" alt="Pallas Logo" width="500">
</picture>
<hr />
<h3 align="center" style="border-bottom: none">Rust-native building blocks for the Cardano blockchain ecosystem</h3>
<img alt="GitHub" src="https://img.shields.io/github/license/txpipe/pallas" />
Expand All @@ -25,9 +28,9 @@ As already explained, _Pallas_ aims at being an expanding set of components. The

### Ouroboros Network

| Crates | Description |
| --------------------------------------------- | ----------------------------------------------------------------------- |
| [pallas-network](/pallas-network) | Network stack providing a multiplexer and mini-protocol implementations |
| Crates | Description |
| --------------------------------- | ----------------------------------------------------------------------- |
| [pallas-network](/pallas-network) | Network stack providing a multiplexer and mini-protocol implementations |

### Ouroboros Consensus

Expand Down

0 comments on commit e406e8f

Please sign in to comment.