style.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980
  1. /********************
  2. * LMMS style sheet *
  3. ********************/
  4. /* most foreground text items */
  5. QLabel, QTreeWidget, QListWidget, QGroupBox, QMenuBar {
  6. color: #d1d8e4;
  7. }
  8. QTreeView {
  9. outline: none;
  10. font-size: 12px;
  11. }
  12. QTreeWidget::item {
  13. padding: 1px;
  14. }
  15. QTreeWidget::item:hover,
  16. QTreeWidget::branch:hover {
  17. background-color: #3C444E;
  18. padding-left: 0px;
  19. }
  20. QTreeWidget::item:selected,
  21. QTreeWidget::branch:selected {
  22. background-color: #17793b;
  23. padding-left: 0px;
  24. }
  25. QTreeView::branch:has-children:open {
  26. border-image: url("resources:open_branch.png") 0;
  27. }
  28. QTreeView::branch:has-children:closed {
  29. border-image: url("resources:closed_branch.png") 0;
  30. }
  31. QMdiArea {
  32. background-color: #111314;
  33. }
  34. FileBrowser QCheckBox
  35. {
  36. font-size: 10px;
  37. color: white;
  38. }
  39. Knob {
  40. qproperty-lineInactiveColor: rgb(120, 120, 120);
  41. qproperty-arcInactiveColor: rgba(120, 120, 120, 70);
  42. }
  43. AutomationEditor {
  44. color: #ffffff;
  45. background-color: #141616;
  46. qproperty-backgroundShade: rgba(255, 255, 255, 15);
  47. qproperty-vertexColor: #6749C2;
  48. qproperty-crossColor: rgba(215, 210, 254, 150);
  49. /* Grid colors */
  50. qproperty-lineColor: #292929;
  51. qproperty-beatLineColor: #4a3bba;
  52. qproperty-barLineColor: #8173fe;
  53. qproperty-graphColor: rgba(69,42,153,180);
  54. qproperty-scaleColor: #262b30;
  55. }
  56. /* text box */
  57. QLineEdit {
  58. border-radius: 4px;
  59. border: 1px;
  60. background: #101213;
  61. }
  62. QLineEdit:read-only {
  63. border-style: none;
  64. background: transparent;
  65. }
  66. /* text box when it wants text */
  67. QLineEdit:focus {
  68. border: 1px solid #0bd556;
  69. }
  70. /* Set color and selection background color for various inputs.
  71. SpinBoxes are used in QInputDialogs */
  72. QTextEdit, QLineEdit:focus, QComboBox:focus, QSpinBox:focus, QDoubleSpinBox:focus {
  73. color: #d1d8e4;
  74. selection-background-color: #17793b;
  75. }
  76. QToolTip {
  77. border-radius: 4px;
  78. background: #040506;
  79. color: #d1d8e4;
  80. }
  81. TextFloat {
  82. background: #040506;
  83. color: #d1d8e4;
  84. }
  85. /* splash screen text */
  86. QSplashScreen QLabel {
  87. color: white;
  88. }
  89. QMenu {
  90. border-top: 2px solid #08993E;
  91. background-color: #15191c;
  92. font-size: 11px;
  93. }
  94. QMenu::separator {
  95. height: 1.0px;
  96. background: #323940;
  97. margin-left: 0x;
  98. margin-right: 0px;
  99. }
  100. QMenu::item {
  101. color: #d1d8e4;
  102. padding: 2px 35px 2px 23px;
  103. margin: 3px 0px 3px 0px;
  104. }
  105. QMenu::item:selected {
  106. color: #d1d8e4;
  107. font-weight: normal;
  108. background-color: #21272b;
  109. }
  110. QMenu::item:disabled {
  111. color: #515459;
  112. background-color: #262b30;
  113. font-size: 12px;
  114. font-weight: normal;
  115. padding: 4px 32px 4px 20px;
  116. }
  117. QMenu::icon {
  118. margin: 3px;
  119. }
  120. QMenu::indicator {
  121. width: 16;
  122. height: 16;
  123. opacity: 0;
  124. border: 1px solid #101213;
  125. border-radius: 2px;
  126. background-color: #101213;
  127. }
  128. QMenu::indicator:checked {
  129. image: url("resources:apply.png");
  130. }
  131. QMenu::indicator:selected {
  132. image: url("resources:apply-selected.png");
  133. border: 1px solid #101213;
  134. background-color: #101213;
  135. }
  136. PositionLine {
  137. qproperty-tailGradient: true;
  138. qproperty-lineColor: rgb(255, 255, 255);
  139. }
  140. PianoRoll {
  141. background-color: #141616;
  142. qproperty-backgroundShade: rgba(255, 255, 255, 10);
  143. qproperty-noteModeColor: #0bd556;
  144. qproperty-noteColor: #0bd556;
  145. qproperty-noteTextColor: #ffffff;
  146. qproperty-noteOpacity: 165;
  147. qproperty-noteBorders: false; /* boolean property, set false to have borderless notes */
  148. qproperty-selectedNoteColor: #064d79;
  149. qproperty-ghostNoteColor: #000000;
  150. qproperty-ghostNoteTextColor: #ffffff;
  151. qproperty-ghostNoteOpacity: 50;
  152. qproperty-ghostNoteBorders: false;
  153. qproperty-barColor: #078f3a;
  154. qproperty-markedSemitoneColor: rgba(255, 255, 255, 30);
  155. qproperty-razorCutLine: rgba(255, 0, 0, 255);
  156. /* Piano keys */
  157. qproperty-whiteKeyWidth: 64;
  158. qproperty-whiteKeyActiveTextColor: #000;
  159. qproperty-whiteKeyActiveTextShadow: #fff;
  160. qproperty-whiteKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #43e97b, stop:1 #3bcd6c);
  161. qproperty-whiteKeyInactiveTextColor: #000;
  162. qproperty-whiteKeyInactiveTextShadow: #fff;
  163. qproperty-whiteKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #eeeeee, stop:1 #ffffff);
  164. qproperty-blackKeyWidth: 48;
  165. qproperty-blackKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #43e97b, stop:1 #3bcd6c);
  166. qproperty-blackKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #333, stop:1 #000);
  167. /* Grid colors */
  168. qproperty-lineColor: #292929;
  169. qproperty-beatLineColor: #2d6b45;
  170. qproperty-barLineColor: #42a065;
  171. /* Text on the white piano keys */
  172. qproperty-textColor: #000;
  173. qproperty-textColorLight: #0bd556;
  174. qproperty-textShadow: #fff;
  175. }
  176. TabWidget {
  177. background-color: #262b30;
  178. qproperty-tabText: rgba(255, 255, 255, 180);
  179. qproperty-tabTitleText: #fff;
  180. qproperty-tabSelected: #323940;
  181. qproperty-tabBackground: #181b1f;
  182. qproperty-tabBorder: #181b1f;
  183. }
  184. GroupBox {
  185. background-color: #262b30;
  186. }
  187. /* main toolbar oscilloscope - can have transparent bg now */
  188. Oscilloscope {
  189. background: none;
  190. border: none;
  191. qproperty-normalColor: rgb(71, 253, 133);
  192. qproperty-clippingColor: rgb(255, 64, 64);
  193. }
  194. /* main toolbar cpu load widget - this can have transparent bg now */
  195. CPULoadWidget {
  196. border: none;
  197. background: url(resources:cpuload_bg.png);
  198. }
  199. /* scrollbar: trough */
  200. QScrollBar:horizontal {
  201. border-top: 3px solid #262b30;
  202. background: #262b30;
  203. height: 12px;
  204. margin: 0px 12px;
  205. }
  206. QScrollBar:vertical {
  207. border-left: 3px solid #262b30;
  208. background: #262b30;
  209. width: 12px;
  210. margin: 12px 0px;
  211. }
  212. /* scrollbar: trough clicky things */
  213. QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal,
  214. QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
  215. background: none;
  216. }
  217. QScrollBar::add-page:horizontal:pressed, QScrollBar::sub-page:horizontal:pressed,
  218. QScrollBar::add-page:vertical:pressed, QScrollBar::sub-page:vertical:pressed {
  219. background: rgba(0,0,0,50);
  220. }
  221. /* scrollbar: handles (sliders) */
  222. QScrollBar::handle:horizontal {
  223. background: #3f4750;
  224. border: none;
  225. border-radius: 4px;
  226. min-width: 24px;
  227. }
  228. QScrollBar::handle:horizontal:hover {
  229. background: #525e69;
  230. }
  231. QScrollBar::handle:horizontal:pressed {
  232. background: rgba(11,213,86,100);
  233. }
  234. QScrollBar::handle:vertical {
  235. background: #3f4750;
  236. border: none;
  237. border-radius: 4px;
  238. min-height: 24px;
  239. }
  240. QScrollBar::handle:vertical:hover {
  241. background: #525e69;
  242. }
  243. QScrollBar::handle:vertical:pressed {
  244. background: rgba(11,213,86,100);
  245. }
  246. QScrollBar::handle:horizontal:disabled, QScrollBar::handle:vertical:disabled {
  247. background: #262b30;
  248. border-radius: 1px;
  249. border: none;
  250. }
  251. EffectRackView QScrollBar::handle:vertical:disabled {
  252. background: #3f4750;
  253. border: none;
  254. border-radius: 4px;
  255. }
  256. /* arrow buttons */
  257. QScrollBar::add-line, QScrollBar::sub-line {
  258. background: #262b30;
  259. border-radius: 0px;
  260. border: none;
  261. subcontrol-origin: margin;
  262. }
  263. QScrollBar::add-line:horizontal { subcontrol-position: right; width: 12px;}
  264. QScrollBar::sub-line:horizontal { subcontrol-position: left; width: 12px;}
  265. QScrollBar::add-line:vertical { subcontrol-position: bottom; height: 12px;}
  266. QScrollBar::sub-line:vertical { subcontrol-position: top; height: 12px;}
  267. QScrollBar::add-line:hover, QScrollBar::sub-line:hover {
  268. background: #262b30;
  269. }
  270. QScrollBar::add-line:pressed, QScrollBar::sub-line:pressed {
  271. background: #262b30;
  272. }
  273. QScrollBar::add-line:disabled, QScrollBar::sub-line:disabled {
  274. background: #262b30;
  275. }
  276. /* arrow button arrows */
  277. QScrollBar::left-arrow:horizontal, QScrollBar::right-arrow:horizontal,
  278. QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical {
  279. border: none;
  280. background-color: none;
  281. width: 5px;
  282. height: 5px;
  283. }
  284. QScrollBar::left-arrow:horizontal, QScrollBar::right-arrow:horizontal {
  285. margin-top: 3px;
  286. }
  287. QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical {
  288. margin-left: 3px;
  289. }
  290. QScrollBar::left-arrow:horizontal { background-image: url(resources:sbarrow_left.png);}
  291. QScrollBar::right-arrow:horizontal { background-image: url(resources:sbarrow_right.png);}
  292. QScrollBar::up-arrow:vertical { background-image: url(resources:sbarrow_up.png);}
  293. QScrollBar::down-arrow:vertical { background-image: url(resources:sbarrow_down.png);}
  294. QScrollBar::left-arrow:horizontal:disabled { background-image: url(resources:sbarrow_left_d.png);}
  295. QScrollBar::right-arrow:horizontal:disabled { background-image: url(resources:sbarrow_right_d.png);}
  296. QScrollBar::up-arrow:vertical:disabled { background-image: url(resources:sbarrow_up_d.png);}
  297. QScrollBar::down-arrow:vertical:disabled { background-image: url(resources:sbarrow_down_d.png);}
  298. EffectRackView QScrollBar::up-arrow:vertical:disabled { background-image: url(resources:sbarrow_up.png);}
  299. EffectRackView QScrollBar::down-arrow:vertical:disabled { background-image: url(resources:sbarrow_down.png);}
  300. /* background for song editor and bb-editor */
  301. TrackContainerView QFrame {
  302. background-color: #262b30;
  303. }
  304. /* background for track controls */
  305. TrackView > QWidget {
  306. background-color: #3B424A;
  307. }
  308. /* autoscroll, loop, stop behaviour toggle buttons */
  309. /* track background colors */
  310. TrackContentWidget {
  311. qproperty-darkerColor: #0C0E0F;
  312. qproperty-lighterColor: #14151A;
  313. qproperty-gridColor: #262B30;
  314. qproperty-embossColor: rgba( 0, 0, 0, 0 );
  315. }
  316. /* gear button in tracks */
  317. TrackOperationsWidget > QPushButton {
  318. max-height: 26px;
  319. max-width: 26px;
  320. min-height: 26px;
  321. min-width: 26px;
  322. background: none;
  323. border: none;
  324. }
  325. TrackOperationsWidget > QPushButton::menu-indicator {
  326. image: url(resources:trackop.png);
  327. subcontrol-origin: padding;
  328. subcontrol-position: center;
  329. position: relative;
  330. top: 1px;
  331. }
  332. TrackOperationsWidget > QPushButton::menu-indicator:pressed,
  333. TrackOperationsWidget > QPushButton::menu-indicator:checked {
  334. image: url(resources:trackop.png);
  335. position: relative;
  336. top: 2px;
  337. }
  338. /* font sizes */
  339. nameLabel, effectLabel, sf2InstrumentView > QLabel {
  340. font-size:10px;
  341. }
  342. /* main toolbar sliders (master vol, master pitch) */
  343. AutomatableSlider::groove:vertical {
  344. background: #040506;
  345. border: none;
  346. border-radius: 2px;
  347. width: 2px;
  348. margin: 2px 2px;
  349. }
  350. AutomatableSlider::handle:vertical {
  351. background: none;
  352. border-image: url(resources:main_slider.png);
  353. width: 26px;
  354. height: 10px;
  355. border-radius: 2px;
  356. margin: -4px -12px -2px;
  357. }
  358. /* window that shows up when you add effects */
  359. EffectSelectDialog QScrollArea {
  360. background: #262b30;
  361. }
  362. /* the inner boxes in LADSPA effect windows */
  363. EffectControlDialog QGroupBox {
  364. background: #262b30;
  365. margin-top: 1ex;
  366. padding: 10px 2px 1px;
  367. border-radius: 4px;
  368. border: none;
  369. }
  370. /* the inner box titles when present (channel 1, channel 2...) */
  371. EffectControlDialog QGroupBox::title {
  372. subcontrol-origin: margin;
  373. subcontrol-position: top center;
  374. background: #262b30;
  375. color: #d1d8e4;
  376. border-radius: 2px;
  377. border: none;
  378. padding: 2px 1px;
  379. }
  380. /* main toolbar */
  381. QWidget#mainToolbar {
  382. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #373f47, stop:1 #1d2122);
  383. }
  384. /* smaller toolbars */
  385. QToolBar {
  386. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #434b57, stop:1 #22252c);
  387. border: none;
  388. padding: 2px;
  389. spacing: 0;
  390. }
  391. QToolBar::separator {
  392. border: none;
  393. width: 5px;
  394. }
  395. /* all tool buttons */
  396. QToolButton {
  397. margin: 1px;
  398. padding: 2px 2px 2px 2px;
  399. border-top: 1px solid #778394;
  400. border-bottom: 1px solid #1e2226;
  401. border-radius: 2px;
  402. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1 stop:0 #636c7a, stop:1 #343840);
  403. font-size:10px;
  404. color: #fff;
  405. }
  406. QToolButton:hover {
  407. border-top: 1px solid #909eb3;
  408. border-bottom: 1px solid #1e2226;
  409. border-radius: 2px;
  410. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #7c8799, stop:1 #343840)
  411. }
  412. QToolButton:pressed {
  413. border-top: 1px solid #778394;
  414. border-bottom: 1px solid #1e2226;
  415. border-radius: 2px;
  416. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #636c7a, stop:1 #262b30);
  417. }
  418. QToolButton:checked {
  419. border-top: 1px solid #1b1f22;
  420. border-bottom: 1px solid #4a515e;
  421. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #1b1f22, stop:1 #13161a);
  422. background-image: url(resources:shadow_p.png);
  423. }
  424. /* track label buttons - the part that contains the icon and track title */
  425. TrackLabelButton {
  426. background-color: #3B424A;
  427. border: 1px solid #3B424A;
  428. font-size: 11px;
  429. font-weight: normal;
  430. padding: 2px 1px;
  431. }
  432. TrackLabelButton:hover {
  433. background: #3B424A;
  434. border: 1px solid #515B66;
  435. border-radius: none;
  436. font-size: 11px;
  437. font-weight: normal;
  438. padding: 2px 1px;
  439. }
  440. TrackLabelButton:pressed {
  441. background: #262B30;
  442. border-radius: none;
  443. font-size: 11px;
  444. font-weight: normal;
  445. padding: 2px 1px;
  446. }
  447. TrackLabelButton:checked {
  448. border: 1px solid #485059;
  449. background: #1C1F24;
  450. background-image: url(resources:track_shadow_p.png);
  451. border-radius: none;
  452. font-size: 11px;
  453. font-weight: normal;
  454. padding: 2px 1px;
  455. }
  456. TrackLabelButton:checked:pressed {
  457. border: 1px solid #2f353b;
  458. background: #0e1012;
  459. background-image: url(resources:track_shadow_p.png);
  460. font-size: 11px;
  461. padding: 2px 1px;
  462. font-weight: solid;
  463. }
  464. /* sidebar, sidebar buttons */
  465. SideBar {
  466. subcontrol-position: center;
  467. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #1D2122, stop:1 #262B30);
  468. }
  469. SideBar QToolButton {
  470. background: none;
  471. border: none;
  472. font-size: 12px;
  473. }
  474. SideBar QToolButton:hover {
  475. background: none;
  476. border: none;
  477. font-size: 12px;
  478. }
  479. SideBar QToolButton:pressed {
  480. background: none;
  481. border: none;
  482. font-size: 12px;
  483. }
  484. SideBar QToolButton:checked {
  485. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #4b525b, stop:1 #2f333a);
  486. border: none;
  487. font-size: 12px;
  488. }
  489. /* Instrument plugin list */
  490. PluginDescList {
  491. background-color: #131517;
  492. }
  493. PluginDescWidget {
  494. border-top: 1px solid #3E474F;
  495. border-bottom: 1px solid #101314;
  496. border-radius: 2px;
  497. background-color: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #2E343B, stop:1 #1E2326);
  498. color: #d1d8e4;
  499. font-weight: bold;
  500. margin: 0px;
  501. }
  502. PluginDescWidget:hover {
  503. background: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #7C8799, stop:1 #343840);
  504. color: #d1d8e4;
  505. }
  506. /* piano widget */
  507. PianoView {
  508. background-color: #14171a;
  509. }
  510. /* font sizes for text buttons */
  511. FxMixerView QPushButton, EffectRackView QPushButton, ControllerRackView QPushButton {
  512. font-size: 10px;
  513. }
  514. FxLine {
  515. background: #14161A;
  516. color: #d1d8e4;
  517. qproperty-backgroundActive: #3B424A;
  518. qproperty-strokeOuterActive: #262B30;
  519. qproperty-strokeOuterInactive: #262B30;
  520. qproperty-strokeInnerActive: #0C0D0F;
  521. qproperty-strokeInnerInactive: #0C0D0F;
  522. }
  523. /* persistent peak markers for fx peak meters */
  524. Fader {
  525. qproperty-peakGreen: #0ad45c;
  526. qproperty-peakYellow: #d6ec52;
  527. qproperty-peakRed: #c12038;
  528. }
  529. TimeLineWidget {
  530. /* font-size only supports px and pt. */
  531. font-size: 7pt;
  532. /* lengths also support em. This will make sure that the height
  533. will always change in the same proportion as the font size
  534. defined above.
  535. If you want a fixed size set min and max to the same value. */
  536. min-height: 1.5em;
  537. max-height: 1.5em;
  538. /* Properties for the loop indicator rectangle in inactive state:
  539. - LoopColor: Color of the outermost border
  540. - LoopBrush: Brush to paint the main portion of the rectangle
  541. - LoopInnerColor: Color used to paint the inlayed border */
  542. qproperty-inactiveLoopColor: #3B424A;
  543. qproperty-inactiveLoopBrush: #3B424A;
  544. qproperty-inactiveLoopInnerColor: #3B424A;
  545. /* Properties for the loop indicator rectangle in active state.
  546. See above for detailed description. */
  547. qproperty-activeLoopColor: #21A14F;
  548. qproperty-activeLoopBrush: #21A14F;
  549. qproperty-activeLoopInnerColor: #21A14F;
  550. /* Vertical padding for the loop indicator rectangle.
  551. A value of zero draws the rectangle at the full height of the widget. */
  552. qproperty-loopRectangleVerticalPadding: 1;
  553. qproperty-barLineColor: rgb( 192, 192, 192 );
  554. qproperty-barNumberColor: rgb( 192, 192, 192 );
  555. }
  556. QTreeView {
  557. alternate-background-color: #111314;
  558. }
  559. TrackContainerView QLabel
  560. {
  561. background: none;
  562. }
  563. /* Patterns */
  564. /* common pattern colors */
  565. TrackContentObjectView {
  566. qproperty-mutedColor: rgba(255,255,255,100);
  567. qproperty-mutedBackgroundColor: #373d48;
  568. qproperty-selectedColor: #006B65;
  569. qproperty-BBPatternBackground: #373d48;
  570. qproperty-textColor: #fff;
  571. qproperty-textBackgroundColor: rgba(0, 0, 0, 75);
  572. qproperty-textShadowColor: rgba(0,0,0,200);
  573. qproperty-gradient: false; /* boolean property, set true to have a gradient */
  574. /* finger tip offset of cursor */
  575. qproperty-mouseHotspotHand: 7px 2px;
  576. font-size: 11px;
  577. }
  578. /* instrument pattern */
  579. PatternView {
  580. background-color: #21A14F;
  581. color: rgba(255,255,255,220);
  582. qproperty-noteFillColor: rgba(255, 255, 255, 220);
  583. qproperty-noteBorderColor: rgb(33, 161, 79);
  584. qproperty-mutedNoteFillColor: rgba(100, 100, 100, 220);
  585. qproperty-mutedNoteBorderColor: rgb(55, 61, 72);
  586. }
  587. /* sample track pattern */
  588. SampleTCOView {
  589. background-color: #DE7C05;
  590. color: #FFE8CD;
  591. }
  592. /* automation pattern */
  593. AutomationPatternView {
  594. background-color: #663DE1;
  595. color: rgba(255,255,255,90);
  596. }
  597. /* bb-pattern */
  598. BBTCOView {
  599. background-color: #20BDB2; /* default colour for bb-tracks */
  600. }
  601. /* Subwindows in MDI-Area */
  602. SubWindow {
  603. color: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 #090909, stop:0.05 #3D454F, stop:1 #262B30);
  604. qproperty-activeColor: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1 stop:0 #090909, stop:0.05 #636c7a, stop:1 #343840);
  605. qproperty-textShadowColor: #000;
  606. qproperty-borderColor: #5c6b7a;
  607. }
  608. /* Subwindow title text */
  609. SubWindow > QLabel {
  610. color: #d1d8e4;
  611. font-size: 12px;
  612. font-style: normal;
  613. }
  614. /* SubWindow titlebar button */
  615. SubWindow > QPushButton {
  616. background-color: rgba( 255, 255, 255, 0% );
  617. border-width: 0px;
  618. border-color: none;
  619. border-style: none;
  620. }
  621. SubWindow > QPushButton:hover{
  622. background-color: rgba( 255, 255, 255, 15% );
  623. border-width: 1px;
  624. border-color: rgba( 0, 0, 0, 20% );
  625. border-style: solid;
  626. border-radius: 2px;
  627. }
  628. /* Plugins */
  629. TripleOscillatorView Knob {
  630. color: rgb(255,255,255);
  631. qproperty-outerColor: rgb(255,255,255);
  632. qproperty-innerRadius: 2;
  633. qproperty-outerRadius: 7;
  634. qproperty-centerPointX: 13.0;
  635. qproperty-centerPointY: 14.0;
  636. qproperty-lineWidth: 2;
  637. }
  638. kickerInstrumentView Knob#smallKnob {
  639. color: #595959;
  640. qproperty-outerColor: black;
  641. qproperty-innerRadius: 3;
  642. qproperty-outerRadius: 11.0;
  643. qproperty-centerPointX: 14.5;
  644. qproperty-centerPointY: 14.5;
  645. qproperty-lineWidth: 2;
  646. }
  647. kickerInstrumentView Knob#largeKnob {
  648. color: #0c3b89;
  649. qproperty-outerColor: #519fff;
  650. qproperty-innerRadius: 12.0;
  651. qproperty-outerRadius: 14.5;
  652. qproperty-centerPointX: 17.0;
  653. qproperty-centerPointY: 17.0;
  654. qproperty-lineWidth: 3;
  655. }
  656. AudioFileProcessorView Knob {
  657. color: rgb(240, 147, 14);
  658. qproperty-outerColor: rgb(30, 35, 37);
  659. qproperty-innerRadius: 4;
  660. qproperty-outerRadius: 11.2;
  661. qproperty-centerPointX: 18.5;
  662. qproperty-centerPointY: 16.5;
  663. qproperty-lineWidth: 3;
  664. }
  665. organicInstrumentView Knob {
  666. color: rgb(124, 207, 98);
  667. qproperty-outerColor: rgb(13, 42, 4);
  668. qproperty-innerRadius: 2;
  669. qproperty-outerRadius: 7.5;
  670. qproperty-centerPointX: 10.5;
  671. qproperty-centerPointY: 10.5;
  672. qproperty-lineWidth: 1.5;
  673. }
  674. organicInstrumentView Knob#harmKnob {
  675. color: rgb(205, 98, 216);
  676. qproperty-outerColor: rgb(18, 4, 18);
  677. }
  678. organicInstrumentView Knob#fx1Knob,
  679. organicInstrumentView Knob#volKnob {
  680. color: rgb(157, 157, 157);
  681. qproperty-outerColor: rgb(37, 37, 37);
  682. qproperty-innerRadius: 4;
  683. qproperty-outerRadius: 10.0;
  684. qproperty-centerPointX: 18.5;
  685. qproperty-centerPointY: 13.8;
  686. qproperty-lineWidth: 2;
  687. }
  688. sf2InstrumentView Knob {
  689. color: #ff00ea;
  690. qproperty-outerColor: rgb(20, 5, 18);
  691. qproperty-innerRadius: 2;
  692. qproperty-outerRadius: 9.2;
  693. qproperty-centerPointX: 15.5;
  694. qproperty-centerPointY: 15.42;
  695. qproperty-lineWidth: 2;
  696. }
  697. sfxrInstrumentView Knob {
  698. color: #000;
  699. qproperty-outerColor: rgb(194, 177, 145);
  700. qproperty-innerRadius: 2;
  701. qproperty-outerRadius: 9;
  702. qproperty-lineWidth: 2;
  703. }
  704. sfxrInstrumentView Knob#envKnob {
  705. color: #263352;
  706. qproperty-outerColor: #4b66a4;
  707. }
  708. sfxrInstrumentView Knob#freqKnob {
  709. color: #1e4a22;
  710. qproperty-outerColor: #3c9544;
  711. }
  712. sfxrInstrumentView Knob#changeKnob {
  713. color: #591c1c;
  714. qproperty-outerColor: #b23737;
  715. }
  716. sfxrInstrumentView Knob#sqrKnob {
  717. color: #3b2714;
  718. qproperty-outerColor: #724c27;
  719. }
  720. sfxrInstrumentView Knob#repeatKnob {
  721. color: #292929;
  722. qproperty-outerColor: #515151;
  723. }
  724. sfxrInstrumentView Knob#phaserKnob {
  725. color: #144c4d;
  726. qproperty-outerColor: #299899;
  727. }
  728. sfxrInstrumentView Knob#filterKnob {
  729. color: #47224c;
  730. qproperty-outerColor: #8e4397;
  731. }
  732. opl2instrumentView Knob {
  733. color: rgb(128,128,128);
  734. qproperty-outerColor: rgb(255,255,255);
  735. qproperty-innerRadius: 2;
  736. qproperty-outerRadius: 9;
  737. qproperty-lineWidth: 2;
  738. }
  739. sidInstrumentView Knob {
  740. color: rgb(113,95,80);
  741. qproperty-outerColor: rgb( 255,255,255 );
  742. qproperty-innerRadius: 2;
  743. qproperty-outerRadius: 7;
  744. qproperty-lineWidth: 2;
  745. }
  746. WatsynView Knob {
  747. qproperty-innerRadius: 1;
  748. qproperty-outerRadius: 7;
  749. qproperty-centerPointX: 9.5;
  750. qproperty-centerPointY: 9.5;
  751. qproperty-lineWidth: 2;
  752. }
  753. WatsynView Knob#aKnob {
  754. color: #43b2ff;
  755. qproperty-outerColor: #43b2ff;
  756. }
  757. WatsynView Knob#bKnob {
  758. color: #fc5431;
  759. qproperty-outerColor: #fc5431;
  760. }
  761. WatsynView Knob#mixKnob {
  762. color: #43ff82;
  763. qproperty-outerColor: #43ff82;
  764. qproperty-outerRadius: 13;
  765. qproperty-centerPointX: 15.5;
  766. qproperty-centerPointY: 15.5;
  767. }
  768. WatsynView Knob#mixenvKnob {
  769. color: #43ff82;
  770. qproperty-outerColor: #43ff82;
  771. }
  772. WatsynView Knob#xtalkKnob {
  773. color: #fb50fb;
  774. qproperty-outerColor: #fb50fb;
  775. }
  776. MonstroView Knob {
  777. color: #ffffff;
  778. qproperty-outerColor: #aaaaaa;
  779. qproperty-outerRadius: 9;
  780. qproperty-innerRadius: 6;
  781. qproperty-centerPointX: 10;
  782. qproperty-centerPointY: 10;
  783. qproperty-lineWidth: 2.5;
  784. }
  785. NesInstrumentView Knob {
  786. color: #e7231b;
  787. qproperty-outerColor: #fff;
  788. qproperty-outerRadius: 11.0;
  789. qproperty-innerRadius: 8.0;
  790. qproperty-centerPointX: 14.5;
  791. qproperty-centerPointY: 14.5;
  792. qproperty-lineWidth: 2;
  793. }
  794. /* palette information */
  795. LmmsPalette {
  796. qproperty-background: #262b30;
  797. qproperty-windowText: #1de276;
  798. qproperty-base: #101213;
  799. qproperty-text: #d1d8e4;
  800. qproperty-button: #3f4750;
  801. qproperty-shadow: rgb(0,0,0);
  802. qproperty-buttonText: #d1d8e4;
  803. qproperty-brightText: #d1d8e4;
  804. qproperty-highlight: #262b30;
  805. qproperty-highlightedText: #d1d8e4;
  806. }