This commit is contained in:
Daniel Shleifman
2021-06-26 22:28:50 +03:00
parent 9b521ef06c
commit e2241cf7fd
8 changed files with 22 additions and 13 deletions

View File

@@ -268,7 +268,7 @@ export default function AddDialog({
</Content> </Content>
<ButtonWrapper> <ButtonWrapper>
<Button onClick={handleClose} color='primary' variant='outlined'> <Button onClick={handleClose} color='secondary' variant='outlined'>
{t('Cancel')} {t('Cancel')}
</Button> </Button>

View File

@@ -42,7 +42,9 @@ export default function DetailedView({
</DetailedViewWidgetSection> </DetailedViewWidgetSection>
<DetailedViewCacheSection> <DetailedViewCacheSection>
<SectionTitle mb={20}>{t('Cache')}</SectionTitle> <SectionTitle color='#000' mb={20}>
{t('Cache')}
</SectionTitle>
<TorrentCache cache={cache} /> <TorrentCache cache={cache} />
</DetailedViewCacheSection> </DetailedViewCacheSection>
</> </>

View File

@@ -1,16 +1,17 @@
import { rgba } from 'polished'
import { mainColors } from 'style/colors' import { mainColors } from 'style/colors'
export const snakeSettings = { export const snakeSettings = {
dark: { dark: {
default: { default: {
borderWidth: 1, borderWidth: 2,
pieceSize: 14, pieceSize: 14,
gapBetweenPieces: 3, gapBetweenPieces: 3,
borderColor: mainColors.dark.primary, borderColor: mainColors.dark.secondary,
completeColor: mainColors.dark.primary, completeColor: rgba(mainColors.dark.primary, 0.65),
backgroundColor: '#fff', backgroundColor: '#f1eff3',
progressColor: '#545a5e', progressColor: mainColors.dark.secondary,
readerColor: '#fff', readerColor: '#000',
rangeColor: '#cda184', rangeColor: '#cda184',
}, },
mini: { mini: {

View File

@@ -33,7 +33,7 @@ import { isFilePlayable } from './helpers'
const Loader = () => ( const Loader = () => (
<div style={{ minHeight: '80vh', display: 'grid', placeItems: 'center' }}> <div style={{ minHeight: '80vh', display: 'grid', placeItems: 'center' }}>
<CircularProgress /> <CircularProgress color='secondary' />
</div> </div>
) )
@@ -225,7 +225,7 @@ export default function DialogTorrentDetailsContent({ closeDialog, torrent }) {
{seasonAmount?.length > 1 && ( {seasonAmount?.length > 1 && (
<> <>
<SectionSubName mb={7}>{t('SelectSeason')}</SectionSubName> <SectionSubName mb={7}>{t('SelectSeason')}</SectionSubName>
<ButtonGroup style={{ marginBottom: '30px' }} color='primary'> <ButtonGroup style={{ marginBottom: '30px' }} color='secondary'>
{seasonAmount.map(season => ( {seasonAmount.map(season => (
<Button <Button
key={season} key={season}

View File

@@ -142,6 +142,7 @@ export const SectionSubName = styled.div`
export const SectionTitle = styled.div` export const SectionTitle = styled.div`
${({ ${({
color,
theme: { theme: {
dialogTorrentDetailsContent: { fontColor }, dialogTorrentDetailsContent: { fontColor },
}, },
@@ -152,7 +153,7 @@ export const SectionTitle = styled.div`
font-weight: 300; font-weight: 300;
line-height: 1; line-height: 1;
word-break: break-word; word-break: break-word;
color: ${fontColor}; color: ${color || fontColor};
@media (max-width: 800px) { @media (max-width: 800px) {
font-size: 25px; font-size: 25px;

View File

@@ -12,7 +12,7 @@ export default function TorrentList({ isOffline, isLoading, torrents }) {
{isOffline ? ( {isOffline ? (
<NoServerConnection /> <NoServerConnection />
) : isLoading ? ( ) : isLoading ? (
<CircularProgress /> <CircularProgress color='secondary' />
) : ( ) : (
!torrents.length && <AddFirstTorrent /> !torrents.length && <AddFirstTorrent />
)} )}

View File

@@ -72,7 +72,7 @@ export const themeColors = {
detailedView: { detailedView: {
gradientStartColor: '#656f76', gradientStartColor: '#656f76',
gradientEndColor: '#545a5e', gradientEndColor: '#545a5e',
cacheSectionBGColor: rgba('#545a5e', 0.7), cacheSectionBGColor: '#dee3e5',
}, },
addDialog: { addDialog: {
gradientStartColor: '#656f76', gradientStartColor: '#656f76',
@@ -98,8 +98,10 @@ export const themeColors = {
export const mainColors = { export const mainColors = {
light: { light: {
primary: '#00a572', primary: '#00a572',
secondary: '#00a572',
}, },
dark: { dark: {
primary: '#323637', primary: '#323637',
secondary: '#dee3e5',
}, },
} }

View File

@@ -12,6 +12,7 @@ export const darkTheme = createMuiTheme({
palette: { palette: {
type: THEME_MODES.DARK, type: THEME_MODES.DARK,
primary: { main: mainColors.dark.primary }, primary: { main: mainColors.dark.primary },
secondary: { main: mainColors.dark.secondary },
}, },
}) })
export const lightTheme = createMuiTheme({ export const lightTheme = createMuiTheme({
@@ -19,6 +20,7 @@ export const lightTheme = createMuiTheme({
palette: { palette: {
type: THEME_MODES.LIGHT, type: THEME_MODES.LIGHT,
primary: { main: mainColors.light.primary }, primary: { main: mainColors.light.primary },
secondary: { main: mainColors.light.secondary },
}, },
}) })
@@ -48,6 +50,7 @@ export const useMaterialUITheme = () => {
palette: { palette: {
type: theme, type: theme,
primary: { main: mainColors[theme].primary }, primary: { main: mainColors[theme].primary },
secondary: { main: mainColors[theme].secondary },
}, },
}), }),
[theme], [theme],