in util/values/src/main/java/jetbrains/jetpad/values/Color.java [142:165]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || !(o instanceof Color)) {
return false;
}
Color that = (Color) o;
if (myRed != that.myRed) {
return false;
}
if (myGreen != that.myGreen) {
return false;
}
if (myBlue != that.myBlue) {
return false;
}
if (myAlpha != that.myAlpha) {
return false;
}
return true;
}