diff --git a/ts/routes/graphs/TrueRetentionCombined.svelte b/ts/routes/graphs/TrueRetentionCombined.svelte
index 5a9efc814..cf57e80e1 100644
--- a/ts/routes/graphs/TrueRetentionCombined.svelte
+++ b/ts/routes/graphs/TrueRetentionCombined.svelte
@@ -5,7 +5,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
@@ -84,11 +99,11 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
}
.young {
- color: #64c476;
+ color: var(--young-color);
}
.mature {
- color: #31a354;
+ color: var(--mature-color);
}
.total {
diff --git a/ts/routes/graphs/TrueRetentionSingle.svelte b/ts/routes/graphs/TrueRetentionSingle.svelte
index 9199717f8..b0765b10a 100644
--- a/ts/routes/graphs/TrueRetentionSingle.svelte
+++ b/ts/routes/graphs/TrueRetentionSingle.svelte
@@ -1,7 +1,3 @@
-
@@ -71,11 +82,11 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
}
.pass {
- color: #3bc464;
+ color: var(--pass-color);
}
.fail {
- color: #c43b3b;
+ color: var(--fail-color);
}
.retention {