Full control of styles

I’m not the biggest fan of millions of options and I hesitated long time before I pulled Color Palette in the theme. It’s found under Appearance >> Customize >> Colors.

Color palette

You can change the design a lot with color palette but if you’re a developer who wants to have full control of colors and design, you probably want to disable color palette all together. You can do that putting this one line in your child theme functions.php inside setup function.

`
remove_theme_support( ‘color-palette’ );
`

In css/example-child folder there is even example styles for what includes basic colors, backgrounds and borders. That might give you faster development cycle. Note that style-example.css isn’t perfect but it’s a good start.