-
-
Notifications
You must be signed in to change notification settings - Fork 544
/
night-mode.js
97 lines (91 loc) · 1.82 KB
/
night-mode.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*--------------------------------------------------------------
>>> NIGHT MODE
--------------------------------------------------------------*/
extension.skeleton.header.sectionEnd.menu.on.click.nightMode = {
component: 'button',
category: true,
on: {
click: {
filters: {
component: 'section',
variant: 'card',
title: 'filters',
dim: {
component: 'slider',
variant: 'row',
text: 'dim',
step: 1,
max: 90,
value: 0
},
bluelight: {
component: 'slider',
variant: 'row',
text: 'bluelight',
step: 1,
max: 90,
value: 0
}
},
schedule: {
component: 'section',
variant: 'card',
title: 'schedule',
schedule: {
component: 'select',
text: 'activate',
id: 'activate',
options: [{
text: 'disabled',
value: 'disabled'
}, {
text: 'sunsetToSunrise',
value: 'sunset_to_sunrise'
}, {
text: 'systemPeferenceDark',
value: 'system_peference_dark'
}, {
text: 'systemPeferenceLight',
value: 'system_peference_light'
}]
},
schedule_time_from: {
component: 'time',
text: 'timeFrom',
variant: 'from',
hour12: function () {
return satus.storage.get('use_24_hour_format') === false;
}
},
schedule_time_to: {
component: 'time',
text: 'timeTo',
variant: 'to',
hour12: function () {
return satus.storage.get('use_24_hour_format') === false;
}
}
}
}
},
svg: {
component: 'svg',
attr: {
'viewBox': '0 0 24 24',
'fill': 'none',
'stroke-linecap': 'round',
'stroke-linejoin': 'round',
'stroke-width': '1.75'
},
path1: {
component: 'path',
attr: {
'd': 'M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'
}
}
},
label: {
component: 'span',
text: 'nightMode'
}
};