Skip to content

Commit

Permalink
brown fix
Browse files Browse the repository at this point in the history
  • Loading branch information
steveseguin committed Aug 22, 2024
1 parent 8cc898b commit 8f51d03
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 31 deletions.
8 changes: 7 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3610,6 +3610,9 @@ div#roomnotes2 {
.darktheme .controlsGrid .btn-HL-blue {
background-color: var(--darktheme-blue);
}
.darktheme .controlsGrid .btn-HL-paleblue {
background-color: rgb(41 54 72);
}
/* Light theme */
.controlsGrid .btn-HL-yellow {
background-color: rgb(255, 229, 127);
Expand All @@ -3621,7 +3624,10 @@ div#roomnotes2 {
background-color: rgb(189, 228, 199);
}
.controlsGrid .btn-HL-blue {
background-color: rgb(170, 204, 248)
background-color: rgb(170, 204, 248);
}
.controlsGrid .btn-HL-paleblue {
background-color: rgb(170, 204, 248);
}

/* Hides buttons that are supposed to be hidden when &novice is added to URL */
Expand Down
4 changes: 2 additions & 2 deletions css/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
--darktheme-blue: rgb(33, 69, 114);
--darktheme-green: rgb(36, 88, 49);
--darktheme-lightgreen: #008770;
--darktheme-brown: rgb(96, 58, 25);
--darktheme-brown: rgb(76 58 41);
--darktheme-yellow: rgb(84, 70, 9);

/* Lightmode white - Darker to lighter */
--lighttheme-1: #fff;
--lighttheme-2: #f3f3f3;
Expand Down
56 changes: 28 additions & 28 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#0f131d" />

<link rel="stylesheet" href="./css/variables.css" />
<link rel="stylesheet" href="./css/variables.css?ver=2" />
<!-- If a user is using an old custom main.css, their custom variables should override the defaults variables this way. i think. -->
<link rel="stylesheet" href="./css/main.css?ver=393" />
<link rel="stylesheet" href="./css/main.css?ver=394" />
<link rel="stylesheet" href="./css/icons.css?ver=1" />
<link rel="stylesheet" href="./css/animations.css" />
<script type="text/javascript" crossorigin="anonymous" src="./thirdparty/adapter.js"></script>
Expand Down Expand Up @@ -1594,50 +1594,50 @@ <h2 title="Use this link in the OBS Browser Source to capture the video or audio

<!-- Row of Scenes -->
<div class="row six advanced sceneButtons">
<button data-action-type="addToScene" data-scene="3" title="Add to Scene 3" onclick="directEnable(this, event);">
<button class="btn-HL-peach" data-action-type="addToScene" data-scene="3" title="Add to Scene 3" onclick="directEnable(this, event);">
<span>S3</span>
</button>
<button data-action-type="addToScene" data-scene="4" title="Add to Scene 4" onclick="directEnable(this, event);">
<button class="btn-HL-peach" data-action-type="addToScene" data-scene="4" title="Add to Scene 4" onclick="directEnable(this, event);">
<span>S4</span>
</button>
<button data-action-type="addToScene" data-scene="5" title="Add to Scene 5" onclick="directEnable(this, event);">
<button class="btn-HL-peach" data-action-type="addToScene" data-scene="5" title="Add to Scene 5" onclick="directEnable(this, event);">
<span>S5</span>
</button>
<button data-action-type="addToScene" data-scene="6" title="Add to Scene 6" onclick="directEnable(this, event);">
<button class="btn-HL-peach" data-action-type="addToScene" data-scene="6" title="Add to Scene 6" onclick="directEnable(this, event);">
<span>S6</span>
</button>
<button data-action-type="addToScene" data-scene="7" title="Add to Scene 7" onclick="directEnable(this, event);">
<button class="btn-HL-peach" data-action-type="addToScene" data-scene="7" title="Add to Scene 7" onclick="directEnable(this, event);">
<span>S7</span>
</button>
<button data-action-type="addToScene" data-scene="8" title="Add to Scene 8" onclick="directEnable(this, event);">
<button class="btn-HL-peach" data-action-type="addToScene" data-scene="8" title="Add to Scene 8" onclick="directEnable(this, event);">
<span>S8</span>
</button>
</div>

