config.json 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389
  1. {
  2. // Specifies the "source of truth" for default values for all Terminal.Gui settings managed by
  3. // ConfigurationManager. It is automatically loaded, and applied, each time Application.Init
  4. // is run (via the ConfigurationManager.Reset method).
  5. //
  6. // In other words, initial values set in the the codebase are always overwritten by the contents of this
  7. // resource embedded in the Terminal.Gui.dll assembly.
  8. //
  9. // The Unit Test method "ConfigurationManagerTests.SaveDefaults" can be used to re-create the base of this file, but
  10. // note that not all values here will be recreated (e.g. the Light and Dark themes and any property initialized
  11. // null).
  12. //
  13. "$schema": "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json",
  14. // Set this to true in a .config file to be loaded to cause JSON parsing errors
  15. // to throw exceptions.
  16. "ConfigurationManager.ThrowOnJsonErrors": false,
  17. // --------------- Application Settings ---------------
  18. "Key.Separator": "+",
  19. "Application.ArrangeKey": "Ctrl+F5",
  20. "Application.Force16Colors": false,
  21. //"Application.ForceDriver": "", // TODO: ForceDriver should be nullable
  22. "Application.IsMouseDisabled": false,
  23. "Application.NextTabGroupKey": "F6",
  24. "Application.NextTabKey": "Tab",
  25. "Application.PrevTabGroupKey": "Shift+F6",
  26. "Application.PrevTabKey": "Shift+Tab",
  27. "Application.QuitKey": "Esc",
  28. // --------------- Colors ---------------
  29. // --------------- View Specific Settings ---------------
  30. "PopoverMenu.DefaultKey": "Shift+F10",
  31. "FileDialog.MaxSearchResults": 10000,
  32. "FileDialogStyle.DefaultUseColors": false,
  33. "FileDialogStyle.DefaultUseUnicodeCharacters": false,
  34. // --------------- Themes -----------------
  35. "Themes": [
  36. // We do not override any hard-coded properties for Default here;
  37. // Default is by definition the same as hard-coded.
  38. //{
  39. // "Default": {
  40. // }
  41. //},
  42. {
  43. "TurboPascal 5": {
  44. "Schemes": [
  45. {
  46. "TopLevel": {
  47. "Normal": {
  48. "Foreground": "White",
  49. "Background": "Blue"
  50. }
  51. }
  52. },
  53. {
  54. "Base": {
  55. "Normal": {
  56. "Foreground": "Yellow",
  57. "Background": "Blue"
  58. }
  59. }
  60. },
  61. {
  62. "Dialog": {
  63. "Normal": {
  64. "Foreground": "Black",
  65. "Background": "LightGray"
  66. }
  67. }
  68. },
  69. {
  70. "Menu": {
  71. "Normal": {
  72. "Foreground": "Black",
  73. "Background": "Cyan",
  74. "Style": "None"
  75. },
  76. "Focus": {
  77. "Foreground": "Black",
  78. "Background": "LightGray",
  79. "Style": "None"
  80. },
  81. "HotNormal": {
  82. "Foreground": "BrightRed",
  83. "Background": "Cyan",
  84. "Style": "None"
  85. },
  86. "HotFocus": {
  87. "Foreground": "BrightRed",
  88. "Background": "LightGray",
  89. "Style": "None"
  90. },
  91. "Disabled": {
  92. "Foreground": "DarkGray",
  93. "Background": "Cyan",
  94. "Style": "None"
  95. }
  96. }
  97. },
  98. {
  99. "Error": {
  100. "Normal": {
  101. "Foreground": "BrightRed",
  102. "Background": "LightGray",
  103. "Style": "None"
  104. }
  105. }
  106. }
  107. ],
  108. "Glyphs.CheckStateChecked": "☒",
  109. "Glyphs.CheckStateNone": "□",
  110. "Glyphs.CheckStateUnChecked": "☐",
  111. "Glyphs.LeftBracket": "[",
  112. "Glyphs.RightBracket": "]"
  113. }
  114. },
  115. {
  116. "Anders": {
  117. "Schemes": [
  118. {
  119. "TopLevel": {
  120. "Normal": {
  121. "Foreground": "WhiteSmoke",
  122. "Background": "DimGray"
  123. }
  124. }
  125. },
  126. {
  127. "Base": {
  128. "Normal": {
  129. "Foreground": "White",
  130. "Background": "DarkBlue"
  131. }
  132. },
  133. },
  134. {
  135. "Dialog": {
  136. "Normal": {
  137. "Foreground": "BrightBlue",
  138. "Background": "LightGray"
  139. },
  140. }
  141. },
  142. {
  143. "Menu": {
  144. "Normal": {
  145. "Foreground": "White",
  146. "Background": "Blue",
  147. "Style": "Bold"
  148. },
  149. }
  150. },
  151. {
  152. "Error": {
  153. "Normal": {
  154. "Foreground": "Red",
  155. "Background": "WhiteSmoke",
  156. "Style": "Italic"
  157. },
  158. }
  159. }
  160. ],
  161. "Glyphs.CheckStateChecked": "☒",
  162. "Glyphs.CheckStateNone": "□",
  163. "Glyphs.CheckStateUnChecked": "☐",
  164. "Glyphs.LeftBracket": "[",
  165. "Glyphs.RightBracket": "]"
  166. }
  167. },
  168. {
  169. "Dark": {
  170. "Dialog.DefaultButtonAlignment": "End",
  171. "Dialog.DefaultButtonAlignmentModes": "AddSpaceBetweenItems",
  172. "Dialog.DefaultBorderStyle": "Heavy",
  173. "Dialog.DefaultShadow": "Transparent",
  174. "FrameView.DefaultBorderStyle": "Single",
  175. "Window.DefaultBorderStyle": "Single",
  176. "MessageBox.DefaultButtonAlignment": "Center",
  177. "MessageBox.DefaultBorderStyle": "Heavy",
  178. "Button.DefaultShadow": "Opaque",
  179. "Schemes": [
  180. {
  181. "TopLevel": {
  182. "Normal": {
  183. "Foreground": "LightGray",
  184. "Background": "Black",
  185. "Style": "None"
  186. },
  187. "Focus": {
  188. "Foreground": "White",
  189. "Background": "Charcoal",
  190. "Style": "None"
  191. },
  192. "HotNormal": {
  193. "Foreground": "Silver",
  194. "Background": "Black",
  195. "Style": "Underline"
  196. },
  197. "Disabled": {
  198. "Foreground": "DarkGray",
  199. "Background": "Black",
  200. "Style": "Faint"
  201. },
  202. "HotFocus": {
  203. "Foreground": "White",
  204. "Background": "Charcoal",
  205. "Style": "Underline"
  206. },
  207. "Active": {
  208. "Foreground": "White",
  209. "Background": "Onyx",
  210. "Style": "Bold"
  211. },
  212. "HotActive": {
  213. "Foreground": "White",
  214. "Background": "Onyx",
  215. "Style": "Underline"
  216. },
  217. "Highlight": {
  218. "Foreground": "White",
  219. "Background": "OuterSpace",
  220. "Style": "None"
  221. },
  222. "Editable": {
  223. "Foreground": "LightYellow",
  224. "Background": "Black",
  225. "Style": "None"
  226. },
  227. "ReadOnly": {
  228. "Foreground": "Gray",
  229. "Background": "Black",
  230. "Style": "Italic"
  231. }
  232. }
  233. },
  234. {
  235. "Base": {
  236. "Normal": {
  237. "Foreground": "LightGray",
  238. "Background": "Black",
  239. "Style": "None"
  240. },
  241. "Focus": {
  242. "Foreground": "White",
  243. "Background": "Charcoal",
  244. "Style": "None"
  245. },
  246. "HotNormal": {
  247. "Foreground": "Silver",
  248. "Background": "Black",
  249. "Style": "Underline"
  250. },
  251. "Disabled": {
  252. "Foreground": "DarkGray",
  253. "Background": "Black",
  254. "Style": "Faint"
  255. },
  256. "HotFocus": {
  257. "Foreground": "White",
  258. "Background": "Charcoal",
  259. "Style": "Underline"
  260. },
  261. "Active": {
  262. "Foreground": "White",
  263. "Background": "Onyx"
  264. },
  265. "HotActive": {
  266. "Foreground": "White",
  267. "Background": "Onyx",
  268. "Style": "Underline"
  269. },
  270. "Highlight": {
  271. "Foreground": "White",
  272. "Background": "OuterSpace",
  273. "Style": "None"
  274. },
  275. "Editable": {
  276. "Foreground": "Gray",
  277. "Background": "Black",
  278. "Style": "None"
  279. },
  280. "ReadOnly": {
  281. "Foreground": "Gray",
  282. "Background": "Black",
  283. "Style": "Italic"
  284. }
  285. }
  286. },
  287. {
  288. "Dialog": {
  289. "Normal": {
  290. "Foreground": "LightGray",
  291. "Background": "Charcoal",
  292. "Style": "None"
  293. },
  294. "Focus": {
  295. "Foreground": "White",
  296. "Background": "SlateGray",
  297. "Style": "None"
  298. },
  299. "HotNormal": {
  300. "Foreground": "Silver",
  301. "Background": "Charcoal",
  302. "Style": "Underline"
  303. },
  304. "Disabled": {
  305. "Foreground": "DarkGray",
  306. "Background": "Charcoal",
  307. "Style": "Faint"
  308. },
  309. "HotFocus": {
  310. "Foreground": "White",
  311. "Background": "SlateGray",
  312. "Style": "Underline"
  313. },
  314. "Active": {
  315. "Foreground": "White",
  316. "Background": "OuterSpace",
  317. "Style": "Bold"
  318. },
  319. "HotActive": {
  320. "Foreground": "White",
  321. "Background": "OuterSpace",
  322. "Style": "Underline,Bold"
  323. },
  324. "Highlight": {
  325. "Foreground": "White",
  326. "Background": "Onyx",
  327. "Style": "None"
  328. },
  329. "Editable": {
  330. "Foreground": "Gray",
  331. "Background": "Charcoal",
  332. "Style": "None"
  333. },
  334. "ReadOnly": {
  335. "Foreground": "Gray",
  336. "Background": "Charcoal",
  337. "Style": "Italic"
  338. }
  339. }
  340. },
  341. {
  342. "Menu": {
  343. "Normal": {
  344. "Foreground": "White",
  345. "Background": "Onyx",
  346. "Style": "Bold"
  347. },
  348. "Focus": {
  349. "Foreground": "White",
  350. "Background": "Charcoal",
  351. "Style": "Bold"
  352. },
  353. "HotNormal": {
  354. "Foreground": "Silver",
  355. "Background": "Onyx",
  356. "Style": "Underline,Bold"
  357. },
  358. "Disabled": {
  359. "Foreground": "DarkGray",
  360. "Background": "Charcoal",
  361. "Style": "Faint"
  362. },
  363. "HotFocus": {
  364. "Foreground": "White",
  365. "Background": "Charcoal",
  366. "Style": "Underline,Bold"
  367. },
  368. "Active": {
  369. "Foreground": "White",
  370. "Background": "OuterSpace",
  371. "Style": "Bold"
  372. },
  373. "HotActive": {
  374. "Foreground": "White",
  375. "Background": "OuterSpace",
  376. "Style": "Underline,Bold"
  377. },
  378. "Highlight": {
  379. "Foreground": "White",
  380. "Background": "SlateGray",
  381. "Style": "None"
  382. },
  383. "Editable": {
  384. "Foreground": "Gray",
  385. "Background": "Onyx",
  386. "Style": "None"
  387. },
  388. "ReadOnly": {
  389. "Foreground": "Gray",
  390. "Background": "Onyx",
  391. "Style": "Italic"
  392. }
  393. }
  394. },
  395. {
  396. "Error": {
  397. "Normal": {
  398. "Foreground": "IndianRed",
  399. "Background": "Black",
  400. "Style": "None"
  401. },
  402. "Focus": {
  403. "Foreground": "White",
  404. "Background": "IndianRed",
  405. "Style": "None"
  406. },
  407. "HotNormal": {
  408. "Foreground": "LightCoral",
  409. "Background": "Black",
  410. "Style": "Underline"
  411. },
  412. "Disabled": {
  413. "Foreground": "DarkGray",
  414. "Background": "Black",
  415. "Style": "Faint"
  416. },
  417. "HotFocus": {
  418. "Foreground": "White",
  419. "Background": "IndianRed",
  420. "Style": "Underline"
  421. },
  422. "Active": {
  423. "Foreground": "White",
  424. "Background": "LightCoral",
  425. "Style": "Bold"
  426. },
  427. "HotActive": {
  428. "Foreground": "White",
  429. "Background": "LightCoral",
  430. "Style": "Underline,Bold"
  431. },
  432. "Highlight": {
  433. "Foreground": "White",
  434. "Background": "IndianRed",
  435. "Style": "None"
  436. },
  437. "Editable": {
  438. "Foreground": "Gray",
  439. "Background": "Black",
  440. "Style": "None"
  441. },
  442. "ReadOnly": {
  443. "Foreground": "Gray",
  444. "Background": "Black",
  445. "Style": "Italic"
  446. }
  447. }
  448. }
  449. ]
  450. }
  451. },
  452. {
  453. "Light": {
  454. "Dialog.DefaultButtonAlignment": "End",
  455. "Dialog.DefaultButtonAlignmentModes": "AddSpaceBetweenItems",
  456. "Dialog.DefaultBorderStyle": "Heavy",
  457. "Dialog.DefaultShadow": "Transparent",
  458. "FrameView.DefaultBorderStyle": "Single",
  459. "Window.DefaultBorderStyle": "Single",
  460. "MessageBox.DefaultButtonAlignment": "Center",
  461. "MessageBox.DefaultBorderStyle": "Heavy",
  462. "Button.DefaultShadow": "Opaque",
  463. "Schemes": [
  464. {
  465. "TopLevel": {
  466. "Normal": {
  467. "Foreground": "DimGray",
  468. "Background": "WhiteSmoke",
  469. "Style": "None"
  470. },
  471. "Focus": {
  472. "Foreground": "Black",
  473. "Background": "Gainsboro",
  474. "Style": "None"
  475. },
  476. "HotNormal": {
  477. "Foreground": "Gray",
  478. "Background": "WhiteSmoke",
  479. "Style": "Underline"
  480. },
  481. "Disabled": {
  482. "Foreground": "LightGray",
  483. "Background": "WhiteSmoke",
  484. "Style": "Faint"
  485. },
  486. "HotFocus": {
  487. "Foreground": "Black",
  488. "Background": "Gainsboro",
  489. "Style": "Underline"
  490. },
  491. "Active": {
  492. "Foreground": "Black",
  493. "Background": "White",
  494. "Style": "Bold"
  495. },
  496. "HotActive": {
  497. "Foreground": "Black",
  498. "Background": "White",
  499. "Style": "Underline,Bold"
  500. },
  501. "Highlight": {
  502. "Foreground": "Black",
  503. "Background": "LightGray",
  504. "Style": "None"
  505. },
  506. "Editable": {
  507. "Foreground": "Black",
  508. "Background": "LemonChiffon",
  509. "Style": "None"
  510. },
  511. "ReadOnly": {
  512. "Foreground": "Gray",
  513. "Background": "WhiteSmoke",
  514. "Style": "Italic"
  515. }
  516. }
  517. },
  518. {
  519. "Base": {
  520. "Normal": {
  521. "Foreground": "Gray",
  522. "Background": "WhiteSmoke",
  523. "Style": "None"
  524. },
  525. "Focus": {
  526. "Foreground": "Black",
  527. "Background": "Gainsboro",
  528. "Style": "None"
  529. },
  530. "HotNormal": {
  531. "Foreground": "Silver",
  532. "Background": "WhiteSmoke",
  533. "Style": "Underline"
  534. },
  535. "Disabled": {
  536. "Foreground": "LightGray",
  537. "Background": "WhiteSmoke",
  538. "Style": "Faint"
  539. },
  540. "HotFocus": {
  541. "Foreground": "Black",
  542. "Background": "Gainsboro",
  543. "Style": "Underline"
  544. },
  545. "Active": {
  546. "Foreground": "Black",
  547. "Background": "White",
  548. "Style": "Bold"
  549. },
  550. "HotActive": {
  551. "Foreground": "Black",
  552. "Background": "White",
  553. "Style": "Underline,Bold"
  554. },
  555. "Highlight": {
  556. "Foreground": "Black",
  557. "Background": "LightGray",
  558. "Style": "None"
  559. },
  560. "Editable": {
  561. "Foreground": "Black",
  562. "Background": "LemonChiffon",
  563. "Style": "None"
  564. },
  565. "ReadOnly": {
  566. "Foreground": "Gray",
  567. "Background": "WhiteSmoke",
  568. "Style": "Italic"
  569. }
  570. }
  571. },
  572. {
  573. "Dialog": {
  574. "Normal": {
  575. "Foreground": "DimGray",
  576. "Background": "WhiteSmoke",
  577. "Style": "None"
  578. },
  579. "Focus": {
  580. "Foreground": "Black",
  581. "Background": "Gainsboro",
  582. "Style": "None"
  583. },
  584. "HotNormal": {
  585. "Foreground": "Gray",
  586. "Background": "WhiteSmoke",
  587. "Style": "Underline"
  588. },
  589. "Disabled": {
  590. "Foreground": "LightGray",
  591. "Background": "WhiteSmoke",
  592. "Style": "Faint"
  593. },
  594. "HotFocus": {
  595. "Foreground": "Black",
  596. "Background": "Gainsboro",
  597. "Style": "Underline"
  598. },
  599. "Active": {
  600. "Foreground": "Black",
  601. "Background": "White",
  602. "Style": "Bold"
  603. },
  604. "HotActive": {
  605. "Foreground": "Black",
  606. "Background": "White",
  607. "Style": "Underline,Bold"
  608. },
  609. "Highlight": {
  610. "Foreground": "Black",
  611. "Background": "LightGray",
  612. "Style": "None"
  613. },
  614. "Editable": {
  615. "Foreground": "Black",
  616. "Background": "LemonChiffon",
  617. "Style": "None"
  618. },
  619. "ReadOnly": {
  620. "Foreground": "Gray",
  621. "Background": "WhiteSmoke",
  622. "Style": "Italic"
  623. }
  624. }
  625. },
  626. {
  627. "Menu": {
  628. "Normal": {
  629. "Foreground": "DimGray",
  630. "Background": "White",
  631. "Style": "Bold"
  632. },
  633. "Focus": {
  634. "Foreground": "Black",
  635. "Background": "Gainsboro",
  636. "Style": "Bold"
  637. },
  638. "HotNormal": {
  639. "Foreground": "Gray",
  640. "Background": "White",
  641. "Style": "Underline,Bold"
  642. },
  643. "Disabled": {
  644. "Foreground": "LightGray",
  645. "Background": "WhiteSmoke",
  646. "Style": "Faint"
  647. },
  648. "HotFocus": {
  649. "Foreground": "Black",
  650. "Background": "Gainsboro",
  651. "Style": "Underline,Bold"
  652. },
  653. "Active": {
  654. "Foreground": "Black",
  655. "Background": "WhiteSmoke",
  656. "Style": "Bold"
  657. },
  658. "HotActive": {
  659. "Foreground": "Black",
  660. "Background": "WhiteSmoke",
  661. "Style": "Underline,Bold"
  662. },
  663. "Highlight": {
  664. "Foreground": "Black",
  665. "Background": "LemonChiffon",
  666. "Style": "None"
  667. },
  668. "Editable": {
  669. "Foreground": "DimGray",
  670. "Background": "White",
  671. "Style": "None"
  672. },
  673. "ReadOnly": {
  674. "Foreground": "Gray",
  675. "Background": "White",
  676. "Style": "Italic"
  677. }
  678. }
  679. },
  680. {
  681. "Error": {
  682. "Normal": {
  683. "Foreground": "FireBrick",
  684. "Background": "WhiteSmoke",
  685. "Style": "None"
  686. },
  687. "Focus": {
  688. "Foreground": "WhiteSmoke",
  689. "Background": "FireBrick",
  690. "Style": "None"
  691. },
  692. "HotNormal": {
  693. "Foreground": "LightCoral",
  694. "Background": "WhiteSmoke",
  695. "Style": "Underline"
  696. },
  697. "Disabled": {
  698. "Foreground": "LightGray",
  699. "Background": "WhiteSmoke",
  700. "Style": "Faint"
  701. },
  702. "HotFocus": {
  703. "Foreground": "WhiteSmoke",
  704. "Background": "FireBrick",
  705. "Style": "Underline"
  706. },
  707. "Active": {
  708. "Foreground": "WhiteSmoke",
  709. "Background": "LightCoral",
  710. "Style": "Bold"
  711. },
  712. "HotActive": {
  713. "Foreground": "WhiteSmoke",
  714. "Background": "LightCoral",
  715. "Style": "Underline,Bold"
  716. },
  717. "Highlight": {
  718. "Foreground": "WhiteSmoke",
  719. "Background": "FireBrick",
  720. "Style": "None"
  721. },
  722. "Editable": {
  723. "Foreground": "Black",
  724. "Background": "WhiteSmoke",
  725. "Style": "None"
  726. },
  727. "ReadOnly": {
  728. "Foreground": "Gray",
  729. "Background": "WhiteSmoke",
  730. "Style": "Italic"
  731. }
  732. }
  733. }
  734. ]
  735. }
  736. },
  737. {
  738. "Green Phosphor": {
  739. "Dialog.DefaultShadow": "None",
  740. "FrameView.DefaultBorderStyle": "Single",
  741. "Window.DefaultBorderStyle": "Single",
  742. "MessageBox.DefaultBorderStyle": "Single",
  743. "Button.DefaultShadow": "None",
  744. "Menuv2.DefaultBorderStyle": "Single",
  745. "Schemes": [
  746. {
  747. "TopLevel": {
  748. "Normal": {
  749. "Foreground": "GreenPhosphor",
  750. "Background": "Black",
  751. "Style": "None"
  752. }
  753. }
  754. },
  755. {
  756. "Base": {
  757. "Normal": {
  758. "Foreground": "GreenPhosphor",
  759. "Background": "Black",
  760. "Style": "None"
  761. },
  762. "Active": {
  763. "Foreground": "GreenPhosphor",
  764. "Background": "Black",
  765. "Style": "Bold"
  766. },
  767. "Highlight": {
  768. "Foreground": "GreenPhosphor",
  769. "Background": "Black",
  770. "Style": "Italic"
  771. },
  772. "Editable": {
  773. "Foreground": "GreenPhosphor",
  774. "Background": "Charcoal",
  775. "Style": "None"
  776. },
  777. "ReadOnly": {
  778. "Foreground": "GreenPhosphor",
  779. "Background": "Charcoal",
  780. "Style": "Faint"
  781. }
  782. }
  783. },
  784. {
  785. "Dialog": {
  786. "Normal": {
  787. "Foreground": "Black",
  788. "Background": "GreenPhosphor",
  789. "Style": "Bold"
  790. },
  791. "Active": {
  792. "Foreground": "Black",
  793. "Background": "GreenPhosphor",
  794. "Style": "Bold"
  795. },
  796. "Highlight": {
  797. "Foreground": "Black",
  798. "Background": "GreenPhosphor",
  799. "Style": "None"
  800. },
  801. "Editable": {
  802. "Foreground": "GreenPhosphor",
  803. "Background": "Charcoal",
  804. "Style": "None"
  805. },
  806. "ReadOnly": {
  807. "Foreground": "GreenPhosphor",
  808. "Background": "Charcoal",
  809. "Style": "Faint"
  810. }
  811. }
  812. },
  813. {
  814. "Menu": {
  815. "Normal": {
  816. "Foreground": "Black",
  817. "Background": "GreenPhosphor",
  818. "Style": "Bold"
  819. },
  820. "Active": {
  821. "Foreground": "Black",
  822. "Background": "GreenPhosphor",
  823. "Style": "Bold"
  824. },
  825. "Highlight": {
  826. "Foreground": "Black",
  827. "Background": "GreenPhosphor",
  828. "Style": "None"
  829. },
  830. "Editable": {
  831. "Foreground": "GreenPhosphor",
  832. "Background": "Charcoal",
  833. "Style": "None"
  834. },
  835. "ReadOnly": {
  836. "Foreground": "GreenPhosphor",
  837. "Background": "Charcoal",
  838. "Style": "Faint"
  839. }
  840. }
  841. },
  842. {
  843. "Error": {
  844. "Normal": {
  845. "Foreground": "GreenPhosphor",
  846. "Background": "Black",
  847. "Style": "Italic"
  848. },
  849. "Active": {
  850. "Foreground": "GreenPhosphor",
  851. "Background": "Black",
  852. "Style": "Bold,Italic"
  853. },
  854. "Highlight": {
  855. "Foreground": "GreenPhosphor",
  856. "Background": "Black",
  857. "Style": "Italic"
  858. },
  859. "Editable": {
  860. "Foreground": "GreenPhosphor",
  861. "Background": "Charcoal",
  862. "Style": "Italic"
  863. },
  864. "ReadOnly": {
  865. "Foreground": "GreenPhosphor",
  866. "Background": "Charcoal",
  867. "Style": "Faint,Italic"
  868. }
  869. }
  870. }
  871. ]
  872. }
  873. },
  874. {
  875. "Amber Phosphor": {
  876. "Dialog.DefaultShadow": "None",
  877. "FrameView.DefaultBorderStyle": "Single",
  878. "Window.DefaultBorderStyle": "Single",
  879. "MessageBox.DefaultBorderStyle": "Single",
  880. "Button.DefaultShadow": "None",
  881. "Menuv2.DefaultBorderStyle": "Single",
  882. "Schemes": [
  883. {
  884. "TopLevel": {
  885. "Normal": {
  886. "Foreground": "AmberPhosphor",
  887. "Background": "Black",
  888. "Style": "None"
  889. }
  890. }
  891. },
  892. {
  893. "Base": {
  894. "Normal": {
  895. "Foreground": "AmberPhosphor",
  896. "Background": "Black",
  897. "Style": "None"
  898. },
  899. "Active": {
  900. "Foreground": "AmberPhosphor",
  901. "Background": "Black",
  902. "Style": "Bold"
  903. },
  904. "Highlight": {
  905. "Foreground": "AmberPhosphor",
  906. "Background": "Black",
  907. "Style": "Italic"
  908. },
  909. "Editable": {
  910. "Foreground": "AmberPhosphor",
  911. "Background": "Charcoal",
  912. "Style": "None"
  913. },
  914. "ReadOnly": {
  915. "Foreground": "AmberPhosphor",
  916. "Background": "Charcoal",
  917. "Style": "Faint"
  918. }
  919. }
  920. },
  921. {
  922. "Dialog": {
  923. "Normal": {
  924. "Foreground": "Black",
  925. "Background": "AmberPhosphor",
  926. "Style": "Bold"
  927. },
  928. "Active": {
  929. "Foreground": "Black",
  930. "Background": "AmberPhosphor",
  931. "Style": "Bold"
  932. },
  933. "Highlight": {
  934. "Foreground": "Black",
  935. "Background": "AmberPhosphor",
  936. "Style": "None"
  937. },
  938. "Editable": {
  939. "Foreground": "AmberPhosphor",
  940. "Background": "Charcoal",
  941. "Style": "None"
  942. },
  943. "ReadOnly": {
  944. "Foreground": "AmberPhosphor",
  945. "Background": "Charcoal",
  946. "Style": "Faint"
  947. }
  948. }
  949. },
  950. {
  951. "Menu": {
  952. "Normal": {
  953. "Foreground": "Black",
  954. "Background": "AmberPhosphor",
  955. "Style": "Bold"
  956. },
  957. "Active": {
  958. "Foreground": "Black",
  959. "Background": "AmberPhosphor",
  960. "Style": "Bold"
  961. },
  962. "Highlight": {
  963. "Foreground": "Black",
  964. "Background": "AmberPhosphor",
  965. "Style": "None"
  966. },
  967. "Editable": {
  968. "Foreground": "AmberPhosphor",
  969. "Background": "Charcoal",
  970. "Style": "None"
  971. },
  972. "ReadOnly": {
  973. "Foreground": "AmberPhosphor",
  974. "Background": "Charcoal",
  975. "Style": "Faint"
  976. }
  977. }
  978. },
  979. {
  980. "Error": {
  981. "Normal": {
  982. "Foreground": "AmberPhosphor",
  983. "Background": "Black",
  984. "Style": "Italic"
  985. },
  986. "Active": {
  987. "Foreground": "AmberPhosphor",
  988. "Background": "Black",
  989. "Style": "Bold,Italic"
  990. },
  991. "Highlight": {
  992. "Foreground": "AmberPhosphor",
  993. "Background": "Black",
  994. "Style": "Italic"
  995. },
  996. "Editable": {
  997. "Foreground": "AmberPhosphor",
  998. "Background": "Charcoal",
  999. "Style": "Italic"
  1000. },
  1001. "ReadOnly": {
  1002. "Foreground": "AmberPhosphor",
  1003. "Background": "Charcoal",
  1004. "Style": "Faint,Italic"
  1005. }
  1006. }
  1007. }
  1008. ]
  1009. }
  1010. },
  1011. {
  1012. "8-Bit": {
  1013. "Dialog.DefaultShadow": "None",
  1014. "FrameView.DefaultBorderStyle": "Single",
  1015. "Window.DefaultBorderStyle": "Single",
  1016. "MessageBox.DefaultBorderStyle": "Single",
  1017. "Button.DefaultShadow": "None",
  1018. "Menuv2.DefaultBorderStyle": "None",
  1019. "Glyphs.LeftBracket": "[",
  1020. "Glyphs.RightBracket": "]",
  1021. "Glyphs.CheckStateChecked": "X",
  1022. "Glyphs.CheckStateUnChecked": "O",
  1023. "Glyphs.CheckStateNone": " ",
  1024. "Glyphs.Selected": "*",
  1025. "Glyphs.UnSelected": " ",
  1026. "Glyphs.RightArrow": ">",
  1027. "Glyphs.LeftArrow": "<",
  1028. "Glyphs.DownArrow": "v",
  1029. "Glyphs.UpArrow": "^",
  1030. "Glyphs.LeftDefaultIndicator": ">",
  1031. "Glyphs.RightDefaultIndicator": "<",
  1032. "Glyphs.BlocksMeterSegment": "#",
  1033. "Glyphs.ContinuousMeterSegment": " ",
  1034. "Glyphs.Stipple": ".",
  1035. "Glyphs.Diamond": "+",
  1036. "Glyphs.Close": "X",
  1037. "Glyphs.Minimize": "_",
  1038. "Glyphs.Maximize": "^",
  1039. "Glyphs.Dot": ".",
  1040. "Glyphs.DottedSquare": "#",
  1041. "Glyphs.BlackCircle": "O",
  1042. "Glyphs.Expand": "+",
  1043. "Glyphs.Collapse": "-",
  1044. "Glyphs.IdenticalTo": "=",
  1045. "Glyphs.Move": "+",
  1046. "Glyphs.SizeHorizontal": "-",
  1047. "Glyphs.SizeVertical": "|",
  1048. "Glyphs.SizeTopLeft": "/",
  1049. "Glyphs.SizeTopRight": "\\",
  1050. "Glyphs.SizeBottomRight": "/",
  1051. "Glyphs.SizeBottomLeft": "\\",
  1052. "Glyphs.Apple": "@",
  1053. "Glyphs.AppleBMP": "@",
  1054. "Glyphs.HLine": "-",
  1055. "Glyphs.VLine": "|",
  1056. "Glyphs.HLineDbl": "=",
  1057. "Glyphs.VLineDbl": "|",
  1058. "Glyphs.HLineHvDa2": "-",
  1059. "Glyphs.VLineHvDa2": "|",
  1060. "Glyphs.HLineHvDa3": "-",
  1061. "Glyphs.VLineHvDa3": "|",
  1062. "Glyphs.HLineHvDa4": "-",
  1063. "Glyphs.VLineHvDa4": "|",
  1064. "Glyphs.HLineDa2": "-",
  1065. "Glyphs.VLineDa2": "|",
  1066. "Glyphs.HLineDa3": "-",
  1067. "Glyphs.VLineDa3": "|",
  1068. "Glyphs.HLineDa4": "-",
  1069. "Glyphs.VLineDa4": "|",
  1070. "Glyphs.HLineHv": "=",
  1071. "Glyphs.VLineHv": "|",
  1072. "Glyphs.HalfLeftLine": "-",
  1073. "Glyphs.HalfTopLine": "|",
  1074. "Glyphs.HalfRightLine": "-",
  1075. "Glyphs.HalfBottomLine": "|",
  1076. "Glyphs.HalfLeftLineHv": "-",
  1077. "Glyphs.HalfTopLineHv": "|",
  1078. "Glyphs.HalfRightLineHv": "-",
  1079. "Glyphs.HalfBottomLineLt": "|",
  1080. "Glyphs.RightSideLineLtHv": "-",
  1081. "Glyphs.BottomSideLineLtHv": "|",
  1082. "Glyphs.LeftSideLineHvLt": "-",
  1083. "Glyphs.TopSideLineHvLt": "|",
  1084. "Glyphs.ULCorner": "+",
  1085. "Glyphs.ULCornerDbl": "+",
  1086. "Glyphs.ULCornerR": "+",
  1087. "Glyphs.ULCornerHv": "+",
  1088. "Glyphs.ULCornerHvLt": "+",
  1089. "Glyphs.ULCornerLtHv": "+",
  1090. "Glyphs.ULCornerDblSingle": "+",
  1091. "Glyphs.ULCornerSingleDbl": "+",
  1092. "Glyphs.LLCorner": "+",
  1093. "Glyphs.LLCornerHv": "+",
  1094. "Glyphs.LLCornerHvLt": "+",
  1095. "Glyphs.LLCornerLtHv": "+",
  1096. "Glyphs.LLCornerDbl": "+",
  1097. "Glyphs.LLCornerSingleDbl": "+",
  1098. "Glyphs.LLCornerDblSingle": "+",
  1099. "Glyphs.LLCornerR": "+",
  1100. "Glyphs.URCorner": "+",
  1101. "Glyphs.URCornerDbl": "+",
  1102. "Glyphs.URCornerR": "+",
  1103. "Glyphs.URCornerHv": "+",
  1104. "Glyphs.URCornerHvLt": "+",
  1105. "Glyphs.URCornerLtHv": "+",
  1106. "Glyphs.URCornerDblSingle": "+",
  1107. "Glyphs.URCornerSingleDbl": "+",
  1108. "Glyphs.LRCorner": "+",
  1109. "Glyphs.LRCornerDbl": "+",
  1110. "Glyphs.LRCornerR": "+",
  1111. "Glyphs.LRCornerHv": "+",
  1112. "Glyphs.LRCornerDblSingle": "+",
  1113. "Glyphs.LRCornerSingleDbl": "+",
  1114. "Glyphs.LRCornerLtHv": "+",
  1115. "Glyphs.LRCornerHvLt": "+",
  1116. "Glyphs.LeftTee": "+",
  1117. "Glyphs.LeftTeeDblH": "+",
  1118. "Glyphs.LeftTeeDblV": "+",
  1119. "Glyphs.LeftTeeDbl": "+",
  1120. "Glyphs.LeftTeeHvH": "+",
  1121. "Glyphs.LeftTeeHvV": "+",
  1122. "Glyphs.LeftTeeHvDblH": "+",
  1123. "Glyphs.RightTee": "+",
  1124. "Glyphs.RightTeeDblH": "+",
  1125. "Glyphs.RightTeeDblV": "+",
  1126. "Glyphs.RightTeeDbl": "+",
  1127. "Glyphs.RightTeeHvH": "+",
  1128. "Glyphs.RightTeeHvV": "+",
  1129. "Glyphs.RightTeeHvDblH": "+",
  1130. "Glyphs.TopTee": "+",
  1131. "Glyphs.TopTeeDblH": "+",
  1132. "Glyphs.TopTeeDblV": "+",
  1133. "Glyphs.TopTeeDbl": "+",
  1134. "Glyphs.TopTeeHvH": "+",
  1135. "Glyphs.TopTeeHvV": "+",
  1136. "Glyphs.TopTeeHvDblH": "+",
  1137. "Glyphs.BottomTee": "+",
  1138. "Glyphs.BottomTeeDblH": "+",
  1139. "Glyphs.BottomTeeDblV": "+",
  1140. "Glyphs.BottomTeeDbl": "+",
  1141. "Glyphs.BottomTeeHvH": "+",
  1142. "Glyphs.BottomTeeHvV": "+",
  1143. "Glyphs.BottomTeeHvDblH": "+",
  1144. "Glyphs.Cross": "+",
  1145. "Glyphs.CrossDblH": "+",
  1146. "Glyphs.CrossDblV": "+",
  1147. "Glyphs.CrossDbl": "+",
  1148. "Glyphs.CrossHvH": "+",
  1149. "Glyphs.CrossHvV": "+",
  1150. "Glyphs.CrossHv": "+",
  1151. "Glyphs.ShadowVerticalStart": "|",
  1152. "Glyphs.ShadowVertical": "|",
  1153. "Glyphs.ShadowHorizontalStart": "-",
  1154. "Glyphs.ShadowHorizontal": "-",
  1155. "Glyphs.ShadowHorizontalEnd": "-",
  1156. "Schemes": [
  1157. {
  1158. "TopLevel": {
  1159. "Normal": {
  1160. "Foreground": "White",
  1161. "Background": "Black"
  1162. },
  1163. "Focus": {
  1164. "Foreground": "Black",
  1165. "Background": "White"
  1166. },
  1167. "HotNormal": {
  1168. "Foreground": "Black",
  1169. "Background": "White"
  1170. },
  1171. "HotFocus": {
  1172. "Foreground": "White",
  1173. "Background": "Black"
  1174. },
  1175. "Disabled": {
  1176. "Foreground": "Black",
  1177. "Background": "Black"
  1178. },
  1179. "Active": {
  1180. "Foreground": "Black",
  1181. "Background": "White"
  1182. },
  1183. "HotActive": {
  1184. "Foreground": "White",
  1185. "Background": "Black"
  1186. },
  1187. "Highlight": {
  1188. "Foreground": "Black",
  1189. "Background": "White"
  1190. },
  1191. "Editable": {
  1192. "Foreground": "White",
  1193. "Background": "Black"
  1194. },
  1195. "ReadOnly": {
  1196. "Foreground": "White",
  1197. "Background": "Black"
  1198. }
  1199. }
  1200. },
  1201. {
  1202. "Base": {
  1203. "Normal": {
  1204. "Foreground": "White",
  1205. "Background": "Black"
  1206. },
  1207. "Focus": {
  1208. "Foreground": "Black",
  1209. "Background": "White"
  1210. },
  1211. "HotNormal": {
  1212. "Foreground": "Black",
  1213. "Background": "White"
  1214. },
  1215. "HotFocus": {
  1216. "Foreground": "White",
  1217. "Background": "Black"
  1218. },
  1219. "Disabled": {
  1220. "Foreground": "Black",
  1221. "Background": "Black"
  1222. },
  1223. "Active": {
  1224. "Foreground": "Black",
  1225. "Background": "White"
  1226. },
  1227. "HotActive": {
  1228. "Foreground": "White",
  1229. "Background": "Black"
  1230. },
  1231. "Highlight": {
  1232. "Foreground": "Black",
  1233. "Background": "White"
  1234. },
  1235. "Editable": {
  1236. "Foreground": "White",
  1237. "Background": "Black"
  1238. },
  1239. "ReadOnly": {
  1240. "Foreground": "White",
  1241. "Background": "Black"
  1242. }
  1243. }
  1244. },
  1245. {
  1246. "Dialog": {
  1247. "Normal": {
  1248. "Foreground": "Black",
  1249. "Background": "White"
  1250. },
  1251. "Focus": {
  1252. "Foreground": "White",
  1253. "Background": "Black"
  1254. },
  1255. "HotNormal": {
  1256. "Foreground": "White",
  1257. "Background": "Black"
  1258. },
  1259. "HotFocus": {
  1260. "Foreground": "Black",
  1261. "Background": "White"
  1262. },
  1263. "Disabled": {
  1264. "Foreground": "White",
  1265. "Background": "White"
  1266. },
  1267. "Active": {
  1268. "Foreground": "White",
  1269. "Background": "Black"
  1270. },
  1271. "HotActive": {
  1272. "Foreground": "Black",
  1273. "Background": "White"
  1274. },
  1275. "Highlight": {
  1276. "Foreground": "White",
  1277. "Background": "Black"
  1278. },
  1279. "Editable": {
  1280. "Foreground": "Black",
  1281. "Background": "White"
  1282. },
  1283. "ReadOnly": {
  1284. "Foreground": "Black",
  1285. "Background": "White"
  1286. }
  1287. }
  1288. },
  1289. {
  1290. "Menu": {
  1291. "Normal": {
  1292. "Foreground": "Black",
  1293. "Background": "White"
  1294. },
  1295. "Focus": {
  1296. "Foreground": "White",
  1297. "Background": "Black"
  1298. },
  1299. "HotNormal": {
  1300. "Foreground": "White",
  1301. "Background": "Black"
  1302. },
  1303. "HotFocus": {
  1304. "Foreground": "Black",
  1305. "Background": "White"
  1306. },
  1307. "Disabled": {
  1308. "Foreground": "White",
  1309. "Background": "White"
  1310. },
  1311. "Active": {
  1312. "Foreground": "White",
  1313. "Background": "Black"
  1314. },
  1315. "HotActive": {
  1316. "Foreground": "Black",
  1317. "Background": "White"
  1318. },
  1319. "Highlight": {
  1320. "Foreground": "White",
  1321. "Background": "Black"
  1322. },
  1323. "Editable": {
  1324. "Foreground": "Black",
  1325. "Background": "White"
  1326. },
  1327. "ReadOnly": {
  1328. "Foreground": "Black",
  1329. "Background": "White"
  1330. }
  1331. }
  1332. },
  1333. {
  1334. "Error": {
  1335. "Normal": {
  1336. "Foreground": "White",
  1337. "Background": "Black"
  1338. },
  1339. "Focus": {
  1340. "Foreground": "Black",
  1341. "Background": "White"
  1342. },
  1343. "HotNormal": {
  1344. "Foreground": "Black",
  1345. "Background": "White"
  1346. },
  1347. "HotFocus": {
  1348. "Foreground": "White",
  1349. "Background": "Black"
  1350. },
  1351. "Disabled": {
  1352. "Foreground": "Black",
  1353. "Background": "Black"
  1354. },
  1355. "Active": {
  1356. "Foreground": "Black",
  1357. "Background": "White"
  1358. },
  1359. "HotActive": {
  1360. "Foreground": "White",
  1361. "Background": "Black"
  1362. },
  1363. "Highlight": {
  1364. "Foreground": "Black",
  1365. "Background": "White"
  1366. },
  1367. "Editable": {
  1368. "Foreground": "White",
  1369. "Background": "Black"
  1370. },
  1371. "ReadOnly": {
  1372. "Foreground": "White",
  1373. "Background": "Black"
  1374. }
  1375. }
  1376. }
  1377. ]
  1378. }
  1379. }
  1380. ]
  1381. }