File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const hashCode = (s: string) => {
12
12
// TODO: colors used in charts as well, need to move to constants
13
13
// 11 distinct colors from https://mokole.com/palette.html
14
14
export const COLORS = [
15
+ '#008000' , // green
15
16
'#4169e1' , // royalblue
16
17
'#ffd700' , // gold
17
18
'#ff8c00' , // darkorange
@@ -20,11 +21,11 @@ export const COLORS = [
20
21
'#ff1493' , // deeppink
21
22
'#00bfff' , // deepskyblue
22
23
'#da70d6' , // orchid
23
- '#3cb371 ' , // mediumseagreen
24
+ '#8b4513 ' , //saddlebrown
24
25
'#b22222' , // firebrick
25
26
] ;
26
27
27
- export const DEFAULT_COLOR = '#008000 ' ; // green
28
+ export const DEFAULT_COLOR = '#3cb371 ' ; // mediumseagreen
28
29
29
30
export const getVersionsMap = ( versions : string [ ] , initialMap : VersionsMap = new Map ( ) ) => {
30
31
versions . forEach ( ( version ) => {
You can’t perform that action at this time.
0 commit comments