Default.qss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* Intentionnally left blank */
  2. /* Themes are created using Qt CSS, you can visit */
  3. /* http://doc.qt.io/qt-5/stylesheet-reference.html and */
  4. /* http://doc.qt.io/qt-5/stylesheet-examples.html for examples. */
  5. /* OBS will use the theme filename for the settings. */
  6. /* You can ship images using relative paths in qss. */
  7. /* Dark Theme is a good place to start if you need */
  8. /* a template. */
  9. /* We need to set back the icons, or the preview wont stick. */
  10. * [themeID="addIconSmall"] {
  11. qproperty-icon: url(:/res/images/add.png);
  12. }
  13. * [themeID="removeIconSmall"] {
  14. qproperty-icon: url(:/res/images/list_remove.png);
  15. }
  16. * [themeID="propertiesIconSmall"] {
  17. qproperty-icon: url(:/res/images/properties.png);
  18. }
  19. * [themeID="configIconSmall"] {
  20. qproperty-icon: url(:/res/images/configuration21_16.png);
  21. }
  22. * [themeID="upArrowIconSmall"] {
  23. qproperty-icon: url(:/res/images/up.png);
  24. }
  25. * [themeID="downArrowIconSmall"] {
  26. qproperty-icon: url(:/res/images/down.png);
  27. }
  28. MuteCheckBox {
  29. outline: none;
  30. }
  31. MuteCheckBox::indicator:checked {
  32. image: url(:/res/images/mute.png);
  33. }
  34. MuteCheckBox::indicator:unchecked {
  35. image: url(:/res/images/unmute.png);
  36. }
  37. OBSHotkeyLabel[hotkeyPairHover=true] {
  38. color: red;
  39. }
  40. /* Volume Control */
  41. VolumeMeter {
  42. qproperty-bkColor: rgb(221, 221, 221);
  43. qproperty-magColor: rgb(32, 125, 23);
  44. qproperty-peakColor: rgb(62, 241, 43);
  45. qproperty-peakHoldColor: rgb(0, 0, 0);
  46. }
  47. /* Label warning/error */
  48. QLabel#warningLabel {
  49. color: rgb(192, 128, 0);
  50. font-weight: bold;
  51. }
  52. QLabel#errorLabel {
  53. color: rgb(192, 0, 0);
  54. font-weight: bold;
  55. }