diff --git a/Cargo.lock b/Cargo.lock
index 121cee4..369c59c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1382,7 +1382,7 @@ dependencies = [
[[package]]
name = "rs_maps"
-version = "0.0.2"
+version = "0.0.3"
dependencies = [
"anyhow",
"argon2",
diff --git a/Cargo.toml b/Cargo.toml
index ec48ea3..4557655 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
# Cargo.toml
[package]
name = "rs_maps"
-version = "0.0.2"
+version = "0.0.3"
edition = "2021"
[dependencies]
diff --git a/README.md b/README.md
index 76bcea3..3b6ced7 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# Waymark — build and deploy
+# rs_maps — build and deploy
Single Rust binary + one rootless Postgres container. See `DESIGN.md` for the reasoning.
diff --git a/frontend/app.js b/frontend/app.js
index c81edbc..d4c2692 100644
--- a/frontend/app.js
+++ b/frontend/app.js
@@ -1,5 +1,5 @@
// frontend/app.js
-/* Waymark — all URLs relative, resolved against the injected .
+/* rs_maps — all URLs relative, resolved against the injected .
Never use a leading slash: it would escape BASE_PATH. */
'use strict';
diff --git a/frontend/index.html b/frontend/index.html
index 95a3164..ac710cf 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -7,7 +7,7 @@
and nothing in this app may use a leading-slash URL. -->
-
Waymark
+rs_maps
@@ -18,7 +18,7 @@
diff --git a/frontend/style.css b/frontend/style.css
index 5f47cdd..f3e8089 100644
--- a/frontend/style.css
+++ b/frontend/style.css
@@ -1,6 +1,6 @@
/* frontend/style.css */
/* ─────────────────────────────────────────────────────────────
- Waymark — chrome for a map, not a dashboard.
+ rs_maps — chrome for a map, not a dashboard.
Palette taken from Ordnance Survey sheet conventions:
rights-of-way green, road-fill magenta, contour bistre.
───────────────────────────────────────────────────────────── */
@@ -14,7 +14,7 @@
--paper-dim: #9DB0A8;
--moss: #4E9C6B; /* rights of way — primary action */
--moss-lift: #5FB47D;
- --waymark: #D2467F; /* road fill — shared / accent */
+ --accent: #D2467F; /* road fill — shared / accent */
--sun: #E2A93C; /* live location, warnings */
--alarm: #D3574B;
@@ -329,7 +329,7 @@ button.link:hover { color: var(--paper); background: none; }
.badge {
font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
- color: var(--waymark); border: 1px solid var(--waymark);
+ color: var(--accent); border: 1px solid var(--accent);
border-radius: var(--r); padding: 1px 5px; flex: none;
}