From 42befed45daa323de36ae84fffee6563cb169239 Mon Sep 17 00:00:00 2001 From: nikk gitanes Date: Sun, 6 Jun 2021 01:12:56 +0300 Subject: [PATCH] rework green color (beter buttons text) --- web/src/App/index.jsx | 2 +- web/src/App/style.js | 2 +- .../DialogTorrentDetailsContent/TorrentCache/colors.js | 4 ++-- web/src/components/TorrentCard/style.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/App/index.jsx b/web/src/App/index.jsx index ce7164a..3cfe795 100644 --- a/web/src/App/index.jsx +++ b/web/src/App/index.jsx @@ -16,7 +16,7 @@ import Sidebar from './Sidebar' const baseTheme = createMuiTheme({ overrides: { MuiCssBaseline: { '@global': { html: { WebkitFontSmoothing: 'auto' } } } }, - palette: { primary: { main: '#3fb57a' }, secondary: { main: '#FFA724' }, tonalOffset: 0.2 }, + palette: { primary: { main: '#00a572' }, secondary: { main: '#ffa724' }, tonalOffset: 0.2 }, }) export default function App() { diff --git a/web/src/App/style.js b/web/src/App/style.js index bebad80..36bb8b8 100644 --- a/web/src/App/style.js +++ b/web/src/App/style.js @@ -17,7 +17,7 @@ export const CenteredGrid = styled.div` ` export const AppHeader = styled.div` - background: #3fb57a; + background: #00a572; color: rgba(0, 0, 0, 0.87); grid-area: head; display: flex; diff --git a/web/src/components/DialogTorrentDetailsContent/TorrentCache/colors.js b/web/src/components/DialogTorrentDetailsContent/TorrentCache/colors.js index 50e3d3b..235be1d 100644 --- a/web/src/components/DialogTorrentDetailsContent/TorrentCache/colors.js +++ b/web/src/components/DialogTorrentDetailsContent/TorrentCache/colors.js @@ -1,7 +1,7 @@ export const defaultBorderColor = '#eef2f4' export const defaultBackgroundColor = '#fff' -export const completeColor = '#3fb57a' -export const progressColor = '#00d0d0' +export const completeColor = '#00a572' +export const progressColor = '#ffa724' export const activeColor = '#000' export const rangeColor = '#9a9aff' diff --git a/web/src/components/TorrentCard/style.js b/web/src/components/TorrentCard/style.js index e9da211..7695aba 100644 --- a/web/src/components/TorrentCard/style.js +++ b/web/src/components/TorrentCard/style.js @@ -8,7 +8,7 @@ export const TorrentCard = styled.div` grid-template-areas: 'poster description buttons'; gap: 10px; padding: 10px; - background: #3fb57a; + background: #00a572; box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%); @media (max-width: 1260px), (max-height: 500px) {