style.css 23 KB

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