change colors

This commit is contained in:
2018-06-08 19:10:28 +03:00
parent d07a39c761
commit d40cc28c52
4 changed files with 5 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<meta name="theme-color" content="#4ba6fa">
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/

View File

@@ -10,6 +10,6 @@
],
"start_url": "./",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
"theme_color": "#4ba6fa",
"background_color": "#fbfbfb"
}

View File

@@ -194,6 +194,6 @@ textarea.todo--input {
}
.filter--active {
font-weight: 400;
font-weight: 500;
color: black;
}

View File

@@ -14,6 +14,7 @@ function Link({ active, onClick, children }) {
style={{
margin: '0 0.2rem',
padding: '1rem 0.3rem',
color: active ? 'black' : '#444444',
borderRadius: '7px',
}}
className={classes.join(' ')}