Title: dark theme
Last modified: November 8, 2024

---

# dark theme

 *  Resolved [miniminimini](https://wordpress.org/support/users/miniminimini/)
 * (@miniminimini)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/dark-theme-9/)
 * hello, i need to make labels in stripe payment window to be white
 * [https://drive.google.com/file/d/1zYeJNFyz2YDgf0CP4UvcpYZMHk2GUNjt/view?usp=drive_link](https://drive.google.com/file/d/1zYeJNFyz2YDgf0CP4UvcpYZMHk2GUNjt/view?usp=drive_link)
 * how can i make it?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Georgian Cocora](https://wordpress.org/support/users/raster02/)
 * (@raster02)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/dark-theme-9/#post-18126873)
 * Hello [@miniminimini](https://wordpress.org/support/users/miniminimini/),
 * The Payment Element can only be styled using the Stripe API. They offer instructions
   about this here: [https://docs.stripe.com/elements/appearance-api](https://docs.stripe.com/elements/appearance-api)
 * The plugin has a filter which can be used to add those options: pms_stripe_connect_elements_styling
 * In your case, you should switch Stripe to the Dark theme to make it fit your 
   website. Here’s some example code that you can add to your website to achieve
   this:
 *     ```wp-block-code
       add_filter( 'pms_stripe_connect_elements_styling', 'pmsc_custom_stripe_elements_styling' );function pmsc_custom_stripe_elements_styling( $args ){    $args['theme'] = 'night';    $args['variables'] = [        'colorPrimary' => '#8561A9'    ];    return $args;}
       ```
   
 * This code can be added to the `functions.php` file from your child theme or in
   a custom plugin. The example also changes the primary color of the form, so you
   could use this to match a color from your website.
 * I hope this helps!
 * Regards.
 *  Thread Starter [miniminimini](https://wordpress.org/support/users/miniminimini/)
 * (@miniminimini)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/dark-theme-9/#post-18150006)
 * thanks!
 * could you also help me with translation, backend everything is translated, but
   in front end words months and days are still in English
 * [https://drive.google.com/file/d/1AjUMEbQl03zLJDwiIE8e6UbHTrQa7kgF/view?usp=sharing](https://drive.google.com/file/d/1AjUMEbQl03zLJDwiIE8e6UbHTrQa7kgF/view?usp=sharing)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘dark theme’ is closed to new replies.

 * ![](https://ps.w.org/paid-member-subscriptions/assets/icon-256x256.png?rev=2961161)
 * [Paid Membership Subscriptions - Effortless Memberships, Recurring Payments & Content Restriction](https://wordpress.org/plugins/paid-member-subscriptions/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/paid-member-subscriptions/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/paid-member-subscriptions/)
 * [Active Topics](https://wordpress.org/support/plugin/paid-member-subscriptions/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/paid-member-subscriptions/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/paid-member-subscriptions/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [miniminimini](https://wordpress.org/support/users/miniminimini/)
 * Last activity: [1 year, 6 months ago](https://wordpress.org/support/topic/dark-theme-9/#post-18150006)
 * Status: resolved