| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"> |
| 3 | <style> |
| 4 | .logo-primary { fill: #000; } |
| 5 | .logo-mid { fill: #444; } |
| 6 | .logo-shadow { fill: #888; } |
| 7 | |
| 8 | @media (prefers-color-scheme: dark) { |
| 9 | .logo-primary { fill: #fff; } |
| 10 | .logo-mid { fill: #c4c4c4; } |
| 11 | .logo-shadow { fill: #747474; } |
| 12 | } |
| 13 | </style> |
| 14 | |
| 15 | <!-- Left face and front crossbar. --> |
| 16 | <path class="logo-mid" d=" |
| 17 | M 771 810 |
| 18 | L 55 809 |
| 19 | L 448 74 |
| 20 | L 555 75 |
| 21 | L 240 699 |
| 22 | L 705 701 |
| 23 | Z |
| 24 | "/> |
| 25 | |
| 26 | <!-- Bright face from the original mark; theme-aware black/white. --> |
| 27 | <path class="logo-primary" d=" |
| 28 | M 931 902 |
| 29 | L 554 281 |
| 30 | L 345 698 |
| 31 | L 240 699 |
| 32 | L 555 75 |
| 33 | L 984 799 |
| 34 | Z |
| 35 | "/> |
| 36 | |
| 37 | <!-- Inner return and lower depth face. --> |
| 38 | <path class="logo-shadow" d=" |
| 39 | M 931 903 |
| 40 | L 115 903 |
| 41 | L 55 810 |
| 42 | L 772 809 |
| 43 | L 705 701 |
| 44 | L 503 700 |
| 45 | L 705 699 |
| 46 | L 503 382 |
| 47 | L 554 282 |
| 48 | Z |
| 49 | "/> |
| 50 | </svg> |
| 51 |