noptin_get_color_themes()
Returns color themess.
Return Return
(array)
Source Source
File: includes/functions.php
function noptin_get_color_themes() { return apply_filters( 'noptin_form_color_themes', array( '#e51c23 #fafafa #c62828' => __( 'Red', 'newsletter-optin-box' ), // Base color, Secondary color, border color. '#e91e63 #fafafa #ad1457' => __( 'Pink', 'newsletter-optin-box' ), '#9c27b0 #fafafa #6a1b9a' => __( 'Purple', 'newsletter-optin-box' ), '#673ab7 #fafafa #4527a0' => __( 'Deep Purple', 'newsletter-optin-box' ), '#9c27b0 #fafafa #4527a0' => __( 'Purple', 'newsletter-optin-box' ), '#3f51b5 #fafafa #283593' => __( 'Indigo', 'newsletter-optin-box' ), '#2196F3 #fafafa #1565c0' => __( 'Blue', 'newsletter-optin-box' ), '#03a9f4 #fafafa #0277bd' => __( 'Light Blue', 'newsletter-optin-box' ), '#00bcd4 #fafafa #00838f' => __( 'Cyan', 'newsletter-optin-box' ), '#009688 #fafafa #00695c' => __( 'Teal', 'newsletter-optin-box' ), '#4CAF50 #fafafa #2e7d32' => __( 'Green', 'newsletter-optin-box' ), '#8bc34a #191919 #558b2f' => __( 'Light Green', 'newsletter-optin-box' ), '#cddc39 #191919 #9e9d24' => __( 'Lime', 'newsletter-optin-box' ), '#ffeb3b #191919 #f9a825' => __( 'Yellow', 'newsletter-optin-box' ), '#ffc107 #191919 #ff6f00' => __( 'Amber', 'newsletter-optin-box' ), '#ff9800 #fafafa #e65100' => __( 'Orange', 'newsletter-optin-box' ), '#ff5722 #fafafa #bf360c' => __( 'Deep Orange', 'newsletter-optin-box' ), '#795548 #fafafa #3e2723' => __( 'Brown', 'newsletter-optin-box' ), '#607d8b #fafafa #263238' => __( 'Blue Grey', 'newsletter-optin-box' ), '#313131 #fafafa #607d8b' => __( 'Black', 'newsletter-optin-box' ), '#ffffff #191919 #191919' => __( 'White', 'newsletter-optin-box' ), '#aaaaaa #191919 #191919' => __( 'Grey', 'newsletter-optin-box' ), ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.7 | Introduced. |