From aa346911fa0178d31606aa321912d8eaf369b391 Mon Sep 17 00:00:00 2001 From: joni <johnfshaughnessy@gmail.com> Date: Thu, 8 Mar 2018 15:47:48 -0800 Subject: [PATCH] Minor color adjustment. --- src/components/2d-hud.css | 2 +- src/components/2d-mute-state-indicator.js | 2 +- src/components/in-world-hud.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/2d-hud.css b/src/components/2d-hud.css index bc516bc91..4cec70064 100644 --- a/src/components/2d-hud.css +++ b/src/components/2d-hud.css @@ -26,7 +26,7 @@ } :local(.blueText) { - color: cyan; + color: #00eeee; } :local(.avatarImageShown) { diff --git a/src/components/2d-mute-state-indicator.js b/src/components/2d-mute-state-indicator.js index 81cbb4011..cb9afa5e8 100644 --- a/src/components/2d-mute-state-indicator.js +++ b/src/components/2d-mute-state-indicator.js @@ -24,7 +24,7 @@ AFRAME.registerComponent("2d-mute-state-indicator", { this.onMicAudio = e => { const red = 1.0 - e.detail.volume / 10.0; - this.muteIcon.style["background-color"] = `rgb(${red * 255},255,255)`; + this.muteIcon.style["background-color"] = `rgb(${red * 255},240,240)`; }; }, diff --git a/src/components/in-world-hud.js b/src/components/in-world-hud.js index 0475c6981..43080950a 100644 --- a/src/components/in-world-hud.js +++ b/src/components/in-world-hud.js @@ -22,7 +22,7 @@ AFRAME.registerComponent("in-world-hud", { scene.addEventListener("username-changed", this.onUsernameChanged); this.onNametagHovered = () => { - this.nametag.setAttribute("color", "cyan"); + this.nametag.setAttribute("color", "#00eeee"); this.data.haptic.emit("haptic_pulse", { intensity: "low" }); }; this.onNametagUnhovered = () => { @@ -70,7 +70,7 @@ AFRAME.registerComponent("in-world-hud", { this.onAudioFrequencyChange = e => { const red = 1.0 - e.detail.volume / 10.0; - this.mic.object3DMap.mesh.material.color = { r: red, g: 1, b: 1 }; + this.mic.object3DMap.mesh.material.color = { r: red, g: 9, b: 9 }; }; this.el.sceneEl.addEventListener("mediaStream", evt => { this.ms = evt.detail.ms; -- GitLab