Browse Source

UI: Fix incorrect OBSTheme definition for highlighted text color

Matt Gajownik 4 years ago
parent
commit
6e6263b185
3 changed files with 6 additions and 6 deletions
  1. 2 2
      UI/data/themes/Acri.qss
  2. 2 2
      UI/data/themes/Dark.qss
  3. 2 2
      UI/data/themes/Rachni.qss

+ 2 - 2
UI/data/themes/Acri.qss

@@ -15,7 +15,7 @@ OBSTheme {
     shadow: rgb(0,0,0);
 
     highlight: rgb(37,36,88);
-    highlightText: rgb(255,255,255);
+    highlightedText: rgb(255,255,255);
 
     link: rgb(96,94,230);
     linkVisited: rgb(96,94,230);
@@ -29,7 +29,7 @@ OBSTheme::disabled {
 
 OBSTheme::inactive {
     highlight: rgb(48,47,48);
-    highlightText: rgb(255,255,255);
+    highlightedText: rgb(255,255,255);
 }
 
 /* General style, we override only what is needed. */

+ 2 - 2
UI/data/themes/Dark.qss

@@ -49,7 +49,7 @@ OBSTheme {
     shadow: rgb(11,10,11); /* veryVeryDark */
 
     highlight: rgb(42,130,218); /* blue */
-    highlightText: rgb(0,0,0);
+    highlightedText: rgb(0,0,0);
 
     link: rgb(114,162,255); /* OBS blue */
     linkVisited: rgb(114,162,255); /* OBS blue */
@@ -63,7 +63,7 @@ OBSTheme::disabled {
 
 OBSTheme::inactive {
     highlight: rgb(48,47,48);
-    highlightText: rgb(255,255,255);
+    highlightedText: rgb(255,255,255);
 }
 
 

+ 2 - 2
UI/data/themes/Rachni.qss

@@ -60,7 +60,7 @@ OBSTheme {
 	shadow: rgb(35, 38, 41); /* Dark Gray */
 
 	highlight: rgb(98, 238, 255); /* Light Cyan (Primary Light) */
-	highlightText: rgb(0,0,0);
+	highlightedText: rgb(0,0,0);
 
 	link: rgb(98, 238, 255); /* Light Cyan (Primary Light) */
 	linkVisited: rgb(98, 238, 255); /* Light Cyan (Primary Light) */
@@ -74,7 +74,7 @@ OBSTheme::disabled {
 
 OBSTheme::inactive {
 	highlight: rgb(0, 188, 212); /* Cyan (Primary) */
-	highlightText: rgb(239, 240, 241); /* White */
+	highlightedText: rgb(239, 240, 241); /* White */
 }