Changed background to medium gray

This commit is contained in:
Steve White 2024-10-13 12:00:36 -05:00
parent ee411cdc30
commit b9a2accd80
2 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ import './styles.css'
export const AppContext = createContext(); export const AppContext = createContext();
export const PRIMARY_COLOR = '#333'; export const PRIMARY_COLOR = '#333';
export const SECONDARY_COLOR = '#ffffff'; export const SECONDARY_COLOR = '#ffffff';
export const BACKGROUND_COLOR = '#dddddd';
function App() { function App() {
const [token, setToken] = useState(localStorage.getItem('token')); const [token, setToken] = useState(localStorage.getItem('token'));

View File

@ -5,6 +5,7 @@ body {
sans-serif; sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
background-color: #dddddd !important;
} }
code { code {