UI: Fix incorrect OBSTheme definition for highlighted text color

master
Matt Gajownik 2021-08-01 20:50:34 +10:00 committed by Jim
parent e03aeb9bfd
commit 6e6263b185
3 changed files with 6 additions and 6 deletions

View File

@ -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. */

View File

@ -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);
}

View File

@ -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 */
}