Red Black Trees are a niche type of Binary Search Tree's that uses rotation and color change operations to auto balance a tree containing red and black nodes.
In order to keep a tree balanced we must maintain the red node property. Every new node inserted is a red node and red nodes can not have red children.
The black property also must be maintained to keep the tree balanced. The root node must always be black and the amount of black nodes to the first null nodes at the bottom must be equal. Additionally all null nodes should be considered black.
See a more in depth explanation at Wikipedia.