Change outline particle colors to match logo

This commit is contained in:
ForestOfLight
2025-04-21 13:16:16 -07:00
Unverified
parent b465d925be
commit 58e2af0eea
6 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -109,10 +109,10 @@ export class Outliner {
getNextParticleColor() { getNextParticleColor() {
if (this.lastWasBlack) { if (this.lastWasBlack) {
this.lastWasBlack = false; this.lastWasBlack = false;
return { red: 1, green: 1, blue: 0, alpha: 1 }; return { red: 0.93333333, green: 0.77647059, blue: 0.13333333, alpha: 1 };
} else { } else {
this.lastWasBlack = true; this.lastWasBlack = true;
return { red: 0.15, green: 0.15, blue: 0.15, alpha: 1 }; return { red: 0.09019608, green: 0.09019608, blue: 0.09019608, alpha: 1 };
} }
} }
} }
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 102 KiB