From c0ca5af220a78539f2f28d73565364a9124decc2 Mon Sep 17 00:00:00 2001 From: Vaughn Gugger Date: Tue, 2 Apr 2024 00:48:44 -0400 Subject: [PATCH] changed fps text color from hardcoded values to match user theme --- frontend/src/styles/core.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/styles/core.scss b/frontend/src/styles/core.scss index a78522c54c5a..0b0f6dd27c07 100644 --- a/frontend/src/styles/core.scss +++ b/frontend/src/styles/core.scss @@ -385,9 +385,9 @@ key { text-align: center; z-index: 999999999; &.main { - color: rgb(30, 255, 0); + color: var(--text-color); } &.error { - color: red; + color: var(--error-color); } }