mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-01 09:05:42 +00:00
Fixed: Rework color naming
This commit is contained in:
parent
27470432f9
commit
7ece4731fc
2 changed files with 6 additions and 4 deletions
|
@ -132,7 +132,7 @@ CircularProgressBar.defaultProps = {
|
||||||
containerClassName: styles.circularProgressBarContainer,
|
containerClassName: styles.circularProgressBarContainer,
|
||||||
size: 60,
|
size: 60,
|
||||||
strokeWidth: 5,
|
strokeWidth: 5,
|
||||||
strokeColor: colors.sonarrBlue,
|
strokeColor: colors.lidarrGreen,
|
||||||
showProgressText: false
|
showProgressText: false
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
const lidarrGreen = '#00A65B';
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
defaultColor: '#333',
|
defaultColor: '#333',
|
||||||
disabledColor: '#999',
|
disabledColor: '#999',
|
||||||
|
@ -9,18 +11,18 @@ module.exports = {
|
||||||
successColor: '#27c24c',
|
successColor: '#27c24c',
|
||||||
dangerColor: '#f05050',
|
dangerColor: '#f05050',
|
||||||
warningColor: '#ffa500',
|
warningColor: '#ffa500',
|
||||||
infoColor: '#00A65B',
|
infoColor: lidarrGreen,
|
||||||
purple: '#7a43b6',
|
purple: '#7a43b6',
|
||||||
nzbdronePurple: '#7932ea',
|
nzbdronePurple: '#7932ea',
|
||||||
nzbdronePink: '#f43565',
|
nzbdronePink: '#f43565',
|
||||||
sonarrBlue: '#00A65B',
|
lidarrGreen,
|
||||||
helpTextColor: '#909293',
|
helpTextColor: '#909293',
|
||||||
gray: '#adadad',
|
gray: '#adadad',
|
||||||
disabledInputColor: '#808080',
|
disabledInputColor: '#808080',
|
||||||
|
|
||||||
// Theme Colors
|
// Theme Colors
|
||||||
|
|
||||||
themeBlue: '#00A65B',
|
themeBlue: lidarrGreen,
|
||||||
themeRed: '#c4273c',
|
themeRed: '#c4273c',
|
||||||
themeDarkColor: '#353535',
|
themeDarkColor: '#353535',
|
||||||
themeLightColor: '#1d563d',
|
themeLightColor: '#1d563d',
|
||||||
|
|
Loading…
Reference in a new issue