Acri.qss 19 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004
  1. /* OBSTheme, main QApplication palette and QML values */
  2. OBSTheme {
  3. window: #181819;
  4. windowText: rgb(225,224,225);
  5. base: rgb(18,18,21);
  6. alternateBase: rgb(0,0,0);
  7. text: rgb(225,224,225);
  8. button: #162458;
  9. buttonText: rgb(225,224,225);
  10. brightText: #484848;
  11. light: #162458;
  12. mid: #181819;
  13. dark: rgb(18,18,21);
  14. shadow: rgb(0,0,0);
  15. highlight: #252458;
  16. highlightText: #FFFFFF;
  17. link: #605ee6;
  18. linkVisited: #605ee6;
  19. }
  20. OBSTheme::disabled {
  21. text: #484848;
  22. buttonText: #484848;
  23. brightText: #484848;
  24. }
  25. OBSTheme::inactive {
  26. highlight: rgb(48,47,48);
  27. highlightText: rgb(255, 255, 255);
  28. }
  29. /* General style, we override only what is needed. */
  30. QWidget {
  31. background-color: #181819;
  32. alternate-background-color: rgb(18,18,21);
  33. color: rgb(225,224,225);
  34. selection-background-color: #252458;
  35. selection-color: white;
  36. outline: none;
  37. font-family: "Open Sans", "Tahoma", "Arial", sans-serif;
  38. font-size: 12px;
  39. overflow: auto;
  40. }
  41. #menubar {
  42. padding: 2px 8px 0px;
  43. }
  44. QLabel:link {
  45. color: #2a3a75;
  46. }
  47. QMenu {
  48. border: 1px solid #333336;
  49. padding: 4px;
  50. }
  51. * [frameShape="1"], * [frameShape="2"], * [frameShape="3"], * [frameShape="4"], * [frameShape="5"], * [frameShape="6"] {
  52. /*border: 1px solid rgb(231,30,31); */
  53. border: none;
  54. }
  55. * [frameShape="2"],
  56. * [frameShape="4"] {
  57. border: 1px solid #333336;
  58. }
  59. QSizeGrip {
  60. background-color: transparent;
  61. image: url(./Acri/sizegrip.png);
  62. }
  63. /* Misc */
  64. QWidget::disabled {
  65. color: #484848;
  66. }
  67. * [themeID="error"] {
  68. color: #d91740;
  69. }
  70. * [themeID="warning"] {
  71. color: #d9af17;
  72. }
  73. /* Dropdown menus, Scenes box, Sources box */
  74. QAbstractItemView {
  75. background-color: #181819;
  76. border: 1px solid #333336;
  77. }
  78. /* Group Box */
  79. QGroupBox {
  80. border: 2px solid #2f2f2f;
  81. margin-bottom: 8px;
  82. padding-top: 32px;
  83. font-weight: bold;
  84. font-size: 14px;
  85. }
  86. QGroupBox::title {
  87. left: 4px;
  88. right: 0;
  89. top: 8px;
  90. font-weight: bold;
  91. padding-left: 8px;
  92. padding-right: 8px;
  93. padding-bottom: 8px;
  94. font-size: 16px;
  95. }
  96. /* --- */
  97. /* Tooltips */
  98. QToolTip {
  99. background-color: #212121;
  100. color: rgb(205,205,205);
  101. border: 1px solid #343335;
  102. border-radius: 4px;
  103. }
  104. /* Top Menu Bar Items */
  105. QMenuBar::item {
  106. background-color: rgb(24,24,25);
  107. padding: 6px;
  108. }
  109. QMenuBar::item:selected {
  110. background: #2a3a75;
  111. }
  112. /* Listbox item */
  113. QListWidget::item,
  114. SourceTree::item {
  115. padding: 4px 2px;
  116. margin-bottom: 2px;
  117. margin-top: 0px;
  118. border: 1px solid transparent;
  119. }
  120. QListWidget QLineEdit {
  121. padding-top: 0px;
  122. padding-bottom: 0px;
  123. padding-right: 0;
  124. padding-left: 2px;
  125. border: none;
  126. border-radius: none;
  127. }
  128. /* Dock stuff */
  129. QDockWidget {
  130. background: #181819;
  131. border: none;
  132. font-size: 14px;
  133. font-weight: bold;
  134. border-bottom: 2px solid #2f2f2f;
  135. }
  136. QDockWidget::title {
  137. border-bottom: 2px solid #2f2f2f;
  138. margin-left: 5px;
  139. margin-right: 5px;
  140. padding-top: 0px;
  141. padding-bottom: 6px;
  142. text-align: left;
  143. background-image: url(./Acri/top_hook.png);
  144. background-origin: padding;
  145. background-clip: padding;
  146. background-position: bottom left;
  147. background-repeat: none;
  148. }
  149. QDockWidget::close-button,
  150. QDockWidget::float-button {
  151. icon-size: 20px;
  152. subcontrol-position: top right;
  153. subcontrol-origin: padding;
  154. right: 0px;
  155. }
  156. QDockWidget::float-button {
  157. right: 20px;
  158. }
  159. QListWidget#scenes,
  160. SourceListWidget {
  161. border: none;
  162. border-bottom: 2px solid #2f2f2f;
  163. }
  164. SourceTree {
  165. border: none;
  166. border-bottom: 1px solid #2f2f2f;
  167. }
  168. SourceTree QLabel {
  169. padding: 2px 0px;
  170. margin: -2px 4px -2px;
  171. }
  172. SourceTree QLineEdit {
  173. background-color: #0c101e;
  174. padding: 2px;
  175. margin: -2px 6px -2px 3px;
  176. font-size: 12px;
  177. }
  178. #scenesFrame,
  179. #sourcesFrame {
  180. margin-left: -7px;
  181. margin-right: -7px;
  182. margin-top: -8px;
  183. margin-bottom: -12px;
  184. }
  185. #scenesToolbar,
  186. #sourcesToolbar{
  187. background-image: url(./Acri/bot_hook2.png);
  188. background-origin: margin;
  189. background-clip: margin;
  190. background-position: top left;
  191. background-repeat: none;
  192. }
  193. #sourcesToolbar {
  194. background-image: url(./Acri/bot_hook.png);
  195. }
  196. /* Listbox item selected, unfocused */
  197. QListWidget::item:hover,
  198. SourceTree::item:hover {
  199. background-color: #212121;
  200. border: 1px solid #333336;
  201. }
  202. /* Listbox item selected */
  203. QListWidget::item:selected,
  204. SourceTree::item:selected {
  205. background-color: #131a30;
  206. border: 1px solid #252a45;
  207. }
  208. /* ScrollBars */
  209. QScrollBar::corner {
  210. background-color: transparent;
  211. border: none;
  212. }
  213. QScrollBar:vertical {
  214. background-color: transparent;
  215. width: 20px;
  216. margin-top: -3px;
  217. margin-bottom: -3px;
  218. padding: 4px;
  219. }
  220. QScrollBar::handle:vertical {
  221. background-color: #2f2f2f;
  222. min-height: 20px;
  223. margin: 0px 3px;
  224. border-radius: 0px;
  225. border: none;
  226. }
  227. QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
  228. border: none;
  229. background: none;
  230. height: 0;
  231. }
  232. QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
  233. border: none;
  234. background: none;
  235. color: none;
  236. }
  237. QScrollBar:horizontal {
  238. background-color: transparent;
  239. height: 20px;
  240. margin-left: -3px;
  241. margin-right: -3px;
  242. padding: 4px;
  243. }
  244. QScrollBar::handle:horizontal {
  245. background-color: #2f2f2f;
  246. min-width: 20px;
  247. margin: 3px 0px;
  248. border-radius: 0px;
  249. border: none;
  250. }
  251. QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal {
  252. border: none;
  253. background: none;
  254. width: 0;
  255. }
  256. QScrollBar::left-arrow:horizontal, QScrollBar::right-arrow:horizontal, QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal {
  257. border: none;
  258. background: none;
  259. color: none;
  260. }
  261. /* Scenes and Sources toolbar */
  262. QToolBar {
  263. background-color: rgb(24,24,25);
  264. margin-top: 4px;
  265. }
  266. QToolButton:hover {
  267. background-color: #2a3a75;
  268. border: 1px solid #233166;
  269. border-radius: none;
  270. }
  271. QToolButton:pressed {
  272. background-color: #161f41;
  273. border-radius: none;
  274. }
  275. * [themeID="addIconSmall"] {
  276. qproperty-icon: url(./Dark/plus.svg);
  277. }
  278. * [themeID="removeIconSmall"] {
  279. qproperty-icon: url(./Dark/minus.svg);
  280. }
  281. * [themeID="propertiesIconSmall"] {
  282. qproperty-icon: url(./Dark/settings/general.svg);
  283. }
  284. * [themeID="configIconSmall"] {
  285. qproperty-icon: url(./Dark/settings/general.svg);
  286. }
  287. * [themeID="upArrowIconSmall"] {
  288. qproperty-icon: url(./Dark/up.svg);
  289. }
  290. * [themeID="downArrowIconSmall"] {
  291. qproperty-icon: url(./Dark/down.svg);
  292. }
  293. * [themeID="pauseIconSmall"] {
  294. qproperty-icon: url(./Dark/media-pause.svg);
  295. }
  296. /* Tab Widget */
  297. QTabWidget::pane { /* The tab widget frame */
  298. border-top: 1px solid #2f2f2f;
  299. }
  300. QTabWidget::tab-bar {
  301. alignment: left;
  302. }
  303. QTabBar::tab {
  304. background-color: #212121;
  305. border: 1px solid #333336;
  306. min-width: 8ex;
  307. padding-top: 4px;
  308. padding-bottom: 4px;
  309. padding-left: 10px;
  310. padding-right: 10px;
  311. margin-right: 2px;
  312. margin-top: 1px;
  313. margin-bottom: 1px;
  314. }
  315. QTabBar::tab:selected {
  316. background-color: #131a30;
  317. border-color: #252a45;
  318. }
  319. QTabBar::tab:hover {
  320. background-color: #233166;
  321. border-color: #364683;
  322. }
  323. QTabBar::tab:pressed {
  324. background-color: #161f41;
  325. }
  326. /* ComboBox */
  327. QComboBox {
  328. background-color: rgb(40,40,42);
  329. border-style: solid;
  330. border: 1px;
  331. border-color: rgb(24,24,30);
  332. padding: 4px;
  333. padding-left: 10px;
  334. }
  335. QComboBox::drop-down {
  336. border:none;
  337. border-left: 1px solid rgba(31,30,31,155);
  338. width: 20px;
  339. }
  340. QComboBox::down-arrow {
  341. qproperty-alignment: AlignTop;
  342. image: url(./Dark/updown.svg);
  343. width: 100%;
  344. }
  345. QComboBox:on {
  346. background-color: #2a3a75;
  347. }
  348. QComboBox:editable {
  349. border-top-left-radius: 0px;
  350. border-bottom-left-radius: 0px;
  351. }
  352. QComboBox::drop-down:editable {
  353. border-top-right-radius: 3px;
  354. border-bottom-right-radius: 3px;
  355. }
  356. QComboBox::down-arrow:editable {
  357. qproperty-alignment: AlignTop;
  358. image: url(./Dark/down.svg);
  359. width: 8%;
  360. }
  361. /* Textedits etc */
  362. QLineEdit, QTextEdit, QPlainTextEdit {
  363. background-color: rgb(8,8,11);
  364. border: none;
  365. padding: 4px;
  366. padding-left: 2px;
  367. }
  368. /* Spinbox and doubleSpinbox */
  369. QSpinBox, QDoubleSpinBox {
  370. background-color: rgb(8,8,11);
  371. border: none;
  372. padding: 4px;
  373. padding-left: 2px;
  374. padding-right: 15px;
  375. margin-right: 10px;
  376. }
  377. QSpinBox::up-button, QDoubleSpinBox::up-button {
  378. subcontrol-origin: margin;
  379. subcontrol-position: top right; /* position at the top right corner */
  380. background-color: rgb(24,24,30);
  381. border: 1px solid rgb(8,8,11);
  382. border-radius: 3px;
  383. border-width: 0;
  384. border-bottom-left-radius: 0;
  385. border-bottom-right-radius: 0;
  386. border-bottom-width: 0;
  387. }
  388. QSpinBox::down-button, QDoubleSpinBox::down-button {
  389. subcontrol-origin: margin;
  390. subcontrol-position: bottom right; /* position at the top right corner */
  391. background-color: rgb(24,24,30);
  392. border: 1px solid rgb(8,8,11);
  393. border-radius: 3px;
  394. border-width: 0;
  395. border-top-left-radius: 0;
  396. border-top-right-radius: 0;
  397. border-top-width: 0;
  398. }
  399. QSpinBox::up-button:hover, QSpinBox::down-button:hover, QDoubleSpinBox::up-button:hover, QDoubleSpinBox::down-button:hover {
  400. background-color: rgb(15,33,51);
  401. }
  402. QSpinBox::up-button:pressed, QSpinBox::down-button:pressed, QDoubleSpinBox::up-button:pressed, QDoubleSpinBox::down-button:pressed {
  403. background-color: rgb(24,24,25);
  404. }
  405. QSpinBox::up-button:disabled, QSpinBox::up-button:off, QSpinBox::down-button:disabled, QSpinBox::down-button:off {
  406. background-color: rgb(24,24,25);
  407. }
  408. QDoubleSpinBox::up-button:disabled, QDoubleSpinBox::up-button:off, QDoubleSpinBox::down-button:disabled, QDoubleSpinBox::down-button:off {
  409. background-color: rgb(24,24,25);
  410. }
  411. QSpinBox::up-arrow, QDoubleSpinBox::up-arrow {
  412. image: url(./Dark/up.svg);
  413. width: 100%;
  414. }
  415. QSpinBox::down-arrow, QDoubleSpinBox::down-arrow {
  416. image: url(./Dark/down.svg);
  417. width: 100%;
  418. }
  419. /* Buttons */
  420. QPushButton {
  421. color: rgb(225,224,225);
  422. background-color: #162458;
  423. border: 1px solid #233166;
  424. padding: 6px 20px;
  425. margin: 1px;
  426. }
  427. QPushButton::flat {
  428. background-color: rgb(24,24,25);
  429. border: none;
  430. }
  431. QPushButton:checked {
  432. background-color: #581624;
  433. border-color: #84162d;
  434. }
  435. QPushButton:hover {
  436. background-color: #2a3a75;
  437. border: 1px solid #364683;
  438. }
  439. QPushButton:pressed {
  440. background-color: #161f41;
  441. }
  442. QPushButton:disabled {
  443. border: 1px solid #232426;
  444. background-color: #1a1a1b;
  445. }
  446. QPushButton::flat:hover,
  447. QPushButton::flat:disabled {
  448. border: none;
  449. }
  450. /* Progress Bar */
  451. QProgressBar {
  452. background: #101010;
  453. border: 2px solid #363636;
  454. border-radius: 0px;
  455. text-align: center;
  456. }
  457. QProgressBar::chunk {
  458. background-color: #2a3a75;
  459. }
  460. /* Sliders */
  461. QSlider::groove:horizontal {
  462. background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
  463. stop: 0 rgb(31,30,31),
  464. stop: 0.75 rgb(50, 49, 50));
  465. height: 4px;
  466. border: none;
  467. border-radius: 2px;
  468. }
  469. QSlider::handle:horizontal {
  470. background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
  471. stop: 0 rgb(240,239,240),
  472. stop: 0.25 rgb(200,199,200),
  473. stop: 1 rgb(162,161,162));
  474. border: 1px solid rgb(24,24,25);
  475. border-radius: 3px;
  476. height: 10px;
  477. width: 18px;
  478. margin: -3px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
  479. }
  480. QSlider::handle:horizontal:pressed {
  481. background-color: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1,
  482. stop: 0 rgb(240,239,240),
  483. stop: 0.25 rgb(200,199,200),
  484. stop: 1 rgb(162,161,162));
  485. }
  486. QSlider::sub-page:horizontal {
  487. background-color: #2a3a75;
  488. }
  489. QSlider::sub-page:horizontal:disabled {
  490. background-color: QLinearGradient(x1: 0, y1: 1, x2: 0, y2: 0,
  491. stop: 0 rgb(26,25,26),
  492. stop: 0.75 rgb(10, 10, 10));
  493. border-radius: 2px;
  494. }
  495. QSlider::groove:vertical {
  496. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  497. stop: 0 rgb(31,30,31),
  498. stop: 0.75 rgb(50, 49, 50));
  499. width: 4px;
  500. border: none;
  501. border-radius: 2px;
  502. }
  503. QSlider::handle:vertical {
  504. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  505. stop: 0 rgb(240,239,240),
  506. stop: 0.25 rgb(200,199,200),
  507. stop: 1 rgb(162,161,162));
  508. border: 1px solid rgb(24,24,25);
  509. border-radius: 3px;
  510. width: 10px;
  511. height: 18px;
  512. margin: 0 -3px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
  513. }
  514. QSlider::handle:vertical:pressed {
  515. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  516. stop: 0 rgb(240,239,240),
  517. stop: 0.25 rgb(200,199,200),
  518. stop: 1 rgb(162,161,162));
  519. }
  520. QSlider::add-page:vertical {
  521. background-color: #2a3a75;
  522. }
  523. QSlider::add-page:vertical:disabled {
  524. background-color: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0,
  525. stop: 0 rgb(26,25,26),
  526. stop: 0.75 rgb(10, 10, 10));
  527. border-radius: 2px;
  528. }
  529. QSlider::handle:hover {
  530. background-color: rgb(200,199,200);
  531. }
  532. QSlider::handle:disabled {
  533. background-color: rgb(15,15,16);
  534. }
  535. /* Volume Control */
  536. /* Old Meters */
  537. VolumeMeter {
  538. qproperty-bkColor: rgb(8,8,11);
  539. qproperty-magColor:;
  540. qproperty-peakColor:;
  541. qproperty-peakHoldColor: rgb(225,224,225);
  542. }
  543. VolumeMeter {
  544. qproperty-backgroundNominalColor: #42740c;
  545. qproperty-backgroundWarningColor: #988F0F;
  546. qproperty-backgroundErrorColor: #802004;
  547. qproperty-foregroundNominalColor: #84D82B;
  548. qproperty-foregroundWarningColor: #E4D717;
  549. qproperty-foregroundErrorColor: #D74116;
  550. qproperty-magnitudeColor: rgb(49, 54, 59); /* Blue-gray */
  551. qproperty-majorTickColor: rgb(239, 240, 241); /* White */
  552. qproperty-minorTickColor: rgb(118, 121, 124); /* Light Gray */
  553. qproperty-peakDecayRate: 23.4; /* Override of the standard PPM Type I rate. */
  554. }
  555. /* Status Bar */
  556. QStatusBar::item {
  557. border: none;
  558. }
  559. /* Checkboxes */
  560. QCheckBox {
  561. padding: 4px;
  562. }
  563. QCheckBox::indicator,
  564. QGroupBox::indicator {
  565. width: 20px;
  566. height: 20px;
  567. }
  568. QGroupBox::indicator {
  569. margin-left: 2px;
  570. }
  571. QCheckBox::indicator:unchecked {
  572. image: url(./Acri/checkbox_unchecked.png);
  573. }
  574. QCheckBox::indicator:unchecked:hover,
  575. QGroupBox::indicator:unchecked:hover {
  576. border: none;
  577. image: url(./Acri/checkbox_unchecked_focus.png);
  578. }
  579. QCheckBox::indicator:checked {
  580. image: url(./Acri/checkbox_checked.png);
  581. }
  582. QCheckBox::indicator:checked:hover,
  583. QGroupBox::indicator:checked:hover {
  584. border: none;
  585. image: url(./Acri/checkbox_checked_focus.png);
  586. }
  587. QCheckBox::indicator:checked:disabled,
  588. QGroupBox::indicator:checked:disabled {
  589. image: url(./Acri/checkbox_checked_disabled.png);
  590. }
  591. QCheckBox::indicator:unchecked:disabled,
  592. QGroupBox::indicator:unchecked:disabled {
  593. image: url(./Acri/checkbox_unchecked_disabled.png);
  594. }
  595. /* Radio Buttons */
  596. QRadioButton::indicator {
  597. width: 19px;
  598. height: 19px;
  599. }
  600. QRadioButton::indicator:unchecked {
  601. image: url(./Acri/radio_unchecked.png);
  602. }
  603. QRadioButton::indicator:unchecked:hover,
  604. QRadioButton::indicator:unchecked:focus,
  605. QRadioButton::indicator:unchecked:pressed {
  606. border: none;
  607. outline: none;
  608. image: url(./Acri/radio_unchecked_focus.png);
  609. }
  610. QRadioButton::indicator:checked {
  611. border: none;
  612. outline: none;
  613. image: url(./Acri/radio_checked.png);
  614. }
  615. QRadioButton::indicator:checked:hover,
  616. QRadioButton::indicator:checked:focus,
  617. QRadioButton::indicator:checked:pressed {
  618. border: none;
  619. outline: none;
  620. image: url(./Acri/radio_checked_focus.png);
  621. }
  622. QRadioButton::indicator:checked:disabled {
  623. outline: none;
  624. image: url(./Acri/radio_checked_disabled.png);
  625. }
  626. QRadioButton::indicator:unchecked:disabled {
  627. image: url(./Acri/radio_unchecked_disabled.png);
  628. }
  629. /* Mute CheckBox */
  630. MuteCheckBox {
  631. outline: none;
  632. }
  633. MuteCheckBox::indicator:checked {
  634. image: url(./Dark/mute.svg);
  635. }
  636. MuteCheckBox::indicator:unchecked {
  637. image: url(./Dark/settings/audio.svg);
  638. }
  639. MuteCheckBox::indicator:unchecked:hover {
  640. image: url(./Dark/settings/audio.svg);
  641. }
  642. MuteCheckBox::indicator:unchecked:focus {
  643. image: url(./Dark/settings/audio.svg);
  644. }
  645. MuteCheckBox::indicator:checked:hover {
  646. image: url(./Dark/mute.svg);
  647. }
  648. MuteCheckBox::indicator:checked:focus {
  649. image: url(./Dark/mute.svg);
  650. }
  651. MuteCheckBox::indicator:checked:disabled {
  652. image: url(./Dark/mute.svg);
  653. }
  654. MuteCheckBox::indicator:unchecked:disabled {
  655. image: url(./Dark/settings/audio.svg);
  656. }
  657. OBSHotkeyLabel[hotkeyPairHover=true] {
  658. color: rgba(27, 96, 166);
  659. }
  660. /* Group Collapse Checkbox */
  661. SourceTreeSubItemCheckBox {
  662. background: transparent;
  663. outline: none;
  664. padding: 0px;
  665. }
  666. SourceTreeSubItemCheckBox::indicator {
  667. width: 12px;
  668. height: 12px;
  669. }
  670. SourceTreeSubItemCheckBox::indicator:checked,
  671. SourceTreeSubItemCheckBox::indicator:checked:hover {
  672. image: url(./Dark/expand.svg);
  673. }
  674. SourceTreeSubItemCheckBox::indicator:unchecked,
  675. SourceTreeSubItemCheckBox::indicator:unchecked:hover {
  676. image: url(./Dark/down.svg);
  677. }
  678. /* Label warning/error */
  679. QLabel#warningLabel {
  680. color: rgb(192, 128, 0);
  681. font-weight: bold;
  682. }
  683. QLabel#errorLabel {
  684. color: rgb(192, 0, 0);
  685. font-weight: bold;
  686. }
  687. /* Settings Menu */
  688. #buttonBox {
  689. border-top: 2px solid grey;
  690. }
  691. /* Special Fixes */
  692. OBSBasicProperties,
  693. #OBSBasicSettings,
  694. #OBSBasicFilters {
  695. background: #101010;
  696. }
  697. FocusList::item {
  698. padding: 0px 2px;
  699. }
  700. #fpsTypes {
  701. padding: 0px;
  702. }
  703. #finishPage QLabel {
  704. padding: -2px 0px;
  705. background: transparent;
  706. min-height: 26px;
  707. }
  708. /* About dialog */
  709. #OBSAbout #icon {
  710. padding: 0;
  711. }
  712. #OBSAbout QTextBrowser {
  713. background: transparent;
  714. padding: 2px 0;
  715. }
  716. * [themeID="aboutName"] {
  717. font-size: 36px;
  718. font-weight: bold;
  719. padding: 0;
  720. }
  721. * [themeID="aboutVersion"] {
  722. font-size: 16px;
  723. margin-bottom: 20px;
  724. padding: 0;
  725. }
  726. * [themeID="aboutInfo"] {
  727. margin-bottom: 20px;
  728. }
  729. * [themeID="aboutHLayout"] {
  730. background-color: rgb(8, 8, 11);
  731. }
  732. /* Preview background color */
  733. OBSQTDisplay {
  734. qproperty-displayBackgroundColor: #28282A;
  735. }
  736. /* Preview/Program labels */
  737. * [themeID="previewProgramLabels"] {
  738. font-size: 18px;
  739. font-weight: bold;
  740. color: rgb(122,121,122);
  741. }
  742. /* Settings Icons */
  743. OBSBasicSettings {
  744. qproperty-generalIcon: url(./Dark/settings/general.svg);
  745. qproperty-streamIcon: url(./Dark/settings/stream.svg);
  746. qproperty-outputIcon: url(./Dark/settings/output.svg);
  747. qproperty-audioIcon: url(./Dark/settings/audio.svg);
  748. qproperty-videoIcon: url(./Dark/settings/video.svg);
  749. qproperty-hotkeysIcon: url(./Dark/settings/hotkeys.svg);
  750. qproperty-advancedIcon: url(./Dark/settings/advanced.svg);
  751. }
  752. OBSBasicSettings QListWidget::item {
  753. padding-top: 5px;
  754. padding-bottom: 5px;
  755. }
  756. /* Locked CheckBox */
  757. LockedCheckBox {
  758. outline: none;
  759. background: transparent;
  760. padding: 0px;
  761. }
  762. LockedCheckBox::indicator {
  763. width: 16px;
  764. height: 16px;
  765. }
  766. LockedCheckBox::indicator:checked {
  767. image: url(./Dark/locked.svg);
  768. }
  769. LockedCheckBox::indicator:unchecked {
  770. image: url(:res/images/unlocked.svg);
  771. }
  772. LockedCheckBox::indicator:checked:hover {
  773. image: url(./Dark/locked.svg);
  774. }
  775. LockedCheckBox::indicator:unchecked:hover {
  776. image: url(:res/images/unlocked.svg);
  777. }
  778. /* Visibilty CheckBox */
  779. VisibilityCheckBox {
  780. outline: none;
  781. background: transparent;
  782. padding: 0px;
  783. }
  784. VisibilityCheckBox::indicator {
  785. width: 16px;
  786. height: 16px;
  787. }
  788. VisibilityCheckBox::indicator:checked {
  789. image: url(./Dark/visible.svg);
  790. }
  791. VisibilityCheckBox::indicator:unchecked {
  792. image: url(:res/images/invisible.svg);
  793. }
  794. VisibilityCheckBox::indicator:checked:hover {
  795. image: url(./Dark/visible.svg);
  796. }
  797. VisibilityCheckBox::indicator:unchecked:hover {
  798. image: url(:res/images/invisible.svg);
  799. }
  800. * [themeID="trashIcon"] {
  801. qproperty-icon: url(./Dark/trash.svg);
  802. }
  803. * [themeID="revertIcon"] {
  804. qproperty-icon: url(./Dark/revert.svg);
  805. }