Skip to content

Commit

Permalink
Merge 2db9639 into 2275062
Browse files Browse the repository at this point in the history
  • Loading branch information
bendymochi committed Mar 4, 2019
2 parents 2275062 + 2db9639 commit 9825cdb
Showing 1 changed file with 29 additions and 31 deletions.
60 changes: 29 additions & 31 deletions src/main/resources/view/DarkTheme.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.background {
-fx-background-color: derive(#1d1d1d, 20%);
background-color: #383838; /* Used in the default.html file */
background-color: white; /* Used in the default.html file */
}

.label {
Expand Down Expand Up @@ -42,7 +42,7 @@
.table-view {
-fx-base: #1d1d1d;
-fx-control-inner-background: #1d1d1d;
-fx-background-color: #1d1d1d;
-fx-background-color: #4fc3f7;
-fx-table-cell-border-color: transparent;
-fx-table-header-border-color: transparent;
-fx-padding: 5;
Expand Down Expand Up @@ -77,20 +77,20 @@
}

.split-pane:horizontal .split-pane-divider {
-fx-background-color: derive(#1d1d1d, 20%);
-fx-border-color: transparent transparent transparent #4d4d4d;
-fx-background-color: #4fc3f7;
-fx-border-color: transparent;
}

.split-pane {
-fx-border-radius: 1;
-fx-border-width: 1;
-fx-background-color: derive(#1d1d1d, 20%);
-fx-border-radius: 0.5;
-fx-border-width: 0.5;
-fx-background-color: #71d0f8;
}

.list-view {
-fx-background-insets: 0;
-fx-padding: 0;
-fx-background-color: derive(#1d1d1d, 20%);
-fx-background-color: white;
}

.list-cell {
Expand All @@ -100,24 +100,24 @@
}

.list-cell:filled:even {
-fx-background-color: #3c3e3f;
-fx-background-color: #ffffff;
}

.list-cell:filled:odd {
-fx-background-color: #515658;
-fx-background-color: #e1f5fe;
}

.list-cell:filled:selected {
-fx-background-color: #424d5f;
-fx-background-color: #b3e5fc;
}

.list-cell:filled:selected #cardPane {
-fx-border-color: #3e7b91;
-fx-border-color: #ffffff;
-fx-border-width: 1;
}

.list-cell .label {
-fx-text-fill: white;
-fx-text-fill: black;
}

.cell_big_label {
Expand All @@ -133,24 +133,22 @@
}

.stack-pane {
-fx-background-color: derive(#1d1d1d, 20%);
-fx-background-color: derive(#4fc3f7, 20%);
}

.pane-with-border {
-fx-background-color: derive(#1d1d1d, 20%);
-fx-border-color: derive(#1d1d1d, 10%);
-fx-border-top-width: 1px;
-fx-background-color: derive(#4fc3f7, 20%);
}

.status-bar {
-fx-background-color: derive(#1d1d1d, 30%);
-fx-background-color: #0086c3;
}

.result-display {
-fx-background-color: transparent;
-fx-font-family: "Segoe UI Light";
-fx-font-size: 13pt;
-fx-text-fill: white;
-fx-text-fill: black;
}

.result-display .label {
Expand All @@ -175,8 +173,8 @@
}

.grid-pane {
-fx-background-color: derive(#1d1d1d, 30%);
-fx-border-color: derive(#1d1d1d, 30%);
-fx-background-color: derive(#4fc3f7, 30%);
-fx-border-color: derive(#82b3c9, 30%);
-fx-border-width: 1px;
}

Expand All @@ -185,15 +183,15 @@
}

.context-menu {
-fx-background-color: derive(#1d1d1d, 50%);
-fx-background-color: #0086c3;
}

.context-menu .label {
-fx-text-fill: white;
}

.menu-bar {
-fx-background-color: derive(#1d1d1d, 20%);
-fx-background-color: #0086c3;
}

.menu-bar .label {
Expand Down Expand Up @@ -257,11 +255,11 @@
}

.dialog-pane {
-fx-background-color: #1d1d1d;
-fx-background-color: #4fc3f7;
}

.dialog-pane > *.button-bar > *.container {
-fx-background-color: #1d1d1d;
-fx-background-color: #4fc3f7;
}

.dialog-pane > *.label.content {
Expand All @@ -282,11 +280,11 @@
}

.scroll-bar {
-fx-background-color: derive(#1d1d1d, 20%);
-fx-background-color: #9e9e9e;
}

.scroll-bar .thumb {
-fx-background-color: derive(#1d1d1d, 50%);
-fx-background-color: #cfcfcf;
-fx-background-insets: 3;
}

Expand Down Expand Up @@ -318,22 +316,22 @@
}

#commandTextField {
-fx-background-color: transparent #383838 transparent #383838;
-fx-background-color: #e1f5fe;
-fx-background-insets: 0;
-fx-border-color: #383838 #383838 #ffffff #383838;
-fx-border-color: #ffffff #ffffff #ffffff #ffffff;
-fx-border-insets: 0;
-fx-border-width: 1;
-fx-font-family: "Segoe UI Light";
-fx-font-size: 13pt;
-fx-text-fill: white;
-fx-text-fill: black;
}

#filterField, #personListPanel, #personWebpage {
-fx-effect: innershadow(gaussian, black, 10, 0, 0, 0);
}

#resultDisplay .content {
-fx-background-color: transparent, #383838, transparent, #383838;
-fx-background-color: #e1f5fe;
-fx-background-radius: 0;
}

Expand Down

0 comments on commit 9825cdb

Please sign in to comment.