2015-02-16 10:01:56 -05:00
|
|
|
/* Intentionnally left blank */
|
|
|
|
/* Themes are created using Qt CSS, you can visit */
|
|
|
|
/* http://doc.qt.io/qt-5/stylesheet-reference.html and */
|
|
|
|
/* http://doc.qt.io/qt-5/stylesheet-examples.html for examples. */
|
|
|
|
|
|
|
|
/* OBS will use the theme filename for the settings. */
|
|
|
|
/* You can ship images using relative paths in qss. */
|
|
|
|
/* Dark Theme is a good place to start if you need */
|
|
|
|
/* a template. */
|
|
|
|
|
|
|
|
|
|
|
|
/* We need to set back the icons, or the preview wont stick. */
|
|
|
|
|
|
|
|
* [themeID="addIconSmall"] {
|
|
|
|
qproperty-icon: url(:/res/images/add.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="removeIconSmall"] {
|
|
|
|
qproperty-icon: url(:/res/images/list_remove.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="propertiesIconSmall"] {
|
|
|
|
qproperty-icon: url(:/res/images/properties.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="configIconSmall"] {
|
|
|
|
qproperty-icon: url(:/res/images/configuration21_16.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="upArrowIconSmall"] {
|
|
|
|
qproperty-icon: url(:/res/images/up.png);
|
|
|
|
}
|
|
|
|
|
2017-12-25 13:33:55 -08:00
|
|
|
* [themeID="refreshIconSmall"] {
|
|
|
|
qproperty-icon: url(:/res/images/refresh.png);
|
|
|
|
}
|
|
|
|
|
2015-02-16 10:01:56 -05:00
|
|
|
* [themeID="downArrowIconSmall"] {
|
|
|
|
qproperty-icon: url(:/res/images/down.png);
|
|
|
|
}
|
|
|
|
|
2015-03-22 14:54:50 -07:00
|
|
|
MuteCheckBox {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
MuteCheckBox::indicator:checked {
|
|
|
|
image: url(:/res/images/mute.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
MuteCheckBox::indicator:unchecked {
|
|
|
|
image: url(:/res/images/unmute.png);
|
|
|
|
}
|
|
|
|
|
2018-06-02 09:45:01 -07:00
|
|
|
SourceTreeSubItemCheckBox {
|
|
|
|
background: transparent;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceTreeSubItemCheckBox::indicator {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceTreeSubItemCheckBox::indicator:checked {
|
|
|
|
image: url(:/res/images/expand.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceTreeSubItemCheckBox::indicator:unchecked {
|
|
|
|
image: url(:/res/images/collapse.png);
|
|
|
|
}
|
|
|
|
|
2014-11-01 21:44:01 +01:00
|
|
|
OBSHotkeyLabel[hotkeyPairHover=true] {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2015-02-16 10:01:56 -05:00
|
|
|
|
|
|
|
/* Volume Control */
|
|
|
|
|
|
|
|
VolumeMeter {
|
2017-12-31 17:43:57 +01:00
|
|
|
qproperty-backgroundNominalColor: rgb(15, 100, 15);
|
|
|
|
qproperty-backgroundWarningColor: rgb(100, 100, 15);
|
|
|
|
qproperty-backgroundErrorColor: rgb(100, 15, 15);
|
|
|
|
qproperty-foregroundNominalColor: rgb(50, 200, 50);
|
|
|
|
qproperty-foregroundWarningColor: rgb(255, 200, 50);
|
|
|
|
qproperty-foregroundErrorColor: rgb(200, 50, 50);
|
|
|
|
qproperty-magnitudeColor: rgb(0, 0, 0);
|
|
|
|
qproperty-majorTickColor: rgb(0, 0, 0);
|
|
|
|
qproperty-minorTickColor: rgb(50, 50, 50);
|
2015-02-16 10:01:56 -05:00
|
|
|
}
|
2015-06-17 12:07:55 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* Label warning/error */
|
|
|
|
|
|
|
|
QLabel#warningLabel {
|
|
|
|
color: rgb(192, 128, 0);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
QLabel#errorLabel {
|
|
|
|
color: rgb(192, 0, 0);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2017-05-13 00:35:28 -07:00
|
|
|
|
|
|
|
* [themeID="warning"] {
|
|
|
|
color: rgb(192, 128, 0);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="error"] {
|
|
|
|
color: rgb(192, 0, 0);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="good"] {
|
|
|
|
color: rgb(0, 128, 0);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2018-08-18 01:13:20 -05:00
|
|
|
|
|
|
|
/* About dialog */
|
|
|
|
|
|
|
|
* [themeID="aboutName"] {
|
|
|
|
font-size: 36px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="aboutVersion"] {
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="aboutInfo"] {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
* [themeID="aboutHLayout"] {
|
2018-09-13 19:43:02 -05:00
|
|
|
background-color: #DCD9D7;
|
2018-08-18 01:13:20 -05:00
|
|
|
}
|
2018-08-30 15:17:49 -05:00
|
|
|
|
|
|
|
/* Preview background color */
|
|
|
|
|
|
|
|
* [themeID="displayBackgroundColor"] {
|
|
|
|
qproperty-displayBackgroundColor: rgb(76, 76, 76);
|
|
|
|
}
|