Changed background to medium gray
This commit is contained in:
parent
ee411cdc30
commit
b9a2accd80
|
@ -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'));
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue