Skip to content

Commit

Permalink
feat: Add dark mode styling for UI elements
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Feb 11, 2024
1 parent a8cdc1d commit 211d2a1
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions wiki/darkmode.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/* Dark Mode Background */
body, .ui-container {
background-color: #121212;
color: #E0E0E0;
}

/* Tokens Styling */
.token {
border: 2px solid #5A5A5A;
background-color: #333333;
color: #FFFFFF;
}

.token:hover, .token:focus {
border-color: #9A9A9A;
}

/* Grid Styling */
.grid-line {
stroke: #444444;
}

.grid-area {
fill: #333333;
stroke: #444444;
}

/* Interactive Elements */
.button, .link, .tool-icon {
background-color: #333333;
color: #E0E0E0;
}

.button:hover, .link:hover, .tool-icon:hover {
background-color: #454545;
}

.button:active, .link:active, .tool-icon:active {
background-color: #555555;
}

/* General UI Components */
.header, .footer, .panel {
background-color: #222222;
color: #E0E0E0;
}

.header a, .footer a, .panel a {
color: #ADADAD;
}

.header a:hover, .footer a:hover, .panel a:hover {
color: #FFFFFF;
}

0 comments on commit 211d2a1

Please sign in to comment.