File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const hashCode = (s: string) => {
1212// TODO: colors used in charts as well, need to move to constants
1313// 11 distinct colors from https://mokole.com/palette.html
1414export const COLORS = [
15+ '#008000' , // green
1516 '#4169e1' , // royalblue
1617 '#ffd700' , // gold
1718 '#ff8c00' , // darkorange
@@ -20,11 +21,10 @@ export const COLORS = [
2021 '#ff1493' , // deeppink
2122 '#00bfff' , // deepskyblue
2223 '#da70d6' , // orchid
23- '#3cb371' , // mediumseagreen
2424 '#b22222' , // firebrick
2525] ;
2626
27- export const DEFAULT_COLOR = '#008000 ' ; // green
27+ export const DEFAULT_COLOR = '#3cb371 ' ; // mediumseagreen
2828
2929export const getVersionsMap = ( versions : string [ ] , initialMap : VersionsMap = new Map ( ) ) => {
3030 versions . forEach ( ( version ) => {
You can’t perform that action at this time.
0 commit comments