-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path_styles.js
49 lines (42 loc) · 1.83 KB
/
_styles.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
// ==========================
// Bot Visual Style Settings
// ==========================
/** @type {StyleConfig} */
const _styles = {
// Font Family: available @ https://fonts.google.com
headerFontFamily: "Roboto Mono",
cardFontFamily: "Roboto Mono",
// App Styles
appBorderRadius: "8px", // px value
appPadding: "6px", // px value
appBackgroundImage: "url(../images/transparent-image.png)", // image must go in images folder
appBackgroundColor: "rgba(0, 0, 0, 0)", // rgba value https://rgbcolorpicker.com
// Header Styles
headerDisplay: "flex", // "none" to hide header or "flex" to show header
headerBorderRadius: "8px", // px value
headerMarginBottom: "6px", // px value
headerPadding: "12px", // px value
headerBackgroundColor: "rgba(0, 0, 0, 0.7)", // rgba value https://rgbcolorpicker.com/
headerFontSize: "18px", // px value
headerFontColor: "#FFFFFF", // hex value
headerFontWeight: "normal", // "normal", "lighter", "bold"
// Card Styles
cardGapBetween: "6px", // px value
cardBorderRadius: "8px", // px value
cardPadding: "12px", // px value
cardBackgroundColor: "rgba(0, 0, 0, 0.7)", // rgba value https://rgbcolorpicker.com/
// Username Styles
usernameFontSize: "18px", // px value
usernameColor: "#FFFFFF", // hex value
usernameFontWeight: "normal", // "normal", "lighter", "bold"
// Task Styles
taskFontSize: "16px", // px value
taskFontColor: "#FFFFFF", // hex value
taskFontWeight: "normal", // "normal", "lighter", "bold"
taskDoneFontColor: "#b0b0b0", // hex value
taskDoneFontStyle: "italic", // "italic" or "normal"
taskDoneTextDecoration: "line-through", // "line-through" or "none"
taskFocusFontColor: "#111111", // hex value
taskFocusBackgroundColor: "rgba(255, 255, 255, 0.7)", // rgba value https://rgbcolorpicker.com/
taskFocusBorderRadius: "8px", // hex value
};