@vex-chat/cli 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLA.md +38 -0
- package/LICENSE +661 -0
- package/LICENSE-COMMERCIAL +10 -0
- package/LICENSING.md +15 -0
- package/README.md +62 -0
- package/package.json +53 -0
- package/src/vex-chat.js +4100 -0
- package/theme.yaml +36 -0
package/theme.yaml
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Vex CLI theme contract.
|
|
2
|
+
#
|
|
3
|
+
# The current runtime keeps these values as constants in src/vex-chat.js. This
|
|
4
|
+
# file is the portable shape for importing/swapping themes once we add theme
|
|
5
|
+
# loading.
|
|
6
|
+
root: fireRed
|
|
7
|
+
colors:
|
|
8
|
+
fireRed: "#E70000"
|
|
9
|
+
royalPurple: "#2a075b"
|
|
10
|
+
incineratorGreen: "#91e643"
|
|
11
|
+
iceBlue: "#a8c8df"
|
|
12
|
+
peachPink: "#c5698b"
|
|
13
|
+
nightBlack: "#0a0a0a"
|
|
14
|
+
brightWhite: "#F5F5F5"
|
|
15
|
+
cream: "#d9c2a3"
|
|
16
|
+
forestGreen: "#2b501d"
|
|
17
|
+
ids:
|
|
18
|
+
users:
|
|
19
|
+
palette:
|
|
20
|
+
- fireRed
|
|
21
|
+
- incineratorGreen
|
|
22
|
+
- iceBlue
|
|
23
|
+
- peachPink
|
|
24
|
+
- cream
|
|
25
|
+
- royalPurple
|
|
26
|
+
- forestGreen
|
|
27
|
+
- brightWhite
|
|
28
|
+
targets:
|
|
29
|
+
palette:
|
|
30
|
+
- iceBlue
|
|
31
|
+
- cream
|
|
32
|
+
- forestGreen
|
|
33
|
+
- royalPurple
|
|
34
|
+
- peachPink
|
|
35
|
+
invites:
|
|
36
|
+
palette: targets
|