-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.js
99 lines (81 loc) · 3.76 KB
/
config.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
98
99
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@& @@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@ @@@@@@@@@@@@@
// @@@@@@@@@@@@ @@@@@@@@@@@
// @@@@@@@@@@ @@@@@@@@@
// @@@@@@@@& @@@@@@@@
// @@@@@@@ @@@@@@
// @@@@@@ .... .... @@@@@
// @@@@. ... . @@@@
// @@@* ..... @@@
// @@@ &&&&&&&&&&&&&&&&&&&&& ..... @@
// @@ ...... &&&&&&&&&&&&&&&&&&&&&&% @
// @@ &&&&&&&&&&&&&&&&&&&&&&% @
// @@ &&&&&&&&&&&&&&&&&&&&&&% .. @
// @@ ..&&&&&&&&&&&&&&&&&&&&&&%... @
// @@@ &&&&&&&&&&&&&&&&&&&&&&% @@
// @@@@@ &&&&&&&&&&&&&&&&&&&&&&% @@@@
// @@@@@@@@@* &&&&&&&&&&&&&&&&&&&&&&% ,@@@@@@@@
// ____ _ ____________________ ____
// / __ \/ | / / _/ ____/ _/ __ \/ _/
// / / / / |/ // // / __ / // /_/ // /
// / /_/ / /| // // /_/ // // _, _// /
// \____/_/ |_/___/\____/___/_/ |_/___/
// --------------------------------------------------
export const config = {
// __________ __ ____ ____ _____
// / ____/ __ \/ / / __ \/ __ \/ ___/
// / / / / / / / / / / / /_/ /\__ \
// / /___/ /_/ / /___/ /_/ / _, _/___/ /
// \____/\____/_____/\____/_/ |_|/____/
//
// All colors should be in HEX CODE ONLY.
// background color in hex code.
backgroundColor: 'black',
// color of the link button background in hex code.
linkButtonColor: '#d6d3d1',
// color of the search bar background in hex code.
searchBarColor: '#d4d4d8',
// color of the icon present inside link buttons in hex code.
linkButtonIconColor: '#000000',
// color of the link text in hex code.
linkButtonTextColor: '#000000',
// color of the search bar text in hex code.
searchBarTextColor: '#000000',
// color of the search bar icon in hex code.
searchBarIconColor: '#000000',
// color of the clock in hex code.
clockColor: `#e7e5e4`,
// color of the date in hex code.
dateColor: `#d6d3d1`,
// color of footer text in hex code.
footerTextColor: `#d4d4d8`,
// --------------------------------------------------
//
// ____ ________ ____________ _____
// / __ \/_ __/ / / / ____/ __ \/ ___/
// / / / / / / / /_/ / __/ / /_/ /\__ \
// / /_/ / / / / __ / /___/ _, _/___/ /
// \____/ /_/ /_/ /_/_____/_/ |_|/____/
//
// Other Configs.
// search engine to use, 'duckduckgo'/'google'/'brave'/'bing'
searchEngine: 'duckduckgo',
// show or hide the footer.
showFooter: true,
// --------------------------------------------------
//
// ______ ______ _________________
// / _/ |/ / | / ____/ ____/ ___/
// / // /|_/ / /| |/ / __/ __/ \__ \
// _/ // / / / ___ / /_/ / /___ ___/ /
// /___/_/ /_/_/ |_\____/_____//____/
//
// Customize the Images in page, use a valid URL.
// vertical image to use.
verticalImage: 'https://imagecdn.app/v1/images/https%3A%2F%2Fi.imgur.com%2FmTgHjNe.png?format=webp',
// horizontal image to use.
horizontalImage: 'https://imagecdn.app/v1/images/https%3A%2F%2Fi.imgur.com%2FQpSleoF.png?format=webp',
}