diff --git a/PlayWall/src/main/resources/view/dialog/PlayoutLogDialog.fxml b/PlayWall/src/main/resources/view/dialog/PlayoutLogDialog.fxml
index 018321ac305f98f31af170a6d4ada8cf1754d6cc..4b47ced2e5ce67f7e78f19876668d3ac61b44c10 100644
--- a/PlayWall/src/main/resources/view/dialog/PlayoutLogDialog.fxml
+++ b/PlayWall/src/main/resources/view/dialog/PlayoutLogDialog.fxml
@@ -19,7 +19,7 @@
         <HBox maxWidth="1.7976931348623157E308" spacing="14.0" VBox.vgrow="ALWAYS">
             <children>
                 <ListView fx:id="logList" maxWidth="1.7976931348623157E308" prefHeight="200.0" prefWidth="300.0"
-                          HBox.hgrow="ALWAYS"/>
+                          HBox.hgrow="ALWAYS" styleClass="dark-list"/>
                 <VBox maxWidth="1.7976931348623157E308" spacing="14.0" HBox.hgrow="ALWAYS">
                     <children>
                         <Button fx:id="exportButton" maxWidth="1.7976931348623157E308" mnemonicParsing="false"
diff --git a/PlayWall/src/main/sass/components/list.scss b/PlayWall/src/main/sass/components/list.scss
index 12d0b758df0be41488dced2647c878edbe792d89..1ea1f4bc53dc52ac2bfb04568b503e2d64412451 100644
--- a/PlayWall/src/main/sass/components/list.scss
+++ b/PlayWall/src/main/sass/components/list.scss
@@ -65,14 +65,14 @@
 
 	.list-cell:filled:hover {
 		-fx-background-color: -fx-hover-base;
-		-fx-text-fill: -fx-text-inner-color;
+		-fx-text-fill: $component-text-color;
 	}
 
 	.list-view:focused .list-cell:filled:focused:hover {
 		-fx-background-color: derive(-fx-hover-base, -50%);
 
 		-fx-background-insets: 0, 1, 2;
-		-fx-text-fill: -fx-text-inner-color;
+		-fx-text-fill: $component-text-color;
 	}
 
 	.list-view:horizontal .list-cell:filled:selected, .list-view:horizontal .list-cell:filled:selected:hover {