Fixed text color on preview
This commit is contained in:
parent
e703712bfb
commit
cd406a3e74
@ -65,7 +65,7 @@ export default class Home extends Component {
|
||||
values += `&${value[0]}=${value[1]}`;
|
||||
});
|
||||
|
||||
return window.location.origin + "/overlay?id=" + this.state.steamId + values + (withTc ? "&tc=black" : "");
|
||||
return window.location.origin + "/overlay?id=" + this.state.steamId + values + (withTc ? "&textColor=black" : "");
|
||||
}
|
||||
|
||||
updateValue(key, value) {
|
||||
|
@ -23,7 +23,7 @@ export default class Overlay extends Component {
|
||||
showPlayerStats: true,
|
||||
showScore: false,
|
||||
showSongInfo: false,
|
||||
backgroundColor: undefined,
|
||||
textColor: undefined,
|
||||
|
||||
socket: undefined,
|
||||
isVisible: false,
|
||||
@ -124,8 +124,8 @@ export default class Overlay extends Component {
|
||||
}
|
||||
|
||||
// Mainly used for the preview
|
||||
if (params.withTc) {
|
||||
this.setState({ backgroundColor: params.withTc });
|
||||
if (params.textColor) {
|
||||
this.setState({ textColor: params.textColor });
|
||||
}
|
||||
|
||||
if (shouldConnectSocket) {
|
||||
@ -316,9 +316,9 @@ export default class Overlay extends Component {
|
||||
body.style.backgroundColor = "#181a1b";
|
||||
}
|
||||
|
||||
if (this.state.backgroundColor !== undefined) {
|
||||
const body = document.body;
|
||||
body.style.color = "#" + this.state.backgroundColor;
|
||||
if (this.state.textColor !== undefined) {
|
||||
const element = document.querySelector("." + styles.main);
|
||||
element.style.color = this.state.textColor
|
||||
}
|
||||
|
||||
return <div className={styles.main}>
|
||||
|
Reference in New Issue
Block a user