1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
namespace YayMail\Constants;
use YayMail\Utils\SingletonTrait;
/** * YayMail Styles constants class */ class YayMailStyles { use SingletonTrait;
protected function __construct() { $this->define_constants(); }
protected function define_constants() { if ( ! defined( 'YAYMAIL_COLOR_TEXT_DEFAULT' ) ) { define( 'YAYMAIL_COLOR_TEXT_DEFAULT', '#636363' ); }
if ( ! defined( 'YAYMAIL_COLOR_BACKGROUND_DEFAULT' ) ) { define( 'YAYMAIL_COLOR_BACKGROUND_DEFAULT', '#f9f9f9' ); }
if ( ! defined( 'YAYMAIL_COLOR_WC_DEFAULT' ) ) { define( 'YAYMAIL_COLOR_WC_DEFAULT', '#873EFF' ); }
if ( ! defined( 'YAYMAIL_COLOR_BORDER_DEFAULT' ) ) { define( 'YAYMAIL_COLOR_BORDER_DEFAULT', '#e5e5e5' ); }
if ( ! defined( 'YAYMAIL_DEFAULT_FAMILY' ) ) { define( 'YAYMAIL_DEFAULT_FAMILY', 'Helvetica,Roboto,Arial,sans-serif' ); } } }
|