Skip to content

Commit 7115684

Browse files
authored
Merge pull request #180 from VolvoxCommunity/dark-theme
Dark theme
2 parents 35dfb82 + d517b55 commit 7115684

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

Diff for: src/Volvox.Helios.Web/Views/Home/About.cshtml

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@
3131
<h4 class="text-volvox underline-left">Links</h4>
3232
<ul class="mt-4">
3333
<li>
34-
Repository: <a href="https://github.com/VolvoxCommunity/Volvox.Helios" target="_blank">https://github.com/VolvoxCommunity/Volvox.Helios</a>
34+
Repository: <a href="https://github.com/VolvoxCommunity/Volvox.Helios" target="_blank" class="volvox-link">https://github.com/VolvoxCommunity/Volvox.Helios</a>
3535
</li>
3636
<li>
37-
Project Board: <a href="https://github.com/VolvoxCommunity/Volvox.Helios/projects" target="_blank">https://github.com/VolvoxCommunity/Volvox.Helios/projects</a>
37+
Project Board: <a href="https://github.com/VolvoxCommunity/Volvox.Helios/projects" target="_blank" class="volvox-link">https://github.com/VolvoxCommunity/Volvox.Helios/projects</a>
3838
</li>
3939
<li>
40-
Website: <a href="http://volvox.tech/" target="_blank">http://volvox.tech</a>
40+
Website: <a href="http://volvox.tech/" target="_blank" class="volvox-link">http://volvox.tech</a>
4141
</li>
4242
<li>
43-
Discord: <a href="https://discordapp.com/invite/jReSmc3" target="_blank">https://discordapp.com/invite/jReSmc3</a>
43+
Discord: <a href="https://discordapp.com/invite/jReSmc3" target="_blank" class="volvox-link">https://discordapp.com/invite/jReSmc3</a>
4444
</li>
4545
</ul>
4646
</div>

Diff for: src/Volvox.Helios.Web/wwwroot/css/dark-theme.css

+8
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,11 @@ footer {
126126
.footer-icon {
127127
color: white;
128128
}
129+
130+
.volvox-link {
131+
color: #4cae4c;
132+
}
133+
134+
.volvox-link:hover {
135+
color: #89f489;
136+
}

Diff for: src/Volvox.Helios.Web/wwwroot/css/light-theme.css

+8
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,11 @@ footer{
2020
.footer-icon {
2121
color: #777;
2222
}
23+
24+
.volvox-link {
25+
color: #4cae4c;
26+
}
27+
28+
.volvox-link:hover {
29+
color: #267326;
30+
}

0 commit comments

Comments
 (0)