-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuttons.php
78 lines (77 loc) · 2.58 KB
/
buttons.php
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
return [
'cssFile' => '@config/buttons/colorset.css',
'buttonGroups' => [
'colorset' => [
'name' => 'Colorset',
'buttons' => [
'white' => [
'label' => 'T',
'class' => 'white',
'value' => 'white',
'title' => 'White',
],
'petrol' => [
'label' => 'T',
'class' => 'petrol',
'value' => 'petrol',
'title' => 'Petrol',
],
'petrol--dark' => [
'label' => 'T',
'class' => 'petrol--dark',
'value' => 'petrol--dark',
'title' => 'Petrol dark',
],
'petrol--soft' => [
'label' => 'T',
'class' => 'petrol--soft',
'value' => 'petrol--soft',
'title' => 'Petrol soft',
],
'petrol--ultrasoft' => [
'label' => 'T',
'class' => 'petrol--ultrasoft',
'value' => 'petrol--ultrasoft',
'title' => 'Petrol ultrasoft',
],
'gray--soft' => [
'label' => 'T',
'class' => 'gray--soft',
'value' => 'gray--soft',
'title' => 'Gray soft',
],
'gray--light' => [
'label' => 'T',
'class' => 'gray--light',
'value' => 'gray--light',
'title' => 'Gray light',
],
'gray' => [
'label' => 'T',
'class' => 'gray',
'value' => 'gray',
'title' => 'Gray',
],
'gray--dark' => [
'label' => 'T',
'class' => 'gray--dark',
'value' => 'gray--dark',
'title' => 'Gray dark',
],
'gray--darker' => [
'label' => 'T',
'class' => 'gray--darker',
'value' => 'gray--darker',
'title' => 'Gray darker',
],
'black' => [
'label' => 'T',
'class' => 'black',
'value' => 'black',
'title' => 'Black',
],
],
]
],
];