There is no such things as a transparent-only color, but every color has an alpha channel that defines it's transparency. sf::Color::Transparent returns sf::Color(0, 0, 0, 0), thus it's a black color with full transparency. If the alpha channels gets ignored (e.g. with the window), then it will just be black.