Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
125 changes: 62 additions & 63 deletions css/themes.css
Original file line number Diff line number Diff line change
@@ -1,162 +1,161 @@
/* Theme DropDown Styling */

#themedropdown {
background-color: transparent;
box-shadow: none;
display: flex;
transform: translateX(-25%) !important;
background-color: transparent;
box-shadow: none;
display: flex;
transform: translateX(-25%) !important;
}

#themedropdown a {
color: #2196F3;
transition: all 0.3s ease;
color: #2196f3;
transition: all 0.3s ease;
}

#themedropdown a:hover {
color: #1E88E5;
background-color: transparent;
transition: all 0.3s ease;
color: #1e88e5;
background-color: transparent;
transition: all 0.3s ease;
}


/* Dark Mode */

.dark .blue {
background-color: #022363 !important;
background-color: #022363 !important;
}

.dark #canvas {
background-color: #1c1c1c !important;
background-color: #1c1c1c !important;
}

.dark .blue.darken-1 {
background-color: #01143b !important;
background-color: #01143b !important;
}

.dark #floatingWindows>.windowFrame {
border: 2px solid var(--border);
background-color: var(--bg);
.dark #floatingWindows > .windowFrame {
border: 2px solid var(--border);
background-color: var(--bg);
}

.dark .wfbtItem {
background-color: #225a91;
background-color: #225a91;
}

.dark #floatingWindows>.windowFrame>.wfTopBar .wftTitle {
color: #e8e8e8;
.dark #floatingWindows > .windowFrame > .wfTopBar .wftTitle {
color: #e8e8e8;
}

.dark #floatingWindows>.windowFrame>.wfWinBody .wfbWidget {
color: #ccc !important;
background-color: #3f3f44 !important;
.dark #floatingWindows > .windowFrame > .wfWinBody .wfbWidget {
color: #ccc !important;
/* background-color: #3f3f44 !important; */
}

.dark .popupMsg {
background-color: #084e86;
color: #e8e8e8;
background-color: #084e86;
color: #e8e8e8;
}

.dark #printText {
border-color: #000000;
border-color: #000000;
}

.dark #loading-image-container {
background-color: var(--bg) !important;
background-color: var(--bg) !important;
}

.dark #loadingText {
color: white !important;
color: white !important;
}

.dark .language-link {
color: #fff;
color: #fff;
}

.modal-content {
background-color: var(--panel-bg);
color: var(--fg);
background-color: var(--panel-bg);
color: var(--fg);
}

.dark #submitLilypond {
background-color: rgb(0, 102, 255);
background-color: rgb(0, 102, 255);
}

.dark #search,
.dark #helpfulSearch,
.dark .ui-autocomplete {
background-color: #1c1c1c !important;
color: #fff !important;
background-color: #1c1c1c !important;
color: #fff !important;
}

.dark .ui-autocomplete li:hover {
background-color: #225a91 !important;
background-color: #225a91 !important;
}

.dark #helpfulSearchDiv {
background-color: transparent !important;
background-color: transparent !important;
}

.dark #crossButton {
color: #fff;
color: #fff;
}

.dark #chooseKeyDiv {
background: #333;
background: #333;
}

.dark #movable {
background: #333;
color: white;
background: #333;
color: white;
}

.dark .dropdown-content li>a {
background-color: #1c1c1c;
color: #3fe0d1;
.dark .dropdown-content li > a {
background-color: #1c1c1c;
color: #3fe0d1;
}

.dark .dropdown-content li>a:hover {
background-color: #333;
.dark .dropdown-content li > a:hover {
background-color: #333;
}

.dark .dropdown-content {
background-color: #1c1c1c;
background-color: #1c1c1c;
}

.dark .modalBox {
background-color: #1C1C1C;
background-color: #1c1c1c;
}

.dark .modal-message {
color: #e2e2e2;
background-color: #1C1C1C;
color: #e2e2e2;
background-color: #1c1c1c;
}

.dark #newdropdown {
border: #000000;
background-color: #1c1c1c;
border: #000000;
background-color: #1c1c1c;
}

.dark #newdropdown li {
background-color: #1c1c1c;
background-color: #1c1c1c;
}

.dark #confirmation-message {
color: #e2e2e2;
color: #e2e2e2;
}
body {
--border: #cccccc;
--bg: #ffffff;
--fg: #666666;
--panel-bg: #f5f5f5;
--accent: #2196F3;
--border: #cccccc;
--bg: #ffffff;
--fg: #666666;
--panel-bg: #f5f5f5;
--accent: #2196f3;
}

body.dark {
--border: #000000;
--bg: #1d1d20;
--fg: #e8e8e8;
--panel-bg: #1c1c1c;
--accent: #3fe0d1;
--border: #000000;
--bg: #1d1d20;
--fg: #e8e8e8;
--panel-bg: #1c1c1c;
--accent: #3fe0d1;
}

/* Your Custom Theme can go here if you don't want to modify the existing dark mode */
/* Your Custom Theme can go here if you don't want to modify the existing dark mode */
Loading