Merge pull request #418 from Drumrrr/master

Added Dark Mode Theme
This commit is contained in:
s0lray
2025-05-31 18:45:01 -04:00
committed by GitHub
3 changed files with 23 additions and 3 deletions
+14
View File
@@ -16,6 +16,20 @@ body {
text-align: center;
}
.dark-Mode{
background-color: #000;
color: #fff;
.node text {
fill: #fff;
}
.legend{
color: #fff;
}
path.link{
stroke: #444;
}
}
.legend {
position: absolute;
top: 0px;
+3 -2
View File
@@ -20,8 +20,9 @@
<div class="legend"><p>(T) - Indicates a link to a tool that must be installed and run locally<br>
(D) - Google Dork, for more information: <a href="https://en.wikipedia.org/wiki/Google_hacking">Google Hacking</a><br>
(R) - Requires registration<br>
(M) - Indicates a URL that contains the search term and the URL itself must be edited manually<br></p></div>
(M) - Indicates a URL that contains the search term and the URL itself must be edited manually<br></p>
<button onclick="goDark()">Toggle dark mode</button></div>
<h3>Notes</h3>
OSINT framework focused on gathering information from free tools or resources. The intention is to help people find free OSINT resources. Some of the sites included might require registration or offer more data for $$$, but you should be able to get at least a portion of the available information for no cost.<br>
+6 -1
View File
@@ -148,4 +148,9 @@ function toggle(d) {
d.children = d._children;
d._children = null;
}
}
}
//Togle Dark Mode
function goDark() {
var element = document.body;
element.classList.toggle("dark-Mode");
}