How to implement different color schemes in your themes

I would put all the common css in the theme’s style.css, and create separate stylesheets for the color options.

I would also put color options in their own folder with the images for that style. This way you can keep the filenames the same between color options to make maintaining the code a little easier.

If you wanted to separate common.css from style.css you could @import common.css from the color option’s sheet instead of enqueuing it separately.

Leave a Comment