Skip to content

Commit

Permalink
feat: Update background color
Browse files Browse the repository at this point in the history
  • Loading branch information
mithi committed Aug 30, 2020
1 parent de1b880 commit 33abed1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 24 deletions.
5 changes: 5 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
rel="stylesheet"
/>
</head>
<style>
body {
background-color: #17212b;
}
</style>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
Expand Down
46 changes: 23 additions & 23 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"short_name": "3d World",
"name": "Hello 3d World",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
"short_name": "3d World",
"name": "Hello 3d World",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#e91e63",
"background_color": "#17212b;"
}
1 change: 0 additions & 1 deletion src/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class Layout extends React.Component {
css={css`
background-color: #17212b;
padding: 5px;
background-color: #17212b;
font-size: 10px;
font-family: Montserrat, monaco, monospace;
color: #e91e63;
Expand Down

0 comments on commit 33abed1

Please sign in to comment.