Skip to content

Commit fc75c5f

Browse files
committed
fix: make axolotl visible — invert colors + increase opacity
- Added invert(1) filter to make black axolotl white on dark background - Increased opacity from 0.12 to 0.15 - Image was invisible because black-on-black, now white-on-black
1 parent ba3005e commit fc75c5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
position: fixed;
3636
top: 0; left: 0; right: 0; bottom: 0;
3737
background: url('axolotl.png') center/cover no-repeat;
38-
opacity: 0.12;
38+
opacity: 0.15;
3939
pointer-events: none;
4040
z-index: 0;
41-
filter: grayscale(1);
41+
filter: invert(1) grayscale(1);
4242
}
4343

4444
/* ── Nav ── */

0 commit comments

Comments
 (0)