Why is the color I picked for the Divider module not working?

The theme overwrites the color for the Horizontal Rule to be your primary brand color

If you would like to use the color configured in the Divider common module and not use the primary brand color as defined in the theme, you can add this code to your child.css or to the individual page:

hr {
background-color: inherit;
color: inherit;
}