Samuel Stevens
commited on
Commit
·
423e800
1
Parent(s):
b5cb0c1
update colors
Browse files
data.py
CHANGED
@@ -53,10 +53,12 @@ def make_colors() -> UInt8[np.ndarray, "n 3"]:
|
|
53 |
colors[4] = np.array([151, 204, 4], dtype=np.uint8)
|
54 |
colors[13] = np.array([104, 139, 88], dtype=np.uint8)
|
55 |
colors[16] = np.array([54, 48, 32], dtype=np.uint8)
|
|
|
56 |
colors[26] = np.array([45, 125, 210], dtype=np.uint8)
|
57 |
colors[29] = np.array([116, 142, 84], dtype=np.uint8)
|
58 |
colors[46] = np.array([238, 185, 2], dtype=np.uint8)
|
59 |
colors[52] = np.array([88, 91, 86], dtype=np.uint8)
|
|
|
60 |
colors[72] = np.array([76, 46, 5], dtype=np.uint8)
|
61 |
colors[94] = np.array([12, 15, 10], dtype=np.uint8)
|
62 |
|
|
|
53 |
colors[4] = np.array([151, 204, 4], dtype=np.uint8)
|
54 |
colors[13] = np.array([104, 139, 88], dtype=np.uint8)
|
55 |
colors[16] = np.array([54, 48, 32], dtype=np.uint8)
|
56 |
+
colors[21] = np.array([120, 202, 210], dtype=np.uint8) # water
|
57 |
colors[26] = np.array([45, 125, 210], dtype=np.uint8)
|
58 |
colors[29] = np.array([116, 142, 84], dtype=np.uint8)
|
59 |
colors[46] = np.array([238, 185, 2], dtype=np.uint8)
|
60 |
colors[52] = np.array([88, 91, 86], dtype=np.uint8)
|
61 |
+
colors[60] = np.array([72, 99, 156], dtype=np.uint8) # river
|
62 |
colors[72] = np.array([76, 46, 5], dtype=np.uint8)
|
63 |
colors[94] = np.array([12, 15, 10], dtype=np.uint8)
|
64 |
|