FIX: [STUDIO-2947] Privacy terms with white background and white text
Change-Id: I54fdef6300ef7ae0413796c5f685ef7499bb8ef4
This commit is contained in:
parent
c14599a140
commit
fc64864b15
|
@ -23,7 +23,8 @@
|
||||||
|
|
||||||
function SwitchDarkMode(is_dark_mode)
|
function SwitchDarkMode(is_dark_mode)
|
||||||
{
|
{
|
||||||
document.getElementById("content").style.backgroundColor = is_dark_mode ? "#36363C" : "#F8F8F8";
|
document.getElementById("content").style.backgroundColor = is_dark_mode ? "#36363C" : "#F8F8F8";
|
||||||
|
document.getElementById("content").style.color = is_dark_mode ? "#FFFFFF" : "#000000";
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue