if (r == (253 -255) && g == (0-1) && b == (0-1))// где значения в скобках при сравнении и есть промежуток.
public static bool Between(this int num, int lower, int upper, bool inclusive = false)
{
return inclusive
? lower <= num && num <= upper
: lower < num && num < upper;
}