From b9a2accd80651fc933c382777cb68fa1b5bfc759 Mon Sep 17 00:00:00 2001 From: Steve White Date: Sun, 13 Oct 2024 12:00:36 -0500 Subject: [PATCH] Changed background to medium gray --- src/App.js | 1 + src/index.css | 1 + 2 files changed, 2 insertions(+) diff --git a/src/App.js b/src/App.js index cd9b721..2c12277 100644 --- a/src/App.js +++ b/src/App.js @@ -12,6 +12,7 @@ import './styles.css' export const AppContext = createContext(); export const PRIMARY_COLOR = '#333'; export const SECONDARY_COLOR = '#ffffff'; +export const BACKGROUND_COLOR = '#dddddd'; function App() { const [token, setToken] = useState(localStorage.getItem('token')); diff --git a/src/index.css b/src/index.css index ec2585e..65dcb49 100644 --- a/src/index.css +++ b/src/index.css @@ -5,6 +5,7 @@ body { sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + background-color: #dddddd !important; } code {