defaultTheme.json 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. {
  2. "id": "defaultTheme",
  3. "caption": "Default",
  4. "icon": "dashboard-sun",
  5. "order": 1,
  6. "variables": {
  7. "UserPaletteColor": [{
  8. "id": "transparent",
  9. "label": "transparent",
  10. "value": "transparent"
  11. }, {
  12. "id": "color1",
  13. "label": "white",
  14. "value": "#FFFFFF"
  15. }, {
  16. "id": "grayShade1",
  17. "label": "lightGrey",
  18. "value": "#f6f6f6"
  19. }, {
  20. "id": "color2",
  21. "label": "darkGrey",
  22. "value": "#808080"
  23. }, {
  24. "id": "color3",
  25. "label": "black",
  26. "value": "#000000"
  27. }, {
  28. "id": "color4",
  29. "label": "lightBlue",
  30. "value": "#6ccae0"
  31. }, {
  32. "id": "color5",
  33. "label": "darkBlue",
  34. "value": "#00558b"
  35. }, {
  36. "id": "color6",
  37. "label": "yellow",
  38. "value": "#f5ce22"
  39. }, {
  40. "id": "color7",
  41. "label": "orange",
  42. "value": "#cf6c1b"
  43. }, {
  44. "id": "color8",
  45. "label": "lime",
  46. "value": "#8dc945"
  47. }, {
  48. "id": "color9",
  49. "label": "green",
  50. "value": "#498313"
  51. }, {
  52. "id": "color10",
  53. "label": "peach",
  54. "value": "#f8a88d"
  55. }, {
  56. "id": "color11",
  57. "label": "red",
  58. "value": "#b61813"
  59. }],
  60. "ForegroundUserPaletteColor": [{
  61. "id": "transparent",
  62. "value": {
  63. "a": 0.6,
  64. "r": 0,
  65. "g": 0,
  66. "b": 0
  67. }
  68. }, {
  69. "id": "color1",
  70. "value": {
  71. "a": 0.6,
  72. "r": 0,
  73. "g": 0,
  74. "b": 0
  75. }
  76. }, {
  77. "id": "grayShade1",
  78. "value": {
  79. "a": 0.6,
  80. "r": 0,
  81. "g": 0,
  82. "b": 0
  83. }
  84. }, {
  85. "id": "color2",
  86. "value": {
  87. "a": 0.6,
  88. "r": 0,
  89. "g": 0,
  90. "b": 0
  91. }
  92. }, {
  93. "id": "color3",
  94. "value": {
  95. "a": 0.6,
  96. "r": 255,
  97. "g": 255,
  98. "b": 255
  99. }
  100. }, {
  101. "id": "color4",
  102. "value": {
  103. "a": 0.6,
  104. "r": 0,
  105. "g": 0,
  106. "b": 0
  107. }
  108. }, {
  109. "id": "color5",
  110. "value": {
  111. "a": 0.6,
  112. "r": 255,
  113. "g": 255,
  114. "b": 255
  115. }
  116. }, {
  117. "id": "color6",
  118. "value": {
  119. "a": 0.6,
  120. "r": 0,
  121. "g": 0,
  122. "b": 0
  123. }
  124. }, {
  125. "id": "color7",
  126. "value": {
  127. "a": 0.6,
  128. "r": 255,
  129. "g": 255,
  130. "b": 255
  131. }
  132. }, {
  133. "id": "color8",
  134. "value": {
  135. "a": 0.6,
  136. "r": 0,
  137. "g": 0,
  138. "b": 0
  139. }
  140. }, {
  141. "id": "color9",
  142. "value": {
  143. "a": 0.6,
  144. "r": 255,
  145. "g": 255,
  146. "b": 255
  147. }
  148. }, {
  149. "id": "color10",
  150. "value": {
  151. "a": 0.6,
  152. "r": 0,
  153. "g": 0,
  154. "b": 0
  155. }
  156. }, {
  157. "id": "color11",
  158. "value": {
  159. "a": 0.6,
  160. "r": 255,
  161. "g": 255,
  162. "b": 255
  163. }
  164. }, {
  165. "id": "colorBlack",
  166. "value": {
  167. "a": 0.6,
  168. "r": 0,
  169. "g": 0,
  170. "b": 0
  171. }
  172. }, {
  173. "id": "color12",
  174. "value": {
  175. "a": 0.8,
  176. "r": 255,
  177. "g": 255,
  178. "b": 255
  179. }
  180. }],
  181. "SecondaryForegroundUserPaletteColor": [{
  182. "id": "transparent",
  183. "value": {
  184. "a": 0.05,
  185. "r": 0,
  186. "g": 0,
  187. "b": 0
  188. }
  189. }, {
  190. "id": "color1",
  191. "value": {
  192. "a": 0.05,
  193. "r": 0,
  194. "g": 0,
  195. "b": 0
  196. }
  197. }, {
  198. "id": "grayShade1",
  199. "value": {
  200. "a": 0.05,
  201. "r": 0,
  202. "g": 0,
  203. "b": 0
  204. }
  205. }, {
  206. "id": "color2",
  207. "value": {
  208. "a": 0.05,
  209. "r": 0,
  210. "g": 0,
  211. "b": 0
  212. }
  213. }, {
  214. "id": "color3",
  215. "value": {
  216. "a": 0.20,
  217. "r": 255,
  218. "g": 255,
  219. "b": 255
  220. }
  221. }, {
  222. "id": "color4",
  223. "value": {
  224. "a": 0.05,
  225. "r": 0,
  226. "g": 0,
  227. "b": 0
  228. }
  229. }, {
  230. "id": "color5",
  231. "value": {
  232. "a": 0.05,
  233. "r": 255,
  234. "g": 255,
  235. "b": 255
  236. }
  237. }, {
  238. "id": "color6",
  239. "value": {
  240. "a": 0.05,
  241. "r": 0,
  242. "g": 0,
  243. "b": 0
  244. }
  245. }, {
  246. "id": "color7",
  247. "value": {
  248. "a": 0.05,
  249. "r": 255,
  250. "g": 255,
  251. "b": 255
  252. }
  253. }, {
  254. "id": "color8",
  255. "value": {
  256. "a": 0.05,
  257. "r": 0,
  258. "g": 0,
  259. "b": 0
  260. }
  261. }, {
  262. "id": "color9",
  263. "value": {
  264. "a": 0.05,
  265. "r": 255,
  266. "g": 255,
  267. "b": 255
  268. }
  269. }, {
  270. "id": "color10",
  271. "value": {
  272. "a": 0.05,
  273. "r": 0,
  274. "g": 0,
  275. "b": 0
  276. }
  277. }, {
  278. "id": "color11",
  279. "value": {
  280. "a": 0.15,
  281. "r": 255,
  282. "g": 255,
  283. "b": 255
  284. }
  285. }, {
  286. "id": "colorBlack",
  287. "value": {
  288. "a": 0.05,
  289. "r": 0,
  290. "g": 0,
  291. "b": 0
  292. }
  293. }],
  294. "TextWidgetColor1UserPaletteColor": [{
  295. "id": "transparent",
  296. "value": "#000000"
  297. }, {
  298. "id": "color1",
  299. "value": "#000000"
  300. }, {
  301. "id": "grayShade1",
  302. "value": "#000000"
  303. }, {
  304. "id": "color2",
  305. "value": "#f1f2f2"
  306. }, {
  307. "id": "color3",
  308. "value": "#f1f2f2"
  309. }, {
  310. "id": "color4",
  311. "value": "#f1f2f2"
  312. }, {
  313. "id": "color5",
  314. "value": "#f1f2f2"
  315. }, {
  316. "id": "color6",
  317. "value": "#58595b"
  318. }, {
  319. "id": "color7",
  320. "value": "#f1f2f2"
  321. }, {
  322. "id": "color8",
  323. "value": "#f1f2f2"
  324. }, {
  325. "id": "color9",
  326. "value": "#f1f2f2"
  327. }, {
  328. "id": "color10",
  329. "value": "#f1f2f2"
  330. }, {
  331. "id": "color11",
  332. "value": "#f1f2f2"
  333. }, {
  334. "id": "colorBlack",
  335. "value": "#f1f2f2"
  336. }],
  337. "TextWidgetColor2UserPaletteColor": [{
  338. "id": "transparent",
  339. "value": "#111111"
  340. }, {
  341. "id": "color1",
  342. "value": "#111111"
  343. }, {
  344. "id": "grayShade1",
  345. "value": "#111111"
  346. }, {
  347. "id": "color2",
  348. "value": "#111111"
  349. }, {
  350. "id": "color3",
  351. "value": "#eeeeee"
  352. }, {
  353. "id": "color4",
  354. "value": "#eeeeee"
  355. }, {
  356. "id": "color5",
  357. "value": "#eeeeee"
  358. }, {
  359. "id": "color6",
  360. "value": "#111111"
  361. }, {
  362. "id": "color7",
  363. "value": "#111111"
  364. }, {
  365. "id": "color8",
  366. "value": "#111111"
  367. }, {
  368. "id": "color9",
  369. "value": "#eeeeee"
  370. }, {
  371. "id": "color10",
  372. "value": "#111111"
  373. }, {
  374. "id": "color11",
  375. "value": "#eeeeee"
  376. }, {
  377. "id": "colorBlack",
  378. "value": "#111111"
  379. }],
  380. "TextWidgetColor3UserPaletteColor": [{
  381. "id": "transparent",
  382. "value": "#007ab6"
  383. }, {
  384. "id": "color1",
  385. "value": "#007ab6"
  386. }, {
  387. "id": "grayShade1",
  388. "value": "#007ab6"
  389. }, {
  390. "id": "color2",
  391. "value": "#f1f2f2"
  392. }, {
  393. "id": "color3",
  394. "value": "#007ab6"
  395. }, {
  396. "id": "color4",
  397. "value": "#007ab6"
  398. }, {
  399. "id": "color5",
  400. "value": "#f1f2f2"
  401. }, {
  402. "id": "color6",
  403. "value": "#007ab6"
  404. }, {
  405. "id": "color7",
  406. "value": "#f1f2f2"
  407. }, {
  408. "id": "color8",
  409. "value": "#007ab6"
  410. }, {
  411. "id": "color9",
  412. "value": "#f1f2f2"
  413. }, {
  414. "id": "color10",
  415. "value": "#007ab6"
  416. }, {
  417. "id": "color11",
  418. "value": "#f1f2f2"
  419. }, {
  420. "id": "colorBlack",
  421. "value": "#007ab6"
  422. }],
  423. "TextWidgetColor4UserPaletteColor": [{
  424. "id": "transparent",
  425. "value": "#962784"
  426. }, {
  427. "id": "color1",
  428. "value": "#962784"
  429. }, {
  430. "id": "grayShade1",
  431. "value": "#962784"
  432. }, {
  433. "id": "color2",
  434. "value": "#f1f2f2"
  435. }, {
  436. "id": "color3",
  437. "value": "#962784"
  438. }, {
  439. "id": "color4",
  440. "value": "#962784"
  441. }, {
  442. "id": "color5",
  443. "value": "#f1f2f2"
  444. }, {
  445. "id": "color6",
  446. "value": "#962784"
  447. }, {
  448. "id": "color7",
  449. "value": "#f1f2f2"
  450. }, {
  451. "id": "color8",
  452. "value": "#962784"
  453. }, {
  454. "id": "color9",
  455. "value": "#f1f2f2"
  456. }, {
  457. "id": "color10",
  458. "value": "#962784"
  459. }, {
  460. "id": "color11",
  461. "value": "#f1f2f2"
  462. }, {
  463. "id": "colorBlack",
  464. "value": "#962784"
  465. }],
  466. "DataWidgetFilterColor1UserPaletteColor": [{
  467. "id": "transparent",
  468. "value": "#0B9BDB"
  469. }, {
  470. "id": "color1",
  471. "value": "#0B9BDB"
  472. }, {
  473. "id": "grayShade1",
  474. "value": "#0B9BDB"
  475. }, {
  476. "id": "color2",
  477. "value": "#0B9BDB"
  478. }, {
  479. "id": "color3",
  480. "value": "#0B9BDB"
  481. }, {
  482. "id": "color4",
  483. "value": "#000000"
  484. }, {
  485. "id": "color5",
  486. "value": "#000000"
  487. }, {
  488. "id": "color6",
  489. "value": "#0B9BDB"
  490. }, {
  491. "id": "color7",
  492. "value": "#0B9BDB"
  493. }, {
  494. "id": "color8",
  495. "value": "#0B9BDB"
  496. }, {
  497. "id": "color9",
  498. "value": "#0B9BDB"
  499. }, {
  500. "id": "color10",
  501. "value": "#0B9BDB"
  502. }, {
  503. "id": "color11",
  504. "value": "#0B9BDB"
  505. }, {
  506. "id": "colorBlack",
  507. "value": "#0B9BDB"
  508. }],
  509. "TabTextColor": [{
  510. "id": "transparent",
  511. "value": "#343334"
  512. }, {
  513. "id": "color1",
  514. "value": "#343334"
  515. }, {
  516. "id": "grayShade1",
  517. "value": "#343334"
  518. }, {
  519. "id": "color2",
  520. "value": "#EAEAEA"
  521. }, {
  522. "id": "color3",
  523. "value": "#FFFFFF"
  524. }, {
  525. "id": "color4",
  526. "value": "#1D364D"
  527. }, {
  528. "id": "color5",
  529. "value": "#DEEDF7"
  530. }, {
  531. "id": "color6",
  532. "value": "#5B421A"
  533. }, {
  534. "id": "color7",
  535. "value": "#F5E8DE"
  536. }, {
  537. "id": "color8",
  538. "value": "#283912"
  539. }, {
  540. "id": "color9",
  541. "value": "#D7F4BD"
  542. }, {
  543. "id": "color10",
  544. "value": "#56251A"
  545. }, {
  546. "id": "color11",
  547. "value": "#FCCEC7"
  548. }],
  549. "TabSelectedLineColor": [{
  550. "id": "transparent",
  551. "value": "#1F57A4"
  552. }, {
  553. "id": "color1",
  554. "value": "#1F57A4"
  555. }, {
  556. "id": "grayShade1",
  557. "value": "#1F57A4"
  558. }, {
  559. "id": "color2",
  560. "value": "#EAEAEA"
  561. }, {
  562. "id": "color3",
  563. "value": "#FFFFFF"
  564. }, {
  565. "id": "color4",
  566. "value": "#1D364D"
  567. }, {
  568. "id": "color5",
  569. "value": "#DEEDF7"
  570. }, {
  571. "id": "color6",
  572. "value": "#5B421A"
  573. }, {
  574. "id": "color7",
  575. "value": "#F5E8DE"
  576. }, {
  577. "id": "color8",
  578. "value": "#283912"
  579. }, {
  580. "id": "color9",
  581. "value": "#D7F4BD"
  582. }, {
  583. "id": "color10",
  584. "value": "#56251A"
  585. }, {
  586. "id": "color11",
  587. "value": "#FCCEC7"
  588. }],
  589. "TabActionButtonColor":[{
  590. "id": "transparent",
  591. "value": "#343334"
  592. }, {
  593. "id": "color1",
  594. "value": "#343334"
  595. }, {
  596. "id": "grayShade1",
  597. "value": "#343334"
  598. }, {
  599. "id": "color2",
  600. "value": "#EAEAEA"
  601. }, {
  602. "id": "color3",
  603. "value": "#FFFFFF"
  604. }, {
  605. "id": "color4",
  606. "value": "#1D364D"
  607. }, {
  608. "id": "color5",
  609. "value": "#DEEDF7"
  610. }, {
  611. "id": "color6",
  612. "value": "#5B421A"
  613. }, {
  614. "id": "color7",
  615. "value": "#F5E8DE"
  616. }, {
  617. "id": "color8",
  618. "value": "#283912"
  619. }, {
  620. "id": "color9",
  621. "value": "#D7F4BD"
  622. }, {
  623. "id": "color10",
  624. "value": "#56251A"
  625. }, {
  626. "id": "color11",
  627. "value": "#FCCEC7"
  628. }],
  629. "TabPlusHoverColor": [{
  630. "id": "transparent",
  631. "value": "#1F57A4"
  632. }, {
  633. "id": "color1",
  634. "value": "#1F57A4"
  635. }, {
  636. "id": "grayShade1",
  637. "value": "#1F57A4"
  638. }, {
  639. "id": "color2",
  640. "value": "#343334"
  641. }, {
  642. "id": "color3",
  643. "value": "#C0BFC0"
  644. }, {
  645. "id": "color4",
  646. "value": "#D1F0F7"
  647. }, {
  648. "id": "color5",
  649. "value": "#1D364D"
  650. }, {
  651. "id": "color6",
  652. "value": "#FFFFFF"
  653. }, {
  654. "id": "color7",
  655. "value": "#482E1A"
  656. }, {
  657. "id": "color8",
  658. "value": "#D7F4BD"
  659. }, {
  660. "id": "color9",
  661. "value": "#283912"
  662. }, {
  663. "id": "color10",
  664. "value": "#F7E6E6"
  665. }, {
  666. "id": "color11",
  667. "value": "#56251A"
  668. }],
  669. "TabDividerColor": [{
  670. "id": "transparent",
  671. "value": "#EAEAEA"
  672. }, {
  673. "id": "color1",
  674. "value": "#EAEAEA"
  675. }, {
  676. "id": "grayShade1",
  677. "value": "#EAEAEA"
  678. }, {
  679. "id": "color2",
  680. "value": "#C0BFC0"
  681. }, {
  682. "id": "color3",
  683. "value": "#464646"
  684. }, {
  685. "id": "color4",
  686. "value": "#5FAAB2"
  687. }, {
  688. "id": "color5",
  689. "value": "#0277B2"
  690. }, {
  691. "id": "color6",
  692. "value": "#E5C025"
  693. }, {
  694. "id": "color7",
  695. "value": "#B26219"
  696. }, {
  697. "id": "color8",
  698. "value": "#74993A"
  699. }, {
  700. "id": "color9",
  701. "value": "#6BB218"
  702. }, {
  703. "id": "color10",
  704. "value": "#CC927F"
  705. }, {
  706. "id": "color11",
  707. "value": "#E51717"
  708. }],
  709. "DataPlayerPaletteColor": [{
  710. "id": "color1",
  711. "value": "#3B3B3B"
  712. }, {
  713. "id": "color2",
  714. "value": "#017AB4"
  715. }, {
  716. "id": "color3",
  717. "value": "#000000"
  718. }],
  719. "Color": [{
  720. "id": "uiColorTransparent",
  721. "value": "transparent"
  722. }, {
  723. "id": "uiColorGray1",
  724. "value": "#EAEAEA"
  725. }, {
  726. "id": "uiColorGray60",
  727. "value": "#595859"
  728. }, {
  729. "id": "uiColorGray80",
  730. "value": "#343334"
  731. }, {
  732. "id": "uiColorBlue60Alpha10",
  733. "value": "rgba(31,87,164,0.1)"
  734. }, {
  735. "id": "uiColor1",
  736. "value": "#000000"
  737. }, {
  738. "id": "uiColor2",
  739. "value": "#FFFFFF"
  740. }, {
  741. "id": "uiColor3",
  742. "value": "#1F1F1F"
  743. }, {
  744. "id": "uiColor4",
  745. "value": "#5b5b5b"
  746. }, {
  747. "id": "uiColor5",
  748. "value": "#ababab"
  749. }, {
  750. "id": "uiColor6",
  751. "value": "#d6d6d6"
  752. }, {
  753. "id": "uiColor7",
  754. "value": "#e6e6e6"
  755. }, {
  756. "id": "uiColor8",
  757. "value": "#f2f2f2"
  758. }, {
  759. "id": "uiColor9",
  760. "value": "#f5f5f5"
  761. }, {
  762. "id": "uiColor10",
  763. "value": "#1bbbe0"
  764. }, {
  765. "id": "uiColor11",
  766. "value": "#d6d6d6"
  767. }, {
  768. "id": "uiColor12",
  769. "value": "#68cae0"
  770. }, {
  771. "id": "uiColor13",
  772. "value": "#c0e5f0"
  773. }, {
  774. "id": "uiColor14",
  775. "value": "#d6d6d6"
  776. }, {
  777. "id": "uiColor15",
  778. "value": "#ebebeb"
  779. }, {
  780. "id": "uiColor16",
  781. "value": "#001d46"
  782. }, {
  783. "id": "uiColor17",
  784. "value": "#00a0c4"
  785. }, {
  786. "id": "uiColor18",
  787. "value": "#96d0e0"
  788. }, {
  789. "id": "uiColor19",
  790. "value": "#FFE5A3"
  791. }, {
  792. "id": "uiColor20",
  793. "value": "rgba(0,176,186, 0.2)"
  794. }, {
  795. "id": "uiColor21",
  796. "value": "#009abd"
  797. }, {
  798. "id": "uiColor22",
  799. "value": "#111111"
  800. }, {
  801. "id": "uiColor23",
  802. "value": "#007ab6"
  803. }, {
  804. "id": "uiColor24",
  805. "value": "#962784"
  806. }, {
  807. "id": "uiColor25",
  808. "value": "#404041"
  809. }, {
  810. "id": "uiColor26",
  811. "value": "#666666"
  812. }, {
  813. "id": "uiColor27",
  814. "value": "#d1d1d1"
  815. }, {
  816. "id": "uiColor28",
  817. "value": "#31424d"
  818. }, {
  819. "id": "uiColor29",
  820. "value": "#8dc945"
  821. }, {
  822. "id": "uiColor30",
  823. "value": "#2D74DA"
  824. }, {
  825. "id": "uiColor31",
  826. "value": {
  827. "a": 0.5,
  828. "r": 83,
  829. "g": 146,
  830. "b": 255
  831. }
  832. }, {
  833. "id": "uiColor32",
  834. "value": "#478400"
  835. }, {
  836. "id": "uiColor33",
  837. "value": "#d0edf5"
  838. }, {
  839. "id": "uiColor34",
  840. "value": "#323C3C"
  841. }, {
  842. "id": "uiColor35",
  843. "value": "#CAD4D2"
  844. }, {
  845. "id": "uiColor36",
  846. "value": "#DFF2FF"
  847. }, {
  848. "id": "uiColor37",
  849. "value": "#c0e6ff"
  850. }, {
  851. "id": "uiColor38",
  852. "value": "#ECECEC"
  853. }, {
  854. "id": "uiColor39",
  855. "value": "#9e9e9e"
  856. }, {
  857. "id": "uiColor40",
  858. "value": "#3e3e3e"
  859. }, {
  860. "id": "uiColor41",
  861. "value": "#d2ece7"
  862. }, {
  863. "id": "uiColor42",
  864. "value": "rgba(210, 236, 231, 0.5)"
  865. }, {
  866. "id": "uiColor43",
  867. "value": "rgba(223, 232, 232, 0.3)"
  868. }, {
  869. "id": "uiColor44",
  870. "value": "#AEB8B8"
  871. }, {
  872. "id": "uiColor45",
  873. "value": "#E8F5F3"
  874. }, {
  875. "id": "uiColor46",
  876. "value": "#343334"
  877. }, {
  878. "id": "uiColor47",
  879. "value": "#1f57a4"
  880. }, {
  881. "id": "uiColor48",
  882. "value": "#161616"
  883. }],
  884. "ColorPalette": [{
  885. "id": "colorPalette0",
  886. "label": "paletteLabel",
  887. "fillType": "simple",
  888. "fills": [
  889. "#319bd4",
  890. "#86c43b",
  891. "#f5ce22",
  892. "#cf6c1b",
  893. "#9380e8",
  894. "#8555b5",
  895. "#52d9bc",
  896. "#24a399",
  897. "#14665e",
  898. "#b4c8ed",
  899. "#77a3e0",
  900. "#396cb3",
  901. "#1d4273",
  902. "#c8d119",
  903. "#acb336",
  904. "#828a16",
  905. "#5a610f",
  906. "#e8b7cb",
  907. "#e086b6",
  908. "#b33681",
  909. "#73154d"
  910. ]
  911. }, {
  912. "id": "colorPalette1",
  913. "label": "paletteLabel",
  914. "fillType": "simple",
  915. "fills": [
  916. "#836aa1",
  917. "#66abc0",
  918. "#e29557",
  919. "#91a6ce",
  920. "#ca898c",
  921. "#b6cc8d",
  922. "#a594bb",
  923. "#91c3d4",
  924. "#f2b087",
  925. "#3b86b9",
  926. "#b4595c",
  927. "#99b65d"
  928. ]
  929. }, {
  930. "id": "colorPalette2",
  931. "label": "paletteLabel",
  932. "fillType": "simple",
  933. "fills": [
  934. "#c9a046",
  935. "#865b89",
  936. "#a0b8af",
  937. "#4f85a0",
  938. "#b96b61",
  939. "#9fa449",
  940. "#8f3e35",
  941. "#a6a967",
  942. "#b69342",
  943. "#a78bc1",
  944. "#77882e",
  945. "#aa714d",
  946. "#367a77",
  947. "#9a636e",
  948. "#6da6ba",
  949. "#eace71"
  950. ]
  951. }, {
  952. "id": "colorPalette3",
  953. "label": "paletteLabel",
  954. "fillType": "simple",
  955. "fills": [
  956. "#e6cc66",
  957. "#73aac3",
  958. "#9a93cc",
  959. "#93b257",
  960. "#e6e873",
  961. "#b37c57",
  962. "#a5696c",
  963. "#aeaeae"
  964. ]
  965. }, {
  966. "id": "colorPalette4",
  967. "label": "paletteLabel",
  968. "fillType": "simple",
  969. "fills": [
  970. "#AE7733",
  971. "#3E8A3B",
  972. "#648BD0",
  973. "#94D6DE",
  974. "#DB8938",
  975. "#E2BA3F",
  976. "#7DBB31",
  977. "#845CA1",
  978. "#B89AE0",
  979. "#E7AD4D",
  980. "#A84931",
  981. "#DD6D53",
  982. "#8C9D9F",
  983. "#A9C5CC"
  984. ]
  985. }, {
  986. "id": "colorPalette5",
  987. "label": "paletteLabel",
  988. "fillType": "simple",
  989. "fills": [
  990. "#f04e37",
  991. "#00b3ef",
  992. "#008abf",
  993. "#9384eb",
  994. "#aa1a86",
  995. "#f09027",
  996. "#ffd93e",
  997. "#00a5a0",
  998. "#007670",
  999. "#004a77",
  1000. "#84d1f5",
  1001. "#7f1c7d",
  1002. "#ee3e95",
  1003. "#f288af",
  1004. "#cf162a",
  1005. "#b7471b",
  1006. "#fcb715",
  1007. "#a5a215",
  1008. "#8cc640",
  1009. "#008951"
  1010. ]
  1011. }, {
  1012. "id": "colorPalette6",
  1013. "label": "paletteLabel",
  1014. "fillType": "simple",
  1015. "fills": [
  1016. "#6a55ff",
  1017. "#27d6ff",
  1018. "#1bb2ff",
  1019. "#b600bc",
  1020. "#ff467b",
  1021. "#ff8839",
  1022. "#ffc435",
  1023. "#16e582",
  1024. "#00ab69",
  1025. "#004a77",
  1026. "#008892",
  1027. "#00c1b9",
  1028. "#0071c2",
  1029. "#0086ff",
  1030. "#6473ff",
  1031. "#9283ea",
  1032. "#8555b5",
  1033. "#f288af",
  1034. "#e51990",
  1035. "#b33681"
  1036. ]
  1037. }, {
  1038. "id": "colorPalette7",
  1039. "label": "paletteLabel",
  1040. "fillType": "simple",
  1041. "fills": [
  1042. "#059748",
  1043. "#C7B42E",
  1044. "#000000",
  1045. "#265DAB",
  1046. "#DF5C24",
  1047. "#E5126F",
  1048. "#9D722A",
  1049. "#7B3A96",
  1050. "#CB2027"
  1051. ]
  1052. }],
  1053. "HeatPalette": [{
  1054. "id": "colorPalette0",
  1055. "label": "heatPaletteLabel",
  1056. "fillType": "continuous",
  1057. "valueType": "normalized",
  1058. "fills": [{
  1059. "at": 0,
  1060. "fill": "#EEEEFF"
  1061. }, {
  1062. "at": 0.250,
  1063. "fill": "#88C1EB"
  1064. }, {
  1065. "at": 0.500,
  1066. "fill": "#319bd4"
  1067. }, {
  1068. "at": 0.750,
  1069. "fill": "#003569"
  1070. }, {
  1071. "at": 1,
  1072. "fill": "#000033"
  1073. }]
  1074. }, {
  1075. "id": "colorPalette1",
  1076. "label": "heatPaletteLabel",
  1077. "fillType": "continuous",
  1078. "valueType": "normalized",
  1079. "fills": [{
  1080. "at": 0,
  1081. "fill": "#F2E6FF"
  1082. }, {
  1083. "at": 0.250,
  1084. "fill": "#B49FCC"
  1085. }, {
  1086. "at": 0.500,
  1087. "fill": "#836aa1"
  1088. }, {
  1089. "at": 0.750,
  1090. "fill": "#372352"
  1091. }, {
  1092. "at": 1,
  1093. "fill": "#190033"
  1094. }]
  1095. }, {
  1096. "id": "colorPalette2",
  1097. "label": "heatPaletteLabel",
  1098. "fillType": "continuous",
  1099. "valueType": "normalized",
  1100. "fills": [{
  1101. "at": 0,
  1102. "fill": "#FFF0CC"
  1103. }, {
  1104. "at": 0.250,
  1105. "fill": "#DDBC76"
  1106. }, {
  1107. "at": 0.500,
  1108. "fill": "#c9a046"
  1109. }, {
  1110. "at": 0.750,
  1111. "fill": "#966E11"
  1112. }, {
  1113. "at": 1,
  1114. "fill": "#332400"
  1115. }]
  1116. }, {
  1117. "id": "colorPalette3",
  1118. "label": "heatPaletteLabel",
  1119. "fillType": "continuous",
  1120. "valueType": "normalized",
  1121. "fills": [{
  1122. "at": 0,
  1123. "fill": "#FFFFCC"
  1124. }, {
  1125. "at": 0.250,
  1126. "fill": "#F7EE9E"
  1127. }, {
  1128. "at": 0.500,
  1129. "fill": "#e6cc66"
  1130. }, {
  1131. "at": 0.750,
  1132. "fill": "#756216"
  1133. }, {
  1134. "at": 1,
  1135. "fill": "#333300"
  1136. }]
  1137. }, {
  1138. "id": "colorPalette4",
  1139. "label": "heatPaletteLabel",
  1140. "fillType": "continuous",
  1141. "valueType": "normalized",
  1142. "fills": [{
  1143. "at": 0,
  1144. "fill": "#FFF5CC"
  1145. }, {
  1146. "at": 0.250,
  1147. "fill": "#D8B073"
  1148. }, {
  1149. "at": 0.500,
  1150. "fill": "#AE7733"
  1151. }, {
  1152. "at": 0.750,
  1153. "fill": "#5B340F"
  1154. }, {
  1155. "at": 1,
  1156. "fill": "#331900"
  1157. }]
  1158. }, {
  1159. "id": "colorPalette5",
  1160. "label": "heatPaletteLabel",
  1161. "fillType": "continuous",
  1162. "valueType": "normalized",
  1163. "fills": [{
  1164. "at": 0,
  1165. "fill": "#FCEBE8"
  1166. }, {
  1167. "at": 0.250,
  1168. "fill": "#FE9585"
  1169. }, {
  1170. "at": 0.500,
  1171. "fill": "#f04e37"
  1172. }, {
  1173. "at": 0.750,
  1174. "fill": "#7F2011"
  1175. }, {
  1176. "at": 1,
  1177. "fill": "#3A0D06"
  1178. }]
  1179. }, {
  1180. "id": "colorPalette6",
  1181. "label": "heatPaletteLabel",
  1182. "fillType": "continuous",
  1183. "valueType": "normalized",
  1184. "fills": [{
  1185. "at": 0,
  1186. "fill": "#E5E1FF"
  1187. }, {
  1188. "at": 0.250,
  1189. "fill": "#9991FF"
  1190. }, {
  1191. "at": 0.500,
  1192. "fill": "#6a55ff"
  1193. }, {
  1194. "at": 0.750,
  1195. "fill": "#2E298E"
  1196. }, {
  1197. "at": 1,
  1198. "fill": "#261F50"
  1199. }]
  1200. }, {
  1201. "id": "colorPalette7",
  1202. "label": "heatPaletteLabel",
  1203. "fillType": "continuous",
  1204. "valueType": "normalized",
  1205. "fills": [{
  1206. "at": 0,
  1207. "fill": "#E1FAED"
  1208. }, {
  1209. "at": 0.250,
  1210. "fill": "#63C393"
  1211. }, {
  1212. "at": 0.500,
  1213. "fill": "#059748"
  1214. }, {
  1215. "at": 0.750,
  1216. "fill": "#004B22"
  1217. }, {
  1218. "at": 1,
  1219. "fill": "#013017"
  1220. }]
  1221. }],
  1222. "ConditionalPalette": [{
  1223. "id": "condColorPalette0",
  1224. "label": "conditionalPaletteLabel",
  1225. "description": "Palette1",
  1226. "fillType": "simple",
  1227. "fills": ["#3ABB66","#BBE085","#FDD372","#FFA573","#FF5050"]
  1228. }, {
  1229. "id": "condColorPalette1",
  1230. "label": "conditionalPaletteLabel",
  1231. "description": "Palette2",
  1232. "fillType": "simple",
  1233. "fills": ["#3ABB66","#BBE085","#E9E0E0","#F79D9D","#FF5050"]
  1234. }, {
  1235. "id": "condColorPalette2",
  1236. "label": "conditionalPaletteLabel",
  1237. "description": "Palette3",
  1238. "fillType": "simple",
  1239. "fills": ["#5596E6","#B4D8F0","#E9E0E0","#F79D9D","#FF5050"]
  1240. }, {
  1241. "id": "condColorPalette3",
  1242. "label": "conditionalPaletteLabel",
  1243. "description": "Palette4",
  1244. "fillType": "simple",
  1245. "fills": ["#8CD211","#BBE085","#DFE9E9","#B4D8F0","#7CC7FF"]
  1246. }, {
  1247. "id": "condColorPalette4",
  1248. "label": "conditionalPaletteLabel",
  1249. "description": "Palette5",
  1250. "fillType": "simple",
  1251. "fills": ["#BA8FF7","#D7AAFF","#DFE9E9","#A7FAE6","#41D6C3"]
  1252. }, {
  1253. "id": "condColorPalette5",
  1254. "label": "conditionalPaletteLabel",
  1255. "description": "Palette6",
  1256. "fillType": "simple",
  1257. "fills": ["#BBE085","#5AA700","#A53725","#FF5050","#FFD2DD"]
  1258. }, {
  1259. "id": "condColorPalette6",
  1260. "label": "conditionalPaletteLabel",
  1261. "description": "Palette7",
  1262. "fillType": "simple",
  1263. "fills": ["#C0E6FF","#5596E6","#734098","#FF5050","#FFD2DD"]
  1264. }, {
  1265. "id": "condColorPalette7",
  1266. "label": "conditionalPaletteLabel",
  1267. "description": "Palette8",
  1268. "fillType": "simple",
  1269. "fills": ["#FFD2DD","#FFA5B4","#E71D32","#8C101C","#6E0A1E"]
  1270. }, {
  1271. "id": "condColorPalette8",
  1272. "label": "conditionalPaletteLabel",
  1273. "description": "Palette9",
  1274. "fillType": "simple",
  1275. "fills": ["#FFD4A0","#FFA573","#D74108","#872A0F","#6D120F"]
  1276. }, {
  1277. "id": "condColorPalette9",
  1278. "label": "conditionalPaletteLabel",
  1279. "description": "Palette10",
  1280. "fillType": "simple",
  1281. "fills": ["#FDE876","#FDD600","#8C7300","#574A00","#3C3200"]
  1282. }, {
  1283. "id": "condColorPalette10",
  1284. "label": "conditionalPaletteLabel",
  1285. "description": "Palette11",
  1286. "fillType": "simple",
  1287. "fills": ["#C8F08F", "#B4E051", "#4B8400", "#144D14", "#0A3C02"]
  1288. }, {
  1289. "id": "condColorPalette11",
  1290. "label": "conditionalPaletteLabel",
  1291. "description": "Palette12",
  1292. "fillType": "simple",
  1293. "fills": ["#A7FAE6","#6EEDD8","#008571","#005448","#003C32"]
  1294. }, {
  1295. "id": "condColorPalette12",
  1296. "label": "conditionalPaletteLabel",
  1297. "description": "Palette13",
  1298. "fillType": "simple",
  1299. "fills": ["#C0E6FF","#7CC7FF","#4178BE","#264A60","#1D3649"]
  1300. }, {
  1301. "id": "condColorPalette13",
  1302. "label": "conditionalPaletteLabel",
  1303. "description": "Palette14",
  1304. "fillType": "simple",
  1305. "fills": ["#EED2FF","#D7AAFF","#9855D4","#562F72","#412356"]
  1306. }, {
  1307. "id": "condColorPalette14",
  1308. "label": "conditionalPaletteLabel",
  1309. "description": "Palette15",
  1310. "fillType": "simple",
  1311. "fills": ["#FFD2FF","#FF9EEE","#DB2780","#7C1C58","#412356"]
  1312. }, {
  1313. "id": "condColorPalette15",
  1314. "label": "conditionalPaletteLabel",
  1315. "description": "Pattern palette",
  1316. "fillType": "simple",
  1317. "fills": [{
  1318. "fill": "#FFFFFF",
  1319. "pattern": "Pattern1",
  1320. "color": "#000000"
  1321. }, {
  1322. "fill": "#FFFFFF",
  1323. "pattern": "Pattern2",
  1324. "color": "#000000"
  1325. }, {
  1326. "fill": "#FFFFFF",
  1327. "pattern": "Pattern3",
  1328. "color": "#000000"
  1329. }, {
  1330. "fill": "#FFFFFF",
  1331. "pattern": "Pattern4",
  1332. "color": "#000000"
  1333. }, {
  1334. "fill": "#FFFFFF",
  1335. "pattern": "Pattern5",
  1336. "color": "#000000"
  1337. }]
  1338. }],
  1339. "Font": [{
  1340. "id": "font0",
  1341. "caption": "Font",
  1342. "value": {
  1343. "family": "Plex-Bold, HelvNeueforIBM-Bold, Helvetica neue, Helvetica Neue Std, Helvetica Neue, Arial",
  1344. "weight": "bold",
  1345. "size": "12px"
  1346. }
  1347. }, {
  1348. "id": "font1",
  1349. "caption": "Font",
  1350. "value": {
  1351. "family": "IBM Plex Sans, HelvNeueforIBM-Regular, Helvetica neue, Helvetica Neue Std, Helvetica Neue, Arial",
  1352. "weight": "normal",
  1353. "size": "12px"
  1354. }
  1355. }, {
  1356. "id": "fontn",
  1357. "caption": "Font",
  1358. "value": {
  1359. "family": "IBM Plex Sans, HelvNeueforIBM-Regular, Helvetica neue, Helvetica Neue Std, Helvetica Neue, Arial",
  1360. "weight": "bold",
  1361. "size": "4pt"
  1362. }
  1363. }, {
  1364. "id": "fallBackFont",
  1365. "caption": "Font",
  1366. "value": {
  1367. "family": "IBM Plex Sans, Helvetica, Arial, sans-serif"
  1368. }
  1369. }, {
  1370. "id": "fontNormal",
  1371. "caption": "Font",
  1372. "value": {
  1373. "family": "IBM Plex Sans, HelvNeueforIBM-Regular, $fallBackFontFamily"
  1374. }
  1375. }, {
  1376. "id": "fontLight",
  1377. "caption": "Font",
  1378. "value": {
  1379. "family": "Plex-Light, HelvNeueforIBM-Light, $fallBackFontFamily"
  1380. }
  1381. }, {
  1382. "id": "titleFont",
  1383. "caption": "Font",
  1384. "value": {
  1385. "family": "IBM Plex Sans, HelvNeueforIBM-Bold, HelvNeueforIBM, $fontNormalFamily",
  1386. "weight": "normal",
  1387. "size": "16px"
  1388. }
  1389. }, {
  1390. "id": "responsiveFont",
  1391. "caption": "Font",
  1392. "value": {
  1393. "family": "IBM Plex Sans, HelvNeueforIBM-Regular, $fontNormalFamily",
  1394. "size": "20px"
  1395. }
  1396. }],
  1397. "SceneOutlineColorPrimary": [{
  1398. "id": "transparent",
  1399. "value": "$coolGrey50"
  1400. }, {
  1401. "id": "color1",
  1402. "value": "$coolGrey50"
  1403. }, {
  1404. "id": "grayShade1",
  1405. "value": "$coolGrey50"
  1406. }, {
  1407. "id": "color2",
  1408. "value": "#f1f2f2"
  1409. }, {
  1410. "id": "color3",
  1411. "value": "#f1f2f2"
  1412. }, {
  1413. "id": "color4",
  1414. "value": "#f1f2f2"
  1415. }, {
  1416. "id": "color5",
  1417. "value": "#f1f2f2"
  1418. }, {
  1419. "id": "color6",
  1420. "value": "#58595b"
  1421. }, {
  1422. "id": "color7",
  1423. "value": "#f1f2f2"
  1424. }, {
  1425. "id": "color8",
  1426. "value": "#f1f2f2"
  1427. }, {
  1428. "id": "color9",
  1429. "value": "#f1f2f2"
  1430. }, {
  1431. "id": "color10",
  1432. "value": "#f1f2f2"
  1433. }, {
  1434. "id": "color11",
  1435. "value": "#f1f2f2"
  1436. }],
  1437. "SceneOutlineColorSecondary": [{
  1438. "id": "transparent",
  1439. "value": "$coolGrey30"
  1440. }, {
  1441. "id": "color1",
  1442. "value": "$coolGrey30"
  1443. }, {
  1444. "id": "grayShade1",
  1445. "value": "$coolGrey30"
  1446. }, {
  1447. "id": "color2",
  1448. "value": "#333"
  1449. }, {
  1450. "id": "color3",
  1451. "value": "#999"
  1452. }, {
  1453. "id": "color4",
  1454. "value": "#2b515a"
  1455. }, {
  1456. "id": "color5",
  1457. "value": "#99bbd1"
  1458. }, {
  1459. "id": "color6",
  1460. "value": "$coolGrey30"
  1461. }, {
  1462. "id": "color7",
  1463. "value": "#ECC4AB"
  1464. }, {
  1465. "id": "color8",
  1466. "value": "#38501c"
  1467. }, {
  1468. "id": "color9",
  1469. "value": "#b6cda1"
  1470. }, {
  1471. "id": "color10",
  1472. "value": "#634338"
  1473. }, {
  1474. "id": "color11",
  1475. "value": "#e2a3a1"
  1476. }]
  1477. },
  1478. "uiElements": {
  1479. "visualization": [{
  1480. "id": "backgroundColor",
  1481. "caption": "Overall Background",
  1482. "type": "Color",
  1483. "value": "$uiColorTransparent"
  1484. }, {
  1485. "id": "legendBackgroundColor",
  1486. "caption": "Legend Background",
  1487. "type": "Color",
  1488. "value": "$uiColorTransparent"
  1489. }, {
  1490. "id": "axisTitleFont",
  1491. "caption": "Font",
  1492. "type": "Font",
  1493. "value": "$font0"
  1494. }, {
  1495. "id": "axisTitleFontColor",
  1496. "caption": "Axis Title Color",
  1497. "type": "ForegroundUserPaletteColor",
  1498. "value": "$colorBlack",
  1499. "alpha": 0.6
  1500. }, {
  1501. "id": "legendTitleFont",
  1502. "caption": "Font",
  1503. "type": "Font",
  1504. "value": "$font0"
  1505. }, {
  1506. "id": "legendTitleColor",
  1507. "caption": "Legend Title Color",
  1508. "type": "ForegroundUserPaletteColor",
  1509. "value": "$colorBlack",
  1510. "alpha": 0.5
  1511. }, {
  1512. "id": "legendBodyFont",
  1513. "caption": "Font",
  1514. "type": "Font",
  1515. "value": "$font1"
  1516. }, {
  1517. "id": "legendBodyColor",
  1518. "caption": "Legend Title Color",
  1519. "type": "ForegroundUserPaletteColor",
  1520. "value": "$colorBlack",
  1521. "alpha": 0.5
  1522. }, {
  1523. "id": "repeatLabelColor",
  1524. "caption": "Repeat Label Color",
  1525. "type": "ForegroundUserPaletteColor",
  1526. "value": "$colorBlack",
  1527. "alpha": 0.5
  1528. }, {
  1529. "id": "axisLabelColor",
  1530. "caption": "Axis Label Color",
  1531. "type": "ForegroundUserPaletteColor",
  1532. "value": "$colorBlack",
  1533. "alpha": 0.5
  1534. }, {
  1535. "id": "axisLabelFont",
  1536. "caption": "Font",
  1537. "type": "Font",
  1538. "value": "$font1"
  1539. }, {
  1540. "id": "axisLineColor",
  1541. "caption": "Axis Color",
  1542. "type": "ForegroundUserPaletteColor",
  1543. "value": "$colorBlack",
  1544. "alpha": 0.25
  1545. }, {
  1546. "id": "axisGridLineColor",
  1547. "caption": "Axis Color",
  1548. "type": "SecondaryForegroundUserPaletteColor",
  1549. "value": "$colorBlack"
  1550. }, {
  1551. "id": "colorPalette",
  1552. "caption": "Color Palette",
  1553. "type": "ColorPalette",
  1554. "value": "colorPalette0"
  1555. }, {
  1556. "id": "condColorPalette",
  1557. "caption": "Conditional palette",
  1558. "type": "ColorPalette",
  1559. "value": "condColorPalette0"
  1560. }, {
  1561. "id": "lineColor",
  1562. "caption": "Line Color",
  1563. "type": "VizColor",
  1564. "value": 0
  1565. }, {
  1566. "id": "elementsStyleFont",
  1567. "caption": "Font",
  1568. "type": "Font",
  1569. "value": "$font1"
  1570. }, {
  1571. "id": "elementsLabelColor",
  1572. "caption": "Axis Color",
  1573. "type": "ForegroundUserPaletteColor",
  1574. "value": "$colorBlack"
  1575. }
  1576. ],
  1577. "grid": [{
  1578. "id": "hoverTableCell",
  1579. "caption": "Styles for hovered table cell value",
  1580. "type": "Color",
  1581. "value": "$uiColorGray1"
  1582. }, {
  1583. "id": "hoverTableCellHeader",
  1584. "caption": "Styles for hovered table cell header cell",
  1585. "type": "Color",
  1586. "value": "$uiColor36"
  1587. }, {
  1588. "id": "headerBorder",
  1589. "caption": "Header Border",
  1590. "type": "Border",
  1591. "value": {
  1592. "width": "1px",
  1593. "style": "solid",
  1594. "color": "$uiColor7"
  1595. }
  1596. }, {
  1597. "id": "headerUnderline",
  1598. "caption": "Header Underline",
  1599. "type": "Border",
  1600. "value": {
  1601. "width": "1px",
  1602. "style": "solid",
  1603. "color": "$uiColor6"
  1604. }
  1605. }, {
  1606. "id": "headerBackgroundColor",
  1607. "caption": "Header Background Color",
  1608. "type": "Color",
  1609. "value": "$uiColor9"
  1610. }, {
  1611. "id": "headerFont",
  1612. "caption": "Header Font",
  1613. "type": "Font",
  1614. "value": {
  1615. "family": "$fontNormalFamily",
  1616. "size": "12pt"
  1617. }
  1618. }, {
  1619. "id": "headerTextColor",
  1620. "caption": "Header Text Color",
  1621. "type": "Color",
  1622. "value": "$uiColor3"
  1623. }, {
  1624. "id": "headerBorderSelected",
  1625. "caption": "Selected Header Border",
  1626. "type": "Border",
  1627. "value": {
  1628. "width": "1px",
  1629. "style": "solid",
  1630. "color": "$uiColor5"
  1631. }
  1632. }, {
  1633. "id": "headerUnderlineSelected",
  1634. "caption": "Selected Header Underline",
  1635. "type": "Border",
  1636. "value": {
  1637. "width": "1px",
  1638. "style": "solid",
  1639. "color": "$uiColor11"
  1640. }
  1641. }, {
  1642. "id": "headerBackgroundColorSelected",
  1643. "caption": "Selected Header Background Color",
  1644. "type": "Color",
  1645. "value": "$uiColor15"
  1646. }, {
  1647. "id": "headerFontSelected",
  1648. "caption": "Selected Header Font",
  1649. "type": "Font",
  1650. "value": {
  1651. "family": "$fontNormalFamily",
  1652. "size": "12pt"
  1653. }
  1654. }, {
  1655. "id": "headerTextColorSelected",
  1656. "caption": "Selected Header text Color",
  1657. "type": "Color",
  1658. "value": "$uiColor1"
  1659. }, {
  1660. "id": "headerBorderHighlighted",
  1661. "caption": "Highlighted Header Border",
  1662. "type": "Border",
  1663. "value": {
  1664. "width": "1px",
  1665. "style": "solid",
  1666. "color": "$uiColor7"
  1667. }
  1668. }, {
  1669. "id": "headerUnderlineHighlighted",
  1670. "caption": "Highlighted Header Underline",
  1671. "type": "Border",
  1672. "value": {
  1673. "width": "1px",
  1674. "style": "solid",
  1675. "color": "$uiColor6"
  1676. }
  1677. }, {
  1678. "id": "headerBackgroundColorHighlighted",
  1679. "caption": "Highlighted Header Background Color",
  1680. "type": "Color",
  1681. "value": "$uiColor15"
  1682. }, {
  1683. "id": "headerFontHighlighted",
  1684. "caption": "Highlighted Header Font",
  1685. "type": "Font",
  1686. "value": {
  1687. "family": "$fontNormalFamily",
  1688. "size": "12pt"
  1689. }
  1690. }, {
  1691. "id": "headerTextColorHighlighted",
  1692. "caption": "Highlighted Header Text Color",
  1693. "type": "Color",
  1694. "value": "$uiColor1"
  1695. }, {
  1696. "id": "cellBorder",
  1697. "caption": "Cell Border",
  1698. "type": "Border",
  1699. "value": {
  1700. "width": "1px",
  1701. "style": "solid",
  1702. "color": "$uiColor8"
  1703. }
  1704. }, {
  1705. "id": "cellBorderFocus",
  1706. "caption": "Cell Focus Border",
  1707. "type": "Border",
  1708. "value": {
  1709. "width": "1px",
  1710. "style": "solid",
  1711. "color": "$uiColor16"
  1712. }
  1713. }, {
  1714. "id": "cellBorderHeaderHighlighted",
  1715. "caption": "Cell Focus Border",
  1716. "type": "Border",
  1717. "value": {
  1718. "width": "1px",
  1719. "style": "solid",
  1720. "color": "$uiColor5"
  1721. }
  1722. }, {
  1723. "id": "cellBackgroundColor",
  1724. "caption": "Cell Background Color",
  1725. "type": "Color",
  1726. "value": "transparent"
  1727. }, {
  1728. "id": "cellFont",
  1729. "caption": "Cell Font",
  1730. "type": "Font",
  1731. "value": {
  1732. "family": "$fontNormalFamily",
  1733. "size": "12pt"
  1734. }
  1735. }, {
  1736. "id": "cellTextColor",
  1737. "caption": "Cell Text Color",
  1738. "type": "Color",
  1739. "value": "$uiColor4"
  1740. }, {
  1741. "id": "cellBorderSelected",
  1742. "caption": "Selected Cell Border",
  1743. "type": "Border",
  1744. "value": {
  1745. "width": "1px",
  1746. "style": "solid",
  1747. "color": "$uiColor10"
  1748. }
  1749. }, {
  1750. "id": "cellBackgroundColorSelected",
  1751. "caption": "Selected Cell Background Color",
  1752. "type": "Color",
  1753. "value": "$uiColor12"
  1754. }, {
  1755. "id": "cellFontSelected",
  1756. "caption": "Selected Cell Font",
  1757. "type": "Font",
  1758. "value": {
  1759. "family": "$fontNormalFamily",
  1760. "size": "12pt"
  1761. }
  1762. }, {
  1763. "id": "cellTextColorSelected",
  1764. "caption": "Selected Cell Text Color",
  1765. "type": "Color",
  1766. "value": "$uiColor1"
  1767. }, {
  1768. "id": "cellBackgroundColorSelectedFocus",
  1769. "caption": "Focused Selected Cell Background",
  1770. "type": "Color",
  1771. "value": "$uiColor12"
  1772. }, {
  1773. "id": "cellBorderHighlighted",
  1774. "caption": "Highlighted Cell Border",
  1775. "type": "Border",
  1776. "value": {
  1777. "width": "1px",
  1778. "style": "solid",
  1779. "color": "$uiColor8"
  1780. }
  1781. }, {
  1782. "id": "cellBackgroundColorHighlighted",
  1783. "caption": "Highlighted Cell Background Color",
  1784. "type": "Color",
  1785. "value": "$uiColor2"
  1786. }, {
  1787. "id": "cellFontHighlighted",
  1788. "caption": "Highlighted Cell Font",
  1789. "type": "Font",
  1790. "value": {
  1791. "family": "$fontNormalFamily",
  1792. "size": "12pt"
  1793. }
  1794. }, {
  1795. "id": "cellTextColorHighlighted",
  1796. "caption": "Highlighted Cell Text Color",
  1797. "type": "Color",
  1798. "value": "$uiColor1"
  1799. }, {
  1800. "id": "cellBorderImpliedSelected",
  1801. "caption": "Implied Selection Cell Border",
  1802. "type": "Border",
  1803. "value": {
  1804. "width": "1px",
  1805. "style": "solid",
  1806. "color": "$uiColor13"
  1807. }
  1808. }, {
  1809. "id": "cellBackgroundColorImpliedSelected",
  1810. "caption": "Implied Selection Cell Background Color",
  1811. "type": "Color",
  1812. "value": "$uiColor33"
  1813. }, {
  1814. "id": "cellTextColorImpliedSelected",
  1815. "caption": "Implied Selection Cell Text Color",
  1816. "type": "Color",
  1817. "value": "$uiColor1"
  1818. }, {
  1819. "id": "groupBorder",
  1820. "caption": "Group Border",
  1821. "type": "Border",
  1822. "value": {
  1823. "width": "1px",
  1824. "style": "solid",
  1825. "color": "$uiColor6"
  1826. }
  1827. }, {
  1828. "id": "groupBorderSelected",
  1829. "caption": "Selected Group Border",
  1830. "type": "Border",
  1831. "value": {
  1832. "width": "1px",
  1833. "style": "solid",
  1834. "color": "$uiColor17"
  1835. }
  1836. }, {
  1837. "id": "groupBorderHighlighted",
  1838. "caption": "Highlighted Group Border",
  1839. "type": "Border",
  1840. "value": {
  1841. "width": "1px",
  1842. "style": "solid",
  1843. "color": "$uiColor18"
  1844. }
  1845. }, {
  1846. "id": "groupBorderFocused",
  1847. "caption": "Focused Group Border",
  1848. "type": "Border",
  1849. "value": {
  1850. "width": "1px",
  1851. "style": "solid",
  1852. "color": "$uiColor16"
  1853. }
  1854. }, {
  1855. "id": "sortIconColor",
  1856. "caption": "Sort Icon Color",
  1857. "type": "Color",
  1858. "value": "$uiColor32"
  1859. }, {
  1860. "id": "sortIconSize",
  1861. "caption": "Sort Icon size",
  1862. "type": "size",
  1863. "value": "13px"
  1864. }, {
  1865. "id": "calcIconColor",
  1866. "caption": "Calc Icon Color",
  1867. "type": "Color",
  1868. "value": "#4178BE"
  1869. }, {
  1870. "id": "calcIconSize",
  1871. "caption": "Calc Icon size",
  1872. "type": "size",
  1873. "value": "15px"
  1874. }],
  1875. "crosstab": [
  1876. {
  1877. "id": "hoverXtabCell",
  1878. "caption": "Styles for hovered crosstab cells, P1",
  1879. "type": "Color",
  1880. "value": "$uiColorGray1"
  1881. },
  1882. {
  1883. "id": "edgeSummaryBackgroundColor",
  1884. "caption": "Edge Summary Background Color",
  1885. "type": "Color",
  1886. "value": "$uiColor45"
  1887. }, {
  1888. "id": "edgeBackgroundColor",
  1889. "caption": "Edge Background Color",
  1890. "type": "Color",
  1891. "value": "$uiColor38"
  1892. }, {
  1893. "id": "edgeTextColor",
  1894. "caption": "Edge Text Color",
  1895. "type": "Color",
  1896. "value": "$uiColor40"
  1897. }, {
  1898. "id": "cellBackgroundColor",
  1899. "caption": "Cell Background Color",
  1900. "type": "Color",
  1901. "value": "$uiColor2"
  1902. }, {
  1903. "id": "alternateRowBackgroundColor",
  1904. "caption": "Alternate Row",
  1905. "type": "Color",
  1906. "value": "$uiColor43"
  1907. }, {
  1908. "id": "cellFont",
  1909. "caption": "Cell Font",
  1910. "type": "Font",
  1911. "value": {
  1912. "family": "$fontNormalFamily",
  1913. "size": "12pt"
  1914. }
  1915. }, {
  1916. "id": "cellTextColor",
  1917. "caption": "Cell Text Color",
  1918. "type": "Color",
  1919. "value": "$uiColor34"
  1920. }, {
  1921. "id": "cellBorder",
  1922. "caption": "Cell Border",
  1923. "type": "Border",
  1924. "value": {
  1925. "width": "1px",
  1926. "style": "solid",
  1927. "color": "$uiColor35"
  1928. }
  1929. }, {
  1930. "id": "cellBackgroundColorSelected",
  1931. "caption": "Selected Cell Background Color",
  1932. "type": "Color",
  1933. "value": "$uiColor37"
  1934. }, {
  1935. "id": "cellBorderImpliedSelected",
  1936. "caption": "Implied Selection Cell Border",
  1937. "type": "Border",
  1938. "value": {
  1939. "width": "1px",
  1940. "style": "solid",
  1941. "color": "$uiColor13"
  1942. }
  1943. }, {
  1944. "id": "cellBackgroundColorImpliedSelected",
  1945. "caption": "Implied Selection Cell Background Color",
  1946. "type": "Color",
  1947. "value": "$uiColor36"
  1948. }, {
  1949. "id": "subSummary",
  1950. "caption": "Sub Group Summary",
  1951. "type": "Color",
  1952. "value": "$uiColor42"
  1953. }, {
  1954. "id": "overallSummary",
  1955. "caption": "Overall Summary",
  1956. "type": "Color",
  1957. "value": "$uiColor41"
  1958. }],
  1959. "summaryView": [{
  1960. "id": "greyedShape",
  1961. "caption": "Greyed shape",
  1962. "type": "Color",
  1963. "value": "$uiColor44"
  1964. }],
  1965. "list": [{
  1966. "id": "itemPadding",
  1967. "caption": "Item Padding",
  1968. "type": "Padding",
  1969. "value": "0px 10px"
  1970. }, {
  1971. "id": "itemHeight",
  1972. "caption": "Item Height",
  1973. "type": "size",
  1974. "value": "32px"
  1975. }, {
  1976. "id": "itemFont",
  1977. "caption": "Item Font",
  1978. "type": "Font",
  1979. "value": {
  1980. "family": "$fontNormalFamily",
  1981. "size": "12pt"
  1982. }
  1983. }, {
  1984. "id": "itemTextColor",
  1985. "caption": "Text Color",
  1986. "type": "Color",
  1987. "value": "$uiColor3"
  1988. }, {
  1989. "id": "childItemFont",
  1990. "caption": "Item Font",
  1991. "type": "Font",
  1992. "value": {
  1993. "family": "$fontNormalFamily",
  1994. "size": "12pt"
  1995. }
  1996. }, {
  1997. "id": "childItemTextColor",
  1998. "caption": "Text Color",
  1999. "type": "Color",
  2000. "value": "$uiColor4"
  2001. }, {
  2002. "id": "itemBorder",
  2003. "caption": "Item Border",
  2004. "type": "Border",
  2005. "value": {
  2006. "width": "1px",
  2007. "style": "solid",
  2008. "color": "transparent"
  2009. }
  2010. }, {
  2011. "id": "itemBorderRadius",
  2012. "caption": "Item Border Radius",
  2013. "type": "Radius",
  2014. "value": "0px"
  2015. }, {
  2016. "id": "itemFontSelected",
  2017. "caption": "Selected Item Font",
  2018. "type": "Font",
  2019. "value": {
  2020. "family": "$fontNormalFamily",
  2021. "size": "12pt"
  2022. }
  2023. }, {
  2024. "id": "itemTextColorSelected",
  2025. "caption": "Selected Item Text Color",
  2026. "type": "Color",
  2027. "value": "$uiColor2"
  2028. }, {
  2029. "id": "itemBackgroundColorSelected",
  2030. "caption": "Selected Item Text Color",
  2031. "type": "Color",
  2032. "value": "$uiColor37"
  2033. }, {
  2034. "id": "itemBackgroundColorHover",
  2035. "caption": "Styles for hovered list cell value",
  2036. "type": "Color",
  2037. "value": "$uiColorGray1"
  2038. }, {
  2039. "id": "itemTextColorHover",
  2040. "caption": "Selected Item Text Color",
  2041. "type": "Color",
  2042. "value": "$uiColor1"
  2043. }, {
  2044. "id": "itemBorderHover",
  2045. "caption": "Hover Item Border",
  2046. "type": "Border",
  2047. "value": {
  2048. "width": "1px",
  2049. "style": "solid",
  2050. "color": "transparent"
  2051. }
  2052. }, {
  2053. "id": "itemBorderFocus",
  2054. "caption": "Focused Item Border",
  2055. "type": "Border",
  2056. "value": {
  2057. "width": "1px",
  2058. "style": "solid",
  2059. "color": "$uiColor16",
  2060. "radius": "0px"
  2061. }
  2062. }, {
  2063. "id": "itemBackgroundColorSelectedFocus",
  2064. "caption": "Focused Selected Item Background",
  2065. "type": "Color",
  2066. "value": "$uiColor30"
  2067. }, {
  2068. "id": "indentationArrowColor",
  2069. "caption": "Indentation Arrow Color",
  2070. "type": "Color",
  2071. "value": "$uiColor21"
  2072. }, {
  2073. "id": "indentationArrowColorSelected",
  2074. "caption": "Indentation Arrow Color",
  2075. "type": "Color",
  2076. "value": "$uiColor21"
  2077. }, {
  2078. "id": "indentationArrowColorHover",
  2079. "caption": "Indentation Arrow Color",
  2080. "type": "Color",
  2081. "value": "$uiColor21"
  2082. }, {
  2083. "id": "indentationSize",
  2084. "caption": "Indentation Size",
  2085. "type": "Size",
  2086. "value": "16px"
  2087. }],
  2088. "summary": [{
  2089. "id": "backgroundColor",
  2090. "caption": "Background Color",
  2091. "type": "Color",
  2092. "value": "transparent"
  2093. }, {
  2094. "id": "valueMinimumHeight",
  2095. "caption": "Value Minimum Height",
  2096. "type": "size",
  2097. "value": "14pt"
  2098. }],
  2099. "text": [{
  2100. "id": "titleFont",
  2101. "caption": "Title Text Font",
  2102. "type": "Font",
  2103. "value": "$titleFont"
  2104. }, {
  2105. "id": "titleLineHeight",
  2106. "caption": "Title Text Line Height",
  2107. "type": "size",
  2108. "value": "16pt"
  2109. }, {
  2110. "id": "titleColor",
  2111. "caption": "Title Text Color",
  2112. "type": "TextWidgetColor1UserPaletteColor",
  2113. "value": "$transparent"
  2114. }, {
  2115. "id": "titleSmallColor",
  2116. "caption": "Small Title Text Color",
  2117. "type": "TextWidgetColor1UserPaletteColor",
  2118. "value": "$transparent"
  2119. }, {
  2120. "id": "subtitleColor",
  2121. "caption": "Subtitle Text Color",
  2122. "type": "TextWidgetColor2UserPaletteColor",
  2123. "value": "$transparent"
  2124. }, {
  2125. "id": "bodyColor",
  2126. "caption": "Title Text Color",
  2127. "type": "TextWidgetColor2UserPaletteColor",
  2128. "value": "$transparent"
  2129. }, {
  2130. "id": "bodySmallColor",
  2131. "caption": "Title Text Color",
  2132. "type": "TextWidgetColor2UserPaletteColor",
  2133. "value": "$transparent"
  2134. }, {
  2135. "id": "captionColor",
  2136. "caption": "Title Text Color",
  2137. "type": "TextWidgetColor3UserPaletteColor",
  2138. "value": "$transparent"
  2139. }, {
  2140. "id": "quoteColor",
  2141. "caption": "Title Text Color",
  2142. "type": "TextWidgetColor4UserPaletteColor",
  2143. "value": "$transparent"
  2144. }, {
  2145. "id": "quoteSmallColor",
  2146. "caption": "Title Text Color",
  2147. "type": "TextWidgetColor4UserPaletteColor",
  2148. "value": "$transparent"
  2149. }, {
  2150. "id": "responsiveFont",
  2151. "caption": "Responsive Text Font",
  2152. "type": "Font",
  2153. "value": "$responsiveFont"
  2154. }, {
  2155. "id": "responsiveColor",
  2156. "caption": "Responsive Text Color",
  2157. "type": "TextWidgetColor1UserPaletteColor",
  2158. "value": "$transparent"
  2159. }],
  2160. "tabs": [{
  2161. "id": "tabTextColor",
  2162. "caption": "Tab Text Color",
  2163. "type": "TabTextColor",
  2164. "value": "$transparent"
  2165. }, {
  2166. "id": "tabSelectedLineColor",
  2167. "caption": "Tab Line Color",
  2168. "type": "TabSelectedLineColor",
  2169. "value": "$transparent"
  2170. }, {
  2171. "id": "tabBackgroundColor",
  2172. "caption": "Tab Background Color",
  2173. "type": "UserPaletteColor",
  2174. "value": "$transparent"
  2175. }, {
  2176. "id": "padding",
  2177. "caption": "Padding",
  2178. "type": "Padding",
  2179. "value": "0px 10px"
  2180. }, {
  2181. "id": "tabBorderColor",
  2182. "caption": "Border",
  2183. "type": "Color",
  2184. "value": "$uiColorGray1"
  2185. }],
  2186. "widget": [{
  2187. "id": "contentPadding",
  2188. "caption": "Widget Padding",
  2189. "type": "Size",
  2190. "value": "0px"
  2191. }, {
  2192. "id": "backgroundColor",
  2193. "caption": "Background Color",
  2194. "type": "Color",
  2195. "value": "$uiColor2"
  2196. }, {
  2197. "id": "border",
  2198. "caption": "Border",
  2199. "type": "Border",
  2200. "value": {
  2201. "width": "1px",
  2202. "style": "solid",
  2203. "color": "transparent"
  2204. }
  2205. }, {
  2206. "id": "borderRadius",
  2207. "caption": "Border Radius",
  2208. "type": "Size",
  2209. "value": "0px"
  2210. }, {
  2211. "id": "titleAlignment",
  2212. "caption": "Title Alignment",
  2213. "type": "Alignment",
  2214. "value": "left"
  2215. }, {
  2216. "id": "titleFont",
  2217. "caption": "Title Font",
  2218. "type": "Font",
  2219. "value": {
  2220. "family": "$fontNormalFamily",
  2221. "size": "14px"
  2222. }
  2223. }, {
  2224. "id": "titleColor",
  2225. "caption": "Title Color",
  2226. "type": "TextWidgetColor1UserPaletteColor",
  2227. "value": "$transparent"
  2228. }, {
  2229. "id": "titleUnderline",
  2230. "caption": "Title Underline Color",
  2231. "type": "Border",
  2232. "value": {
  2233. "width": "0px",
  2234. "style": "solid",
  2235. "color": "transparent"
  2236. }
  2237. }, {
  2238. "id": "titleBottomMargin",
  2239. "caption": "Title Bottom Margin",
  2240. "type": "Size",
  2241. "value": "0px"
  2242. }, {
  2243. "id": "titleTopBottomPadding",
  2244. "caption": "Title Top/Bottom Padding",
  2245. "type": "size",
  2246. "value": "10px"
  2247. }, {
  2248. "id": "titleRightLeftPadding",
  2249. "caption": "Title Right/Left Padding",
  2250. "type": "Size",
  2251. "value": "10px"
  2252. }, {
  2253. "id": "conditionalColor",
  2254. "caption": "Color",
  2255. "type": "Color",
  2256. "value": "$uiColor40"
  2257. }, {
  2258. "id": "conditionalBackgroundColor",
  2259. "caption": "Background Color",
  2260. "type": "Color",
  2261. "value": "$widget_backgroundColor"
  2262. }, {
  2263. "id": "conditionalLineColor",
  2264. "caption": "Line Color",
  2265. "type": "Color",
  2266. "value": "$uiColor7"
  2267. }, {
  2268. "id": "handleBackground",
  2269. "caption": "Handle Background Color",
  2270. "type": "Color",
  2271. "value": "$uiColor2"
  2272. }, {
  2273. "id": "handleFill",
  2274. "caption": "Handle Fill Color",
  2275. "type": "Color",
  2276. "value": "$uiColor48"
  2277. }],
  2278. "dataPlayer": [{
  2279. "id": "sliderLabelColor",
  2280. "caption": "Slider Label Color",
  2281. "type": "Color",
  2282. "value": "$DataPlayerPaletteColor_color1"
  2283. }, {
  2284. "id": "sliderSelectedLabelColor",
  2285. "caption": "Slider Selected Label Color",
  2286. "type": "Color",
  2287. "value": "$DataPlayerPaletteColor_color2"
  2288. }, {
  2289. "id": "sliderButtonColor",
  2290. "caption": "Slider Button Color",
  2291. "type": "Color",
  2292. "value": "$DataPlayerPaletteColor_color3"
  2293. }],
  2294. "board": [{
  2295. "id": "backgroundColor",
  2296. "caption": "Background Color",
  2297. "type": "UserPaletteColor",
  2298. "value": "$color1"
  2299. }],
  2300. "multipurpose": [{
  2301. "id": "shortcutBorderColor",
  2302. "caption": "Shortcut Border Color",
  2303. "type": "Color",
  2304. "value": "$uiColorGray1"
  2305. }, {
  2306. "id": "shortcutIconColor",
  2307. "caption": "Shortcut Icon Color",
  2308. "type": "Color",
  2309. "value": "$uiColorGray60"
  2310. }, {
  2311. "id": "dropzoneColor",
  2312. "caption": "Dropzone Color",
  2313. "type": "Color",
  2314. "value": "$uiColorBlue60Alpha10"
  2315. }],
  2316. "kpi": [{
  2317. "id": "valueColor",
  2318. "caption": "Value color",
  2319. "type": "Color",
  2320. "value": "$uiColorGray80"
  2321. },
  2322. {
  2323. "id": "labelColor",
  2324. "caption": "Label color",
  2325. "type": "Color",
  2326. "value": "$uiColorGray60"
  2327. }]
  2328. }
  2329. }