Skip to content

Commit c91572f

Browse files
Merge pull request #7661 from leonardehrenfried/flex-transfers-debug
Flex transfers in debug UI
2 parents a7c0abd + b3066d4 commit c91572f

11 files changed

Lines changed: 274 additions & 80 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package org.opentripplanner.apis.vectortiles;
2+
3+
/**
4+
* Debug layer colors for drawing shapes on top of the map.
5+
*/
6+
public enum Color {
7+
MAGENTA("#f21d52"),
8+
LIGHT_MAGENTA("#f783a0"),
9+
BRIGHT_GREEN("#22DD9E"),
10+
DARK_GREEN("#136b04"),
11+
TEAL("#277eb5"),
12+
TURQUOISE("#1cafad"),
13+
RED("#fc0f2a"),
14+
PURPLE("#BC55F2"),
15+
BLACK("#140d0e"),
16+
LIGHT_RED("#ff6b6b"),
17+
DARK_RED("#cc0000"),
18+
ORANGE("#ffa500"),
19+
DARK_ORANGE("#ff8c00"),
20+
LIGHT_BLUE("#4a9eff"),
21+
DARK_BLUE("#0066cc");
22+
23+
private final String hex;
24+
25+
Color(String hex) {
26+
this.hex = hex;
27+
}
28+
29+
public String hex() {
30+
return hex;
31+
}
32+
}

0 commit comments

Comments
 (0)