<!-- Row of Scenes -->
<div class="row eight advanced sceneButtons">
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="1" title="Isolate to audio channel 1" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="1" title="Isolate to audio channel 1" onclick="directAudioChannel(this, event);">
<span>C1</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="2" title="Isolate to audio channel 2" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="2" title="Isolate to audio channel 2" onclick="directAudioChannel(this, event);">
<span>C2</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="3" title="Isolate to audio channel 3" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="3" title="Isolate to audio channel 3" onclick="directAudioChannel(this, event);">
<span>C3</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="4" title="Isolate to audio channel 4" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="4" title="Isolate to audio channel 4" onclick="directAudioChannel(this, event);">
<span>C4</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="5" title="Isolate to audio channel 5" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="5" title="Isolate to audio channel 5" onclick="directAudioChannel(this, event);">
<span>C5</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="6" title="Isolate to audio channel 6" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="6" title="Isolate to audio channel 6" onclick="directAudioChannel(this, event);">
<span>C6</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="7" title="Isolate to audio channel 7" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="7" title="Isolate to audio channel 7" onclick="directAudioChannel(this, event);">
<span>C7</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="8" title="Isolate to audio channel 8" onclick="directAudioChannel(this, event);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="8" title="Isolate to audio channel 8" onclick="directAudioChannel(this, event);">
<span>C8</span>
</button>
</div>
Expand Down Expand Up @@ -1753,19 +1753,19 @@ <h2 title="Use this link in the OBS Browser Source to capture the video or audio
<!-- Row of Channels -->
<div class="row advanced">
<span style="flex: 1 21%;color: lightgreen; margin: auto 0;">Monitor Mix</span>
<button class="btn-HL-blue" style="flex: 1 21%;" data-action-type="add-channel" title="Listen to this guest via your left audio speaker (Audio Channel 1)" onclick="changeChannelOffset(this.dataset.UUID, 0);">
<button class="btn-HL-paleblue" style="flex: 1 21%;" data-action-type="add-channel" title="Listen to this guest via your left audio speaker (Audio Channel 1)" onclick="changeChannelOffset(this.dataset.UUID, 0);">
<span>Your Left</span>
</button>
<button class="btn-HL-blue" style="flex: 1 21%;" data-action-type="add-channel" title="Listen to this guest via your right audio speaker (Audio Channel 2)" onclick="changeChannelOffset(this.dataset.UUID, 1);">
<button class="btn-HL-paleblue" style="flex: 1 21%;" data-action-type="add-channel" title="Listen to this guest via your right audio speaker (Audio Channel 2)" onclick="changeChannelOffset(this.dataset.UUID, 1);">
<span>Your Right</span>
</button>
</div>
<div class="row advanced" title="This guest will only hear audio from your left or right mic channel. Make everyone has &stereo=1 added to their URL to enable two-channel audio.">
<span style="flex: 1 21%; color: #F44; margin:auto 0;">PGM / Mic</span>
<button class="btn-HL-blue" style="flex: 1 21%;" data-action-type="isolate-channel" title="This guest will only hear audio your channel 1 mic source. Make everyone has &stereo=1 added to their URL to enable two-channel audio." data-channel="1" onclick="directIsolateChannel(this.dataset.UUID, 1);">
<button class="btn-HL-paleblue" style="flex: 1 21%;" data-action-type="isolate-channel" title="This guest will only hear audio your channel 1 mic source. Make everyone has &stereo=1 added to their URL to enable two-channel audio." data-channel="1" onclick="directIsolateChannel(this.dataset.UUID, 1);">
<span>Channel 1</span>
</button>
<button class="btn-HL-blue" style="flex: 1 21%;" data-action-type="isolate-channel" title="This guest will only hear audio your channel 2 mic source. Make everyone has &stereo=1 added to their URL to enable two-channel audio." data-channel="2" onclick="directIsolateChannel(this.dataset.UUID, 2);">
<button class="btn-HL-paleblue" style="flex: 1 21%;" data-action-type="isolate-channel" title="This guest will only hear audio your channel 2 mic source. Make everyone has &stereo=1 added to their URL to enable two-channel audio." data-channel="2" onclick="directIsolateChannel(this.dataset.UUID, 2);">
<span>Channel 2</span>
</button>
</div>
Expand Down Expand Up @@ -1860,28 +1860,28 @@ <h2 title="Use this link in the OBS Browser Source to capture the video or audio

<!-- Row of Scenes -->
<div class="row eight advanced sceneButtons">
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="1" title="Isolate to audio channel 1" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="1" title="Isolate to audio channel 1" onclick="directAudioChannel(this, event, true);">
<span>C1</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="2" title="Isolate to audio channel 2" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="2" title="Isolate to audio channel 2" onclick="directAudioChannel(this, event, true);">
<span>C2</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="3" title="Isolate to audio channel 3" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="3" title="Isolate to audio channel 3" onclick="directAudioChannel(this, event, true);">
<span>C3</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="4" title="Isolate to audio channel 4" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="4" title="Isolate to audio channel 4" onclick="directAudioChannel(this, event, true);">
<span>C4</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="5" title="Isolate to audio channel 5" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="5" title="Isolate to audio channel 5" onclick="directAudioChannel(this, event, true);">
<span>C5</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="6" title="Isolate to audio channel 6" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="6" title="Isolate to audio channel 6" onclick="directAudioChannel(this, event, true);">
<span>C6</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="7" title="Isolate to audio channel 7" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="7" title="Isolate to audio channel 7" onclick="directAudioChannel(this, event, true);">
<span>C7</span>
</button>
<button class="btn-HL-blue" data-action-type="sceneAudioChannel" data-channel="8" title="Isolate to audio channel 8" onclick="directAudioChannel(this, event, true);">
<button class="btn-HL-paleblue" data-action-type="sceneAudioChannel" data-channel="8" title="Isolate to audio channel 8" onclick="directAudioChannel(this, event, true);">
<span>C8</span>
</button>
</div>
Expand Down

0 comments on commit 8f51d03

Please sign in to comment.