mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Updated admin darkmode background color to be consistent with global … (#17101)
…colors No ref
This commit is contained in:
parent
2c067aa1bb
commit
f2d35c6a9a
3 changed files with 8 additions and 8 deletions
|
@ -90,7 +90,7 @@ export default class SourceAttributionChart extends Component {
|
|||
}
|
||||
|
||||
get chartData() {
|
||||
let borderColor = this.feature.nightShift ? '#101114' : '#fff';
|
||||
let borderColor = this.feature.nightShift ? '#15171A' : '#fff';
|
||||
|
||||
return {
|
||||
labels: this.allSources.map(source => source.source),
|
||||
|
|
|
@ -79,7 +79,7 @@ export default class FeedbackEventsChart extends Component {
|
|||
}
|
||||
|
||||
get chartData() {
|
||||
let borderColor = this.feature.nightShift ? '#101114' : '#fff';
|
||||
let borderColor = this.feature.nightShift ? '#15171A' : '#fff';
|
||||
|
||||
return {
|
||||
labels: this.args.data.labels,
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
:root {
|
||||
/* Primary colours */
|
||||
--black: #fafafb;
|
||||
--white: #101114;
|
||||
--white: #15171A;
|
||||
--lime: #B5FF18;
|
||||
|
||||
--darkgrey: #E3E6E8;
|
||||
|
@ -87,8 +87,8 @@
|
|||
--whitegrey: #17191C;
|
||||
--blue: color-mod(#3eb0ef l(+5%) s(+5%));
|
||||
|
||||
--main-bg-color: #101114;
|
||||
--dark-main-bg-color: #101114;
|
||||
--main-bg-color: #15171A;
|
||||
--dark-main-bg-color: #15171A;
|
||||
--hairline-color-1: #22252A;
|
||||
--hairline-color-2: #5E6874;
|
||||
|
||||
|
@ -1428,12 +1428,12 @@ kbd {
|
|||
.feature-audienceFeedback .gh-post-analytics-box.gh-post-analytics-source-attribution,
|
||||
.gh-post-analytics-box.gh-post-analytics-mentions
|
||||
{
|
||||
background: #101114;
|
||||
background: var(--white);
|
||||
border-color: #26282b;
|
||||
}
|
||||
|
||||
.gh-tabs-analytics {
|
||||
background: #101114;
|
||||
background: var(--white);
|
||||
border-color: #26282b;
|
||||
}
|
||||
|
||||
|
@ -1443,7 +1443,7 @@ kbd {
|
|||
|
||||
.gh-tabs-analytics .tab-panel-selected,
|
||||
.gh-tabs-analytics .tab-selected {
|
||||
background: #101114;
|
||||
background: var(--white);
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue