I was wondering if there was any correlation between the size of a red-black tree, and the percentage of red nodes? Like, as n increases, what will happen to the amount of red nodes in comparison to all of the nodes?

I was thinking that it would increase, because I know that all of the children when being input into the tree need to be red. Is this a correct assumption to have?

Thanks!