Hi! Glad to hear.
The Light/Dark Switch has potential issues with cache plugins, which I do not know how to solve at the moment. So if you want it to work well, you need to turn that off.
Option 1) If you want to use dark style as default with no switch, you need to copy over the entire function stylizer_styles() { } function, line 198-203 in functions.php to your child theme. Then adjust:
get_template_directory_uri
to:
get_stylesheet_directory_uri
For the dark.css line. This is if you use the dark style by default.
—
Option 2) If you want to change dark.css for the switch instead, you need to copy over functions.php line 213-233 to your child theme’s functions.php. Change this line:
wp_enqueue_style( 'stylizer-scheme', get_template_directory_uri() . '/' . esc_attr( $current_mode ) . '.css' );
to this:
wp_enqueue_style( 'stylizer-scheme', get_stylesheet_directory_uri() . '/' . esc_attr( $current_mode ) . '.css' );
Then it will load from the child theme instead.