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
| <?php
|
| $defaults = [
| 'action-0' => '#ff0080',
| 'action-50' => '#ff2492',
| 'action-100' => '#ff47a4',
| 'action-200' => '#ff6bb5',
| 'secondary-0' => '#D69121',
| 'secondary-50' => '#ffc421',
| 'secondary-100' => '#ffcd44',
| 'secondary-200' => '#ffd768',
| 'light' => '#efefef',
| 'light-50' => '#e2e2e2',
| 'light-100' => '#d5d5d5',
| 'light-200' => '#c9c9c9',
| 'dark' => '#151515',
| 'dark-50' => '#222222',
| 'dark-100' => '#2e2e2e',
| 'dark-200' => '#3b3b3b',
| 'action-contrast'=> '',
| 'secondary-contrast'=> '',
| ];
|
|
| $jvbColours = apply_filters('jvb_colours', $defaults);
| define('JVB_COLOURS', $jvbColours);
|
|