-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstore.js
54 lines (54 loc) · 1.09 KB
/
store.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
export default {
contentOpacity: 0,
countDownDate: 0,
fading: true,
fps: 60,
hiddenBarVisible: false,
iframeHeight: 0,
iframeWidth: 0,
isMobile: /Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
navigator.userAgent
),
isTouch: false,
lastFrameTime: 0,
textStyle: {
opacity: 0,
filter: "brightness(1.25) drop-shadow(black 2px 2px 3px)",
},
menuVisible: true,
musicPlayer: null,
iframeUrl: "",
settings: {
version: 1.4,
backgroundImage: true,
bigTaskbar: false,
hiddenBar: true,
dropShadow: false,
dropShadowBlur: "3",
textBrightness: "1.25",
topBar: "false",
dropShadowColor: "black",
dropShadowX: "2",
dropShadowY: "2",
maxTextOpacity: 1,
music: "none",
sparksPlaying: true,
sparksSpeed: -36,
sparksTick: -20,
uncompressedImages: false,
volume: 50,
console: "",
},
toastMessage: null,
toastStyle: {},
today: new Date().getDay(),
untilHtml: "",
untilInterval: null,
countdownUpdate: 0,
countdown: {
days: 0,
hours: 0,
minutes: 0,
seconds: 0,
},
};