forked from grapheco/InteractiveGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
33 lines (33 loc) · 991 Bytes
/
Copy paththeme.js
File metadata and controls
33 lines (33 loc) · 991 Bytes
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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Themes {
static DEFAULT() {
return {
canvasBackground: "none",
highlight: {
gradientInnerColor: "#00FF00",
gradientOutterColor: "#FFFFFF",
},
expansion: {
backgroudColorCollapsed: "rgba(127, 127, 127, 0.9)",
backgroudColorExpanded: "rgba(0, 128, 0, 0.9)",
fontColor: "#FFFFFF"
}
};
}
static BLACK() {
return {
canvasBackground: "#111111",
highlight: {
gradientInnerColor: "yellow",
gradientOutterColor: "black",
},
expansion: {
backgroudColorCollapsed: "rgba(255, 0, 0, 0.9)",
backgroudColorExpanded: "rgba(0, 255, 0, 0.5)",
fontColor: "#FFFFFF"
}
};
}
}
exports.Themes = Themes;