Browse Source

Added radarr color variables

pull/15/head
gilbN 5 years ago
parent
commit
1ba2ff7a14
  1. 13
      CSS/themes/radarr/aquamarine.css
  2. 13
      CSS/themes/radarr/dark.css
  3. 13
      CSS/themes/radarr/hotline.css
  4. 13
      CSS/themes/radarr/plex.css
  5. 56
      CSS/themes/radarr/radarr-base.css

13
CSS/themes/radarr/aquamarine.css

@ -17,11 +17,10 @@
--main-bg-color: radial-gradient(ellipse at center, #47918a 0%, #0b3161 100%) center center/cover no-repeat fixed; --main-bg-color: radial-gradient(ellipse at center, #47918a 0%, #0b3161 100%) center center/cover no-repeat fixed;
--modal-bg-color: radial-gradient(ellipse at top, #47918a 0%, #0b3161 100%) center center/cover no-repeat fixed; --modal-bg-color: radial-gradient(ellipse at top, #47918a 0%, #0b3161 100%) center center/cover no-repeat fixed;
--calendar-Unaired-Premiere: #FFEB3B; --calendar-in-cinemas: #35c5f4;
--calendar-Downloading: #ff7676; --calendar-missing: #d9534f;
--calendar-Unmonitored: #53e69d; --calendar-announced: #337ab7;
--calendar-Unaired: #eeeeee; --calendar-downloaded: #5cb85c;
--calendar-Missing: #eeeeee; --calendar-downloading: #7932ea;
--calendar-On-Air: #eeeeee; --calendar-unmonitored: grey;
--calendar-Downloaded: #eeeeee;
} }

13
CSS/themes/radarr/dark.css

@ -17,11 +17,10 @@
--main-bg-color: #1f1f1f; --main-bg-color: #1f1f1f;
--modal-bg-color: radial-gradient(ellipse at top, #1f1f1f 0%, #1f1f1f 100%) center center/cover no-repeat fixed; --modal-bg-color: radial-gradient(ellipse at top, #1f1f1f 0%, #1f1f1f 100%) center center/cover no-repeat fixed;
--calendar-Unaired-Premiere: #FFEB3B; --calendar-in-cinemas: #35c5f4;
--calendar-Downloading: #ff7676; --calendar-missing: #d9534f;
--calendar-Unmonitored: #53e69d; --calendar-announced: #337ab7;
--calendar-Unaired: #eeeeee; --calendar-downloaded: #5cb85c;
--calendar-Missing: #eeeeee; --calendar-downloading: #7932ea;
--calendar-On-Air: #eeeeee; --calendar-unmonitored: grey;
--calendar-Downloaded: #eeeeee;
} }

13
CSS/themes/radarr/hotline.css

@ -17,11 +17,10 @@
--main-bg-color: radial-gradient(ellipse at center, #F44336 0%, #0b3161 100%) center center/cover no-repeat fixed; --main-bg-color: radial-gradient(ellipse at center, #F44336 0%, #0b3161 100%) center center/cover no-repeat fixed;
--modal-bg-color: radial-gradient(ellipse at top, #F44336 0%, #0b3161 100%) center center/cover no-repeat fixed; --modal-bg-color: radial-gradient(ellipse at top, #F44336 0%, #0b3161 100%) center center/cover no-repeat fixed;
--calendar-Unaired-Premiere: #FFEB3B; --calendar-in-cinemas: #35c5f4;
--calendar-Downloading: #ff7676; --calendar-missing: #d9534f;
--calendar-Unmonitored: #53e69d; --calendar-announced: #337ab7;
--calendar-Unaired: #eeeeee; --calendar-downloaded: #5cb85c;
--calendar-Missing: #eeeeee; --calendar-downloading: #7932ea;
--calendar-On-Air: #eeeeee; --calendar-unmonitored: grey;
--calendar-Downloaded: #eeeeee;
} }

13
CSS/themes/radarr/plex.css

@ -17,11 +17,10 @@
--main-bg-color: url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/blur-noise.png"), url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/preset-light2.png") center center/cover no-repeat fixed; --main-bg-color: url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/blur-noise.png"), url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/preset-light2.png") center center/cover no-repeat fixed;
--modal-bg-color: url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/blur-noise.png"), url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/preset-dark2.png") center center/cover no-repeat fixed; --modal-bg-color: url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/blur-noise.png"), url("https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/preset-dark2.png") center center/cover no-repeat fixed;
--calendar-Unaired-Premiere: #FFEB3B; --calendar-in-cinemas: #35c5f4;
--calendar-Downloading: #ff7676; --calendar-missing: #d9534f;
--calendar-Unmonitored: #53e69d; --calendar-announced: #337ab7;
--calendar-Unaired: #eeeeee; --calendar-downloaded: #5cb85c;
--calendar-Missing: #eeeeee; --calendar-downloading: #7932ea;
--calendar-On-Air: #eeeeee; --calendar-unmonitored: grey;
--calendar-Downloaded: #eeeeee;
} }

56
CSS/themes/radarr/radarr-base.css

@ -283,28 +283,42 @@ div.form-group > label {
} }
/* Calendar page */ /* Calendar page */
/* In Cinemas */
.calendar .premiere {
border-color: var(--calendar-in-cinemas);
background-color: var(--calendar-in-cinemas);
}
/* Missing */
.calendar .danger {
border-color: var(--calendar-missing);
background-color: var(--calendar-missing);
color: #fff;
}
/* Announced */
.calendar .primary {
border-color: var(--calendar-announced);
background-color: var(--calendar-announced);
}
/* Downloaded */
.calendar .success {
border-color: var(--calendar-downloaded);
background-color: var(--calendar-downloaded);
}
/* Downloading */
.calendar .purple {
border-color: var(-calendar-downloading);
background-color: var(-calendar-downloading);
}
/* Unmonitored */
.calendar .unmonitored {
border-color: var(--calendar-unmonitored);
background-color: var(--calendar-unmonitored);
}
.event .primary {
border-color: rgba(0, 0, 0, .25);
}
.calendar .success {
border-color: rgba(25, 255, 0, .15);
background-color: rgba(25, 255, 0, .15);
color: #FFF;
}
.calendar .premiere {
border-color: rgba(45, 66, 85, 100);
background-color: rgba(45, 66, 85, 100);
}
.calendar .primary {
border-color: rgba(0, 0, 0, .25);
background-color: rgba(0, 0, 0, .10);
}
.calendar .danger {
border-color: rgba(171, 0, 0, .50);
background-color: rgba(171, 0, 0, .50);
color: #fff;
}
.event .primary {
border-color: rgba(0, 0, 0, .25);
}
/* upcoming panel */ /* upcoming panel */
.event h4, .date h4, .event .episode-title { .event h4, .date h4, .event .episode-title {
color: #FFFFFF !important; color: #FFFFFF !important;

Loading…
Cancel
Save