From 3a7178300faf30177f1158280a04f8f74a06bd61 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sun, 31 May 2020 23:24:31 -0500 Subject: [PATCH] Delete spaces in rgba colors --- app/soapbox/reducers/theme.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/reducers/theme.js b/app/soapbox/reducers/theme.js index 81b9912b1..f4582473a 100644 --- a/app/soapbox/reducers/theme.js +++ b/app/soapbox/reducers/theme.js @@ -10,13 +10,13 @@ const initialState = ImmutableMap(); const modes = ImmutableMap({ light: ImmutableMap({ 'primary-text-color': '#000000', - 'primary-text-color-faint': 'rgba(0, 0, 0, 0.6)', + 'primary-text-color-faint': 'rgba(0,0,0,0.6)', 'background-color': '#f2f2f2', 'foreground-color': '#ffffff', }), dark: ImmutableMap({ 'primary-text-color': '#ffffff', - 'primary-text-color-faint': 'rgba(255, 255, 255, 0.6)', + 'primary-text-color-faint': 'rgba(255,255,255,0.6)', 'background-color': '#333333', 'foreground-color': '#222222', }),