From c50690d0b66a49081ef14fb6b20115582959cefd Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi <256895@studenti.unimore.it> Date: Wed, 21 Apr 2021 00:37:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Rename=20theme-x=20to=20ThemeX?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/frontend/src/App.js | 2 +- code/frontend/src/index.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/frontend/src/App.js b/code/frontend/src/App.js index 593efa9..3f90e96 100644 --- a/code/frontend/src/App.js +++ b/code/frontend/src/App.js @@ -5,7 +5,7 @@ import Box from "./components/Box" export default function App() { - const [theme, ] = useState("theme-dark"); + const [theme, ] = useState("ThemeDark"); return (
diff --git a/code/frontend/src/index.css b/code/frontend/src/index.css index 93524b0..5bfec5b 100644 --- a/code/frontend/src/index.css +++ b/code/frontend/src/index.css @@ -9,7 +9,7 @@ body { min-width: 100%; } -.theme-dark { +.ThemeDark { --bg-primary: #3B7097; --bg-light: #34607A; --bg-dark: #254D61; @@ -24,7 +24,7 @@ body { --cmp-dark: #7C7C7C; } -.theme-light { +.ThemeLight { --bg-primary: #CAE4F6; --bg-light: #B2CEDF; --bg-dark: #7292AF;