colors.json 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547
  1. {
  2. "1C Enterprise": {
  3. "color": "#814CCC",
  4. "url": "https://github.com/trending?l=1C-Enterprise"
  5. },
  6. "2-Dimensional Array": {
  7. "color": "#38761D",
  8. "url": "https://github.com/trending?l=2-Dimensional-Array"
  9. },
  10. "4D": {
  11. "color": "#004289",
  12. "url": "https://github.com/trending?l=4D"
  13. },
  14. "ABAP": {
  15. "color": "#E8274B",
  16. "url": "https://github.com/trending?l=ABAP"
  17. },
  18. "ABAP CDS": {
  19. "color": "#555e25",
  20. "url": "https://github.com/trending?l=ABAP-CDS"
  21. },
  22. "ActionScript": {
  23. "color": "#882B0F",
  24. "url": "https://github.com/trending?l=ActionScript"
  25. },
  26. "Ada": {
  27. "color": "#02f88c",
  28. "url": "https://github.com/trending?l=Ada"
  29. },
  30. "Adblock Filter List": {
  31. "color": "#800000",
  32. "url": "https://github.com/trending?l=Adblock-Filter-List"
  33. },
  34. "Adobe Font Metrics": {
  35. "color": "#fa0f00",
  36. "url": "https://github.com/trending?l=Adobe-Font-Metrics"
  37. },
  38. "Agda": {
  39. "color": "#315665",
  40. "url": "https://github.com/trending?l=Agda"
  41. },
  42. "AGS Script": {
  43. "color": "#B9D9FF",
  44. "url": "https://github.com/trending?l=AGS-Script"
  45. },
  46. "AIDL": {
  47. "color": "#34EB6B",
  48. "url": "https://github.com/trending?l=AIDL"
  49. },
  50. "AL": {
  51. "color": "#3AA2B5",
  52. "url": "https://github.com/trending?l=AL"
  53. },
  54. "Alloy": {
  55. "color": "#64C800",
  56. "url": "https://github.com/trending?l=Alloy"
  57. },
  58. "Alpine Abuild": {
  59. "color": "#0D597F",
  60. "url": "https://github.com/trending?l=Alpine-Abuild"
  61. },
  62. "Altium Designer": {
  63. "color": "#A89663",
  64. "url": "https://github.com/trending?l=Altium-Designer"
  65. },
  66. "AMPL": {
  67. "color": "#E6EFBB",
  68. "url": "https://github.com/trending?l=AMPL"
  69. },
  70. "AngelScript": {
  71. "color": "#C7D7DC",
  72. "url": "https://github.com/trending?l=AngelScript"
  73. },
  74. "Ant Build System": {
  75. "color": "#A9157E",
  76. "url": "https://github.com/trending?l=Ant-Build-System"
  77. },
  78. "Antlers": {
  79. "color": "#ff269e",
  80. "url": "https://github.com/trending?l=Antlers"
  81. },
  82. "ANTLR": {
  83. "color": "#9DC3FF",
  84. "url": "https://github.com/trending?l=ANTLR"
  85. },
  86. "ApacheConf": {
  87. "color": "#d12127",
  88. "url": "https://github.com/trending?l=ApacheConf"
  89. },
  90. "Apex": {
  91. "color": "#1797c0",
  92. "url": "https://github.com/trending?l=Apex"
  93. },
  94. "API Blueprint": {
  95. "color": "#2ACCA8",
  96. "url": "https://github.com/trending?l=API-Blueprint"
  97. },
  98. "APL": {
  99. "color": "#5A8164",
  100. "url": "https://github.com/trending?l=APL"
  101. },
  102. "Apollo Guidance Computer": {
  103. "color": "#0B3D91",
  104. "url": "https://github.com/trending?l=Apollo-Guidance-Computer"
  105. },
  106. "AppleScript": {
  107. "color": "#101F1F",
  108. "url": "https://github.com/trending?l=AppleScript"
  109. },
  110. "Arc": {
  111. "color": "#aa2afe",
  112. "url": "https://github.com/trending?l=Arc"
  113. },
  114. "AsciiDoc": {
  115. "color": "#73a0c5",
  116. "url": "https://github.com/trending?l=AsciiDoc"
  117. },
  118. "ASL": {
  119. "color": null,
  120. "url": "https://github.com/trending?l=ASL"
  121. },
  122. "ASP.NET": {
  123. "color": "#9400ff",
  124. "url": "https://github.com/trending?l=ASP.NET"
  125. },
  126. "AspectJ": {
  127. "color": "#a957b0",
  128. "url": "https://github.com/trending?l=AspectJ"
  129. },
  130. "Assembly": {
  131. "color": "#6E4C13",
  132. "url": "https://github.com/trending?l=Assembly"
  133. },
  134. "Astro": {
  135. "color": "#ff5a03",
  136. "url": "https://github.com/trending?l=Astro"
  137. },
  138. "Asymptote": {
  139. "color": "#ff0000",
  140. "url": "https://github.com/trending?l=Asymptote"
  141. },
  142. "ATS": {
  143. "color": "#1ac620",
  144. "url": "https://github.com/trending?l=ATS"
  145. },
  146. "Augeas": {
  147. "color": "#9CC134",
  148. "url": "https://github.com/trending?l=Augeas"
  149. },
  150. "AutoHotkey": {
  151. "color": "#6594b9",
  152. "url": "https://github.com/trending?l=AutoHotkey"
  153. },
  154. "AutoIt": {
  155. "color": "#1C3552",
  156. "url": "https://github.com/trending?l=AutoIt"
  157. },
  158. "Avro IDL": {
  159. "color": "#0040FF",
  160. "url": "https://github.com/trending?l=Avro-IDL"
  161. },
  162. "Awk": {
  163. "color": "#c30e9b",
  164. "url": "https://github.com/trending?l=Awk"
  165. },
  166. "Ballerina": {
  167. "color": "#FF5000",
  168. "url": "https://github.com/trending?l=Ballerina"
  169. },
  170. "BASIC": {
  171. "color": "#ff0000",
  172. "url": "https://github.com/trending?l=BASIC"
  173. },
  174. "Batchfile": {
  175. "color": "#C1F12E",
  176. "url": "https://github.com/trending?l=Batchfile"
  177. },
  178. "Beef": {
  179. "color": "#a52f4e",
  180. "url": "https://github.com/trending?l=Beef"
  181. },
  182. "Befunge": {
  183. "color": null,
  184. "url": "https://github.com/trending?l=Befunge"
  185. },
  186. "Berry": {
  187. "color": "#15A13C",
  188. "url": "https://github.com/trending?l=Berry"
  189. },
  190. "BibTeX": {
  191. "color": "#778899",
  192. "url": "https://github.com/trending?l=BibTeX"
  193. },
  194. "Bicep": {
  195. "color": "#519aba",
  196. "url": "https://github.com/trending?l=Bicep"
  197. },
  198. "Bikeshed": {
  199. "color": "#5562ac",
  200. "url": "https://github.com/trending?l=Bikeshed"
  201. },
  202. "Bison": {
  203. "color": "#6A463F",
  204. "url": "https://github.com/trending?l=Bison"
  205. },
  206. "BitBake": {
  207. "color": "#00bce4",
  208. "url": "https://github.com/trending?l=BitBake"
  209. },
  210. "Blade": {
  211. "color": "#f7523f",
  212. "url": "https://github.com/trending?l=Blade"
  213. },
  214. "BlitzBasic": {
  215. "color": "#00FFAE",
  216. "url": "https://github.com/trending?l=BlitzBasic"
  217. },
  218. "BlitzMax": {
  219. "color": "#cd6400",
  220. "url": "https://github.com/trending?l=BlitzMax"
  221. },
  222. "Bluespec": {
  223. "color": "#12223c",
  224. "url": "https://github.com/trending?l=Bluespec"
  225. },
  226. "Bluespec BH": {
  227. "color": "#12223c",
  228. "url": "https://github.com/trending?l=Bluespec-BH"
  229. },
  230. "Boo": {
  231. "color": "#d4bec1",
  232. "url": "https://github.com/trending?l=Boo"
  233. },
  234. "Boogie": {
  235. "color": "#c80fa0",
  236. "url": "https://github.com/trending?l=Boogie"
  237. },
  238. "Brainfuck": {
  239. "color": "#2F2530",
  240. "url": "https://github.com/trending?l=Brainfuck"
  241. },
  242. "BrighterScript": {
  243. "color": "#66AABB",
  244. "url": "https://github.com/trending?l=BrighterScript"
  245. },
  246. "Brightscript": {
  247. "color": "#662D91",
  248. "url": "https://github.com/trending?l=Brightscript"
  249. },
  250. "Browserslist": {
  251. "color": "#ffd539",
  252. "url": "https://github.com/trending?l=Browserslist"
  253. },
  254. "C": {
  255. "color": "#555555",
  256. "url": "https://github.com/trending?l=C"
  257. },
  258. "C#": {
  259. "color": "#178600",
  260. "url": "https://github.com/trending?l=Csharp"
  261. },
  262. "C++": {
  263. "color": "#f34b7d",
  264. "url": "https://github.com/trending?l=C++"
  265. },
  266. "C2hs Haskell": {
  267. "color": null,
  268. "url": "https://github.com/trending?l=C2hs-Haskell"
  269. },
  270. "Cabal Config": {
  271. "color": "#483465",
  272. "url": "https://github.com/trending?l=Cabal-Config"
  273. },
  274. "Cadence": {
  275. "color": "#00ef8b",
  276. "url": "https://github.com/trending?l=Cadence"
  277. },
  278. "Cairo": {
  279. "color": "#ff4a48",
  280. "url": "https://github.com/trending?l=Cairo"
  281. },
  282. "CameLIGO": {
  283. "color": "#3be133",
  284. "url": "https://github.com/trending?l=CameLIGO"
  285. },
  286. "CAP CDS": {
  287. "color": "#0092d1",
  288. "url": "https://github.com/trending?l=CAP-CDS"
  289. },
  290. "Cap'n Proto": {
  291. "color": "#c42727",
  292. "url": "https://github.com/trending?l=Cap'n-Proto"
  293. },
  294. "CartoCSS": {
  295. "color": null,
  296. "url": "https://github.com/trending?l=CartoCSS"
  297. },
  298. "Ceylon": {
  299. "color": "#dfa535",
  300. "url": "https://github.com/trending?l=Ceylon"
  301. },
  302. "Chapel": {
  303. "color": "#8dc63f",
  304. "url": "https://github.com/trending?l=Chapel"
  305. },
  306. "Charity": {
  307. "color": null,
  308. "url": "https://github.com/trending?l=Charity"
  309. },
  310. "ChucK": {
  311. "color": "#3f8000",
  312. "url": "https://github.com/trending?l=ChucK"
  313. },
  314. "Circom": {
  315. "color": "#707575",
  316. "url": "https://github.com/trending?l=Circom"
  317. },
  318. "Cirru": {
  319. "color": "#ccccff",
  320. "url": "https://github.com/trending?l=Cirru"
  321. },
  322. "Clarion": {
  323. "color": "#db901e",
  324. "url": "https://github.com/trending?l=Clarion"
  325. },
  326. "Clarity": {
  327. "color": "#5546ff",
  328. "url": "https://github.com/trending?l=Clarity"
  329. },
  330. "Classic ASP": {
  331. "color": "#6a40fd",
  332. "url": "https://github.com/trending?l=Classic-ASP"
  333. },
  334. "Clean": {
  335. "color": "#3F85AF",
  336. "url": "https://github.com/trending?l=Clean"
  337. },
  338. "Click": {
  339. "color": "#E4E6F3",
  340. "url": "https://github.com/trending?l=Click"
  341. },
  342. "CLIPS": {
  343. "color": "#00A300",
  344. "url": "https://github.com/trending?l=CLIPS"
  345. },
  346. "Clojure": {
  347. "color": "#db5855",
  348. "url": "https://github.com/trending?l=Clojure"
  349. },
  350. "Closure Templates": {
  351. "color": "#0d948f",
  352. "url": "https://github.com/trending?l=Closure-Templates"
  353. },
  354. "Cloud Firestore Security Rules": {
  355. "color": "#FFA000",
  356. "url": "https://github.com/trending?l=Cloud-Firestore-Security-Rules"
  357. },
  358. "CMake": {
  359. "color": "#DA3434",
  360. "url": "https://github.com/trending?l=CMake"
  361. },
  362. "COBOL": {
  363. "color": null,
  364. "url": "https://github.com/trending?l=COBOL"
  365. },
  366. "CodeQL": {
  367. "color": "#140f46",
  368. "url": "https://github.com/trending?l=CodeQL"
  369. },
  370. "CoffeeScript": {
  371. "color": "#244776",
  372. "url": "https://github.com/trending?l=CoffeeScript"
  373. },
  374. "ColdFusion": {
  375. "color": "#ed2cd6",
  376. "url": "https://github.com/trending?l=ColdFusion"
  377. },
  378. "ColdFusion CFC": {
  379. "color": "#ed2cd6",
  380. "url": "https://github.com/trending?l=ColdFusion-CFC"
  381. },
  382. "COLLADA": {
  383. "color": "#F1A42B",
  384. "url": "https://github.com/trending?l=COLLADA"
  385. },
  386. "Common Lisp": {
  387. "color": "#3fb68b",
  388. "url": "https://github.com/trending?l=Common-Lisp"
  389. },
  390. "Common Workflow Language": {
  391. "color": "#B5314C",
  392. "url": "https://github.com/trending?l=Common-Workflow-Language"
  393. },
  394. "Component Pascal": {
  395. "color": "#B0CE4E",
  396. "url": "https://github.com/trending?l=Component-Pascal"
  397. },
  398. "Cool": {
  399. "color": null,
  400. "url": "https://github.com/trending?l=Cool"
  401. },
  402. "Coq": {
  403. "color": "#d0b68c",
  404. "url": "https://github.com/trending?l=Coq"
  405. },
  406. "Crystal": {
  407. "color": "#000100",
  408. "url": "https://github.com/trending?l=Crystal"
  409. },
  410. "CSON": {
  411. "color": "#244776",
  412. "url": "https://github.com/trending?l=CSON"
  413. },
  414. "Csound": {
  415. "color": "#1a1a1a",
  416. "url": "https://github.com/trending?l=Csound"
  417. },
  418. "Csound Document": {
  419. "color": "#1a1a1a",
  420. "url": "https://github.com/trending?l=Csound-Document"
  421. },
  422. "Csound Score": {
  423. "color": "#1a1a1a",
  424. "url": "https://github.com/trending?l=Csound-Score"
  425. },
  426. "CSS": {
  427. "color": "#563d7c",
  428. "url": "https://github.com/trending?l=CSS"
  429. },
  430. "CSV": {
  431. "color": "#237346",
  432. "url": "https://github.com/trending?l=CSV"
  433. },
  434. "Cuda": {
  435. "color": "#3A4E3A",
  436. "url": "https://github.com/trending?l=Cuda"
  437. },
  438. "CUE": {
  439. "color": "#5886E1",
  440. "url": "https://github.com/trending?l=CUE"
  441. },
  442. "Curry": {
  443. "color": "#531242",
  444. "url": "https://github.com/trending?l=Curry"
  445. },
  446. "CWeb": {
  447. "color": "#00007a",
  448. "url": "https://github.com/trending?l=CWeb"
  449. },
  450. "Cycript": {
  451. "color": null,
  452. "url": "https://github.com/trending?l=Cycript"
  453. },
  454. "Cypher": {
  455. "color": "#34c0eb",
  456. "url": "https://github.com/trending?l=Cypher"
  457. },
  458. "Cython": {
  459. "color": "#fedf5b",
  460. "url": "https://github.com/trending?l=Cython"
  461. },
  462. "D": {
  463. "color": "#ba595e",
  464. "url": "https://github.com/trending?l=D"
  465. },
  466. "D2": {
  467. "color": "#526ee8",
  468. "url": "https://github.com/trending?l=D2"
  469. },
  470. "Dafny": {
  471. "color": "#FFEC25",
  472. "url": "https://github.com/trending?l=Dafny"
  473. },
  474. "Darcs Patch": {
  475. "color": "#8eff23",
  476. "url": "https://github.com/trending?l=Darcs-Patch"
  477. },
  478. "Dart": {
  479. "color": "#00B4AB",
  480. "url": "https://github.com/trending?l=Dart"
  481. },
  482. "DataWeave": {
  483. "color": "#003a52",
  484. "url": "https://github.com/trending?l=DataWeave"
  485. },
  486. "Debian Package Control File": {
  487. "color": "#D70751",
  488. "url": "https://github.com/trending?l=Debian-Package-Control-File"
  489. },
  490. "DenizenScript": {
  491. "color": "#FBEE96",
  492. "url": "https://github.com/trending?l=DenizenScript"
  493. },
  494. "Dhall": {
  495. "color": "#dfafff",
  496. "url": "https://github.com/trending?l=Dhall"
  497. },
  498. "DIGITAL Command Language": {
  499. "color": null,
  500. "url": "https://github.com/trending?l=DIGITAL-Command-Language"
  501. },
  502. "DirectX 3D File": {
  503. "color": "#aace60",
  504. "url": "https://github.com/trending?l=DirectX-3D-File"
  505. },
  506. "DM": {
  507. "color": "#447265",
  508. "url": "https://github.com/trending?l=DM"
  509. },
  510. "Dockerfile": {
  511. "color": "#384d54",
  512. "url": "https://github.com/trending?l=Dockerfile"
  513. },
  514. "Dogescript": {
  515. "color": "#cca760",
  516. "url": "https://github.com/trending?l=Dogescript"
  517. },
  518. "Dotenv": {
  519. "color": "#e5d559",
  520. "url": "https://github.com/trending?l=Dotenv"
  521. },
  522. "DTrace": {
  523. "color": null,
  524. "url": "https://github.com/trending?l=DTrace"
  525. },
  526. "Dylan": {
  527. "color": "#6c616e",
  528. "url": "https://github.com/trending?l=Dylan"
  529. },
  530. "E": {
  531. "color": "#ccce35",
  532. "url": "https://github.com/trending?l=E"
  533. },
  534. "Earthly": {
  535. "color": "#2af0ff",
  536. "url": "https://github.com/trending?l=Earthly"
  537. },
  538. "Easybuild": {
  539. "color": "#069406",
  540. "url": "https://github.com/trending?l=Easybuild"
  541. },
  542. "eC": {
  543. "color": "#913960",
  544. "url": "https://github.com/trending?l=eC"
  545. },
  546. "Ecere Projects": {
  547. "color": "#913960",
  548. "url": "https://github.com/trending?l=Ecere-Projects"
  549. },
  550. "ECL": {
  551. "color": "#8a1267",
  552. "url": "https://github.com/trending?l=ECL"
  553. },
  554. "ECLiPSe": {
  555. "color": "#001d9d",
  556. "url": "https://github.com/trending?l=ECLiPSe"
  557. },
  558. "Ecmarkup": {
  559. "color": "#eb8131",
  560. "url": "https://github.com/trending?l=Ecmarkup"
  561. },
  562. "Edge": {
  563. "color": "#0dffe0",
  564. "url": "https://github.com/trending?l=Edge"
  565. },
  566. "EdgeQL": {
  567. "color": "#31A7FF",
  568. "url": "https://github.com/trending?l=EdgeQL"
  569. },
  570. "EditorConfig": {
  571. "color": "#fff1f2",
  572. "url": "https://github.com/trending?l=EditorConfig"
  573. },
  574. "Eiffel": {
  575. "color": "#4d6977",
  576. "url": "https://github.com/trending?l=Eiffel"
  577. },
  578. "EJS": {
  579. "color": "#a91e50",
  580. "url": "https://github.com/trending?l=EJS"
  581. },
  582. "Elixir": {
  583. "color": "#6e4a7e",
  584. "url": "https://github.com/trending?l=Elixir"
  585. },
  586. "Elm": {
  587. "color": "#60B5CC",
  588. "url": "https://github.com/trending?l=Elm"
  589. },
  590. "Elvish": {
  591. "color": "#55BB55",
  592. "url": "https://github.com/trending?l=Elvish"
  593. },
  594. "Elvish Transcript": {
  595. "color": "#55BB55",
  596. "url": "https://github.com/trending?l=Elvish-Transcript"
  597. },
  598. "Emacs Lisp": {
  599. "color": "#c065db",
  600. "url": "https://github.com/trending?l=Emacs-Lisp"
  601. },
  602. "EmberScript": {
  603. "color": "#FFF4F3",
  604. "url": "https://github.com/trending?l=EmberScript"
  605. },
  606. "EQ": {
  607. "color": "#a78649",
  608. "url": "https://github.com/trending?l=EQ"
  609. },
  610. "Erlang": {
  611. "color": "#B83998",
  612. "url": "https://github.com/trending?l=Erlang"
  613. },
  614. "Euphoria": {
  615. "color": "#FF790B",
  616. "url": "https://github.com/trending?l=Euphoria"
  617. },
  618. "F#": {
  619. "color": "#b845fc",
  620. "url": "https://github.com/trending?l=Fsharp"
  621. },
  622. "F*": {
  623. "color": "#572e30",
  624. "url": "https://github.com/trending?l=F*"
  625. },
  626. "Factor": {
  627. "color": "#636746",
  628. "url": "https://github.com/trending?l=Factor"
  629. },
  630. "Fancy": {
  631. "color": "#7b9db4",
  632. "url": "https://github.com/trending?l=Fancy"
  633. },
  634. "Fantom": {
  635. "color": "#14253c",
  636. "url": "https://github.com/trending?l=Fantom"
  637. },
  638. "Faust": {
  639. "color": "#c37240",
  640. "url": "https://github.com/trending?l=Faust"
  641. },
  642. "Fennel": {
  643. "color": "#fff3d7",
  644. "url": "https://github.com/trending?l=Fennel"
  645. },
  646. "FIGlet Font": {
  647. "color": "#FFDDBB",
  648. "url": "https://github.com/trending?l=FIGlet-Font"
  649. },
  650. "Filebench WML": {
  651. "color": "#F6B900",
  652. "url": "https://github.com/trending?l=Filebench-WML"
  653. },
  654. "Filterscript": {
  655. "color": null,
  656. "url": "https://github.com/trending?l=Filterscript"
  657. },
  658. "fish": {
  659. "color": "#4aae47",
  660. "url": "https://github.com/trending?l=fish"
  661. },
  662. "Fluent": {
  663. "color": "#ffcc33",
  664. "url": "https://github.com/trending?l=Fluent"
  665. },
  666. "FLUX": {
  667. "color": "#88ccff",
  668. "url": "https://github.com/trending?l=FLUX"
  669. },
  670. "Forth": {
  671. "color": "#341708",
  672. "url": "https://github.com/trending?l=Forth"
  673. },
  674. "Fortran": {
  675. "color": "#4d41b1",
  676. "url": "https://github.com/trending?l=Fortran"
  677. },
  678. "Fortran Free Form": {
  679. "color": "#4d41b1",
  680. "url": "https://github.com/trending?l=Fortran-Free-Form"
  681. },
  682. "FreeBasic": {
  683. "color": "#141AC9",
  684. "url": "https://github.com/trending?l=FreeBasic"
  685. },
  686. "FreeMarker": {
  687. "color": "#0050b2",
  688. "url": "https://github.com/trending?l=FreeMarker"
  689. },
  690. "Frege": {
  691. "color": "#00cafe",
  692. "url": "https://github.com/trending?l=Frege"
  693. },
  694. "Futhark": {
  695. "color": "#5f021f",
  696. "url": "https://github.com/trending?l=Futhark"
  697. },
  698. "G-code": {
  699. "color": "#D08CF2",
  700. "url": "https://github.com/trending?l=G-code"
  701. },
  702. "Game Maker Language": {
  703. "color": "#71b417",
  704. "url": "https://github.com/trending?l=Game-Maker-Language"
  705. },
  706. "GAML": {
  707. "color": "#FFC766",
  708. "url": "https://github.com/trending?l=GAML"
  709. },
  710. "GAMS": {
  711. "color": "#f49a22",
  712. "url": "https://github.com/trending?l=GAMS"
  713. },
  714. "GAP": {
  715. "color": "#0000cc",
  716. "url": "https://github.com/trending?l=GAP"
  717. },
  718. "GCC Machine Description": {
  719. "color": "#FFCFAB",
  720. "url": "https://github.com/trending?l=GCC-Machine-Description"
  721. },
  722. "GDB": {
  723. "color": null,
  724. "url": "https://github.com/trending?l=GDB"
  725. },
  726. "GDScript": {
  727. "color": "#355570",
  728. "url": "https://github.com/trending?l=GDScript"
  729. },
  730. "GEDCOM": {
  731. "color": "#003058",
  732. "url": "https://github.com/trending?l=GEDCOM"
  733. },
  734. "Gemfile.lock": {
  735. "color": "#701516",
  736. "url": "https://github.com/trending?l=Gemfile.lock"
  737. },
  738. "Gemini": {
  739. "color": "#ff6900",
  740. "url": "https://github.com/trending?l=Gemini"
  741. },
  742. "Genero 4gl": {
  743. "color": "#63408e",
  744. "url": "https://github.com/trending?l=Genero-4gl"
  745. },
  746. "Genero per": {
  747. "color": "#d8df39",
  748. "url": "https://github.com/trending?l=Genero-per"
  749. },
  750. "Genie": {
  751. "color": "#fb855d",
  752. "url": "https://github.com/trending?l=Genie"
  753. },
  754. "Genshi": {
  755. "color": "#951531",
  756. "url": "https://github.com/trending?l=Genshi"
  757. },
  758. "Gentoo Ebuild": {
  759. "color": "#9400ff",
  760. "url": "https://github.com/trending?l=Gentoo-Ebuild"
  761. },
  762. "Gentoo Eclass": {
  763. "color": "#9400ff",
  764. "url": "https://github.com/trending?l=Gentoo-Eclass"
  765. },
  766. "Gerber Image": {
  767. "color": "#d20b00",
  768. "url": "https://github.com/trending?l=Gerber-Image"
  769. },
  770. "Gherkin": {
  771. "color": "#5B2063",
  772. "url": "https://github.com/trending?l=Gherkin"
  773. },
  774. "Git Attributes": {
  775. "color": "#F44D27",
  776. "url": "https://github.com/trending?l=Git-Attributes"
  777. },
  778. "Git Config": {
  779. "color": "#F44D27",
  780. "url": "https://github.com/trending?l=Git-Config"
  781. },
  782. "Git Revision List": {
  783. "color": "#F44D27",
  784. "url": "https://github.com/trending?l=Git-Revision-List"
  785. },
  786. "Gleam": {
  787. "color": "#ffaff3",
  788. "url": "https://github.com/trending?l=Gleam"
  789. },
  790. "Glimmer JS": {
  791. "color": "#F5835F",
  792. "url": "https://github.com/trending?l=Glimmer-JS"
  793. },
  794. "Glimmer TS": {
  795. "color": "#3178c6",
  796. "url": "https://github.com/trending?l=Glimmer-TS"
  797. },
  798. "GLSL": {
  799. "color": "#5686a5",
  800. "url": "https://github.com/trending?l=GLSL"
  801. },
  802. "Glyph": {
  803. "color": "#c1ac7f",
  804. "url": "https://github.com/trending?l=Glyph"
  805. },
  806. "Gnuplot": {
  807. "color": "#f0a9f0",
  808. "url": "https://github.com/trending?l=Gnuplot"
  809. },
  810. "Go": {
  811. "color": "#00ADD8",
  812. "url": "https://github.com/trending?l=Go"
  813. },
  814. "Go Checksums": {
  815. "color": "#00ADD8",
  816. "url": "https://github.com/trending?l=Go-Checksums"
  817. },
  818. "Go Module": {
  819. "color": "#00ADD8",
  820. "url": "https://github.com/trending?l=Go-Module"
  821. },
  822. "Go Workspace": {
  823. "color": "#00ADD8",
  824. "url": "https://github.com/trending?l=Go-Workspace"
  825. },
  826. "Godot Resource": {
  827. "color": "#355570",
  828. "url": "https://github.com/trending?l=Godot-Resource"
  829. },
  830. "Golo": {
  831. "color": "#88562A",
  832. "url": "https://github.com/trending?l=Golo"
  833. },
  834. "Gosu": {
  835. "color": "#82937f",
  836. "url": "https://github.com/trending?l=Gosu"
  837. },
  838. "Grace": {
  839. "color": "#615f8b",
  840. "url": "https://github.com/trending?l=Grace"
  841. },
  842. "Gradle": {
  843. "color": "#02303a",
  844. "url": "https://github.com/trending?l=Gradle"
  845. },
  846. "Gradle Kotlin DSL": {
  847. "color": "#02303a",
  848. "url": "https://github.com/trending?l=Gradle-Kotlin-DSL"
  849. },
  850. "Grammatical Framework": {
  851. "color": "#ff0000",
  852. "url": "https://github.com/trending?l=Grammatical-Framework"
  853. },
  854. "GraphQL": {
  855. "color": "#e10098",
  856. "url": "https://github.com/trending?l=GraphQL"
  857. },
  858. "Graphviz (DOT)": {
  859. "color": "#2596be",
  860. "url": "https://github.com/trending?l=Graphviz-(DOT)"
  861. },
  862. "Groovy": {
  863. "color": "#4298b8",
  864. "url": "https://github.com/trending?l=Groovy"
  865. },
  866. "Groovy Server Pages": {
  867. "color": "#4298b8",
  868. "url": "https://github.com/trending?l=Groovy-Server-Pages"
  869. },
  870. "GSC": {
  871. "color": "#FF6800",
  872. "url": "https://github.com/trending?l=GSC"
  873. },
  874. "Hack": {
  875. "color": "#878787",
  876. "url": "https://github.com/trending?l=Hack"
  877. },
  878. "Haml": {
  879. "color": "#ece2a9",
  880. "url": "https://github.com/trending?l=Haml"
  881. },
  882. "Handlebars": {
  883. "color": "#f7931e",
  884. "url": "https://github.com/trending?l=Handlebars"
  885. },
  886. "HAProxy": {
  887. "color": "#106da9",
  888. "url": "https://github.com/trending?l=HAProxy"
  889. },
  890. "Harbour": {
  891. "color": "#0e60e3",
  892. "url": "https://github.com/trending?l=Harbour"
  893. },
  894. "Haskell": {
  895. "color": "#5e5086",
  896. "url": "https://github.com/trending?l=Haskell"
  897. },
  898. "Haxe": {
  899. "color": "#df7900",
  900. "url": "https://github.com/trending?l=Haxe"
  901. },
  902. "HCL": {
  903. "color": "#844FBA",
  904. "url": "https://github.com/trending?l=HCL"
  905. },
  906. "HiveQL": {
  907. "color": "#dce200",
  908. "url": "https://github.com/trending?l=HiveQL"
  909. },
  910. "HLSL": {
  911. "color": "#aace60",
  912. "url": "https://github.com/trending?l=HLSL"
  913. },
  914. "HOCON": {
  915. "color": "#9ff8ee",
  916. "url": "https://github.com/trending?l=HOCON"
  917. },
  918. "HolyC": {
  919. "color": "#ffefaf",
  920. "url": "https://github.com/trending?l=HolyC"
  921. },
  922. "hoon": {
  923. "color": "#00b171",
  924. "url": "https://github.com/trending?l=hoon"
  925. },
  926. "Hosts File": {
  927. "color": "#308888",
  928. "url": "https://github.com/trending?l=Hosts-File"
  929. },
  930. "HTML": {
  931. "color": "#e34c26",
  932. "url": "https://github.com/trending?l=HTML"
  933. },
  934. "HTML+ECR": {
  935. "color": "#2e1052",
  936. "url": "https://github.com/trending?l=HTML+ECR"
  937. },
  938. "HTML+EEX": {
  939. "color": "#6e4a7e",
  940. "url": "https://github.com/trending?l=HTML+EEX"
  941. },
  942. "HTML+ERB": {
  943. "color": "#701516",
  944. "url": "https://github.com/trending?l=HTML+ERB"
  945. },
  946. "HTML+PHP": {
  947. "color": "#4f5d95",
  948. "url": "https://github.com/trending?l=HTML+PHP"
  949. },
  950. "HTML+Razor": {
  951. "color": "#512be4",
  952. "url": "https://github.com/trending?l=HTML+Razor"
  953. },
  954. "HTTP": {
  955. "color": "#005C9C",
  956. "url": "https://github.com/trending?l=HTTP"
  957. },
  958. "HXML": {
  959. "color": "#f68712",
  960. "url": "https://github.com/trending?l=HXML"
  961. },
  962. "Hy": {
  963. "color": "#7790B2",
  964. "url": "https://github.com/trending?l=Hy"
  965. },
  966. "HyPhy": {
  967. "color": null,
  968. "url": "https://github.com/trending?l=HyPhy"
  969. },
  970. "IDL": {
  971. "color": "#a3522f",
  972. "url": "https://github.com/trending?l=IDL"
  973. },
  974. "Idris": {
  975. "color": "#b30000",
  976. "url": "https://github.com/trending?l=Idris"
  977. },
  978. "Ignore List": {
  979. "color": "#000000",
  980. "url": "https://github.com/trending?l=Ignore-List"
  981. },
  982. "IGOR Pro": {
  983. "color": "#0000cc",
  984. "url": "https://github.com/trending?l=IGOR-Pro"
  985. },
  986. "ImageJ Macro": {
  987. "color": "#99AAFF",
  988. "url": "https://github.com/trending?l=ImageJ-Macro"
  989. },
  990. "Imba": {
  991. "color": "#16cec6",
  992. "url": "https://github.com/trending?l=Imba"
  993. },
  994. "Inform 7": {
  995. "color": null,
  996. "url": "https://github.com/trending?l=Inform-7"
  997. },
  998. "INI": {
  999. "color": "#d1dbe0",
  1000. "url": "https://github.com/trending?l=INI"
  1001. },
  1002. "Ink": {
  1003. "color": null,
  1004. "url": "https://github.com/trending?l=Ink"
  1005. },
  1006. "Inno Setup": {
  1007. "color": "#264b99",
  1008. "url": "https://github.com/trending?l=Inno-Setup"
  1009. },
  1010. "Io": {
  1011. "color": "#a9188d",
  1012. "url": "https://github.com/trending?l=Io"
  1013. },
  1014. "Ioke": {
  1015. "color": "#078193",
  1016. "url": "https://github.com/trending?l=Ioke"
  1017. },
  1018. "Isabelle": {
  1019. "color": "#FEFE00",
  1020. "url": "https://github.com/trending?l=Isabelle"
  1021. },
  1022. "Isabelle ROOT": {
  1023. "color": "#FEFE00",
  1024. "url": "https://github.com/trending?l=Isabelle-ROOT"
  1025. },
  1026. "J": {
  1027. "color": "#9EEDFF",
  1028. "url": "https://github.com/trending?l=J"
  1029. },
  1030. "Janet": {
  1031. "color": "#0886a5",
  1032. "url": "https://github.com/trending?l=Janet"
  1033. },
  1034. "JAR Manifest": {
  1035. "color": "#b07219",
  1036. "url": "https://github.com/trending?l=JAR-Manifest"
  1037. },
  1038. "Jasmin": {
  1039. "color": "#d03600",
  1040. "url": "https://github.com/trending?l=Jasmin"
  1041. },
  1042. "Java": {
  1043. "color": "#b07219",
  1044. "url": "https://github.com/trending?l=Java"
  1045. },
  1046. "Java Properties": {
  1047. "color": "#2A6277",
  1048. "url": "https://github.com/trending?l=Java-Properties"
  1049. },
  1050. "Java Server Pages": {
  1051. "color": "#2A6277",
  1052. "url": "https://github.com/trending?l=Java-Server-Pages"
  1053. },
  1054. "JavaScript": {
  1055. "color": "#f1e05a",
  1056. "url": "https://github.com/trending?l=JavaScript"
  1057. },
  1058. "JavaScript+ERB": {
  1059. "color": "#f1e05a",
  1060. "url": "https://github.com/trending?l=JavaScript+ERB"
  1061. },
  1062. "JCL": {
  1063. "color": "#d90e09",
  1064. "url": "https://github.com/trending?l=JCL"
  1065. },
  1066. "Jest Snapshot": {
  1067. "color": "#15c213",
  1068. "url": "https://github.com/trending?l=Jest-Snapshot"
  1069. },
  1070. "JetBrains MPS": {
  1071. "color": "#21D789",
  1072. "url": "https://github.com/trending?l=JetBrains-MPS"
  1073. },
  1074. "JFlex": {
  1075. "color": "#DBCA00",
  1076. "url": "https://github.com/trending?l=JFlex"
  1077. },
  1078. "Jinja": {
  1079. "color": "#a52a22",
  1080. "url": "https://github.com/trending?l=Jinja"
  1081. },
  1082. "Jison": {
  1083. "color": "#56b3cb",
  1084. "url": "https://github.com/trending?l=Jison"
  1085. },
  1086. "Jison Lex": {
  1087. "color": "#56b3cb",
  1088. "url": "https://github.com/trending?l=Jison-Lex"
  1089. },
  1090. "Jolie": {
  1091. "color": "#843179",
  1092. "url": "https://github.com/trending?l=Jolie"
  1093. },
  1094. "jq": {
  1095. "color": "#c7254e",
  1096. "url": "https://github.com/trending?l=jq"
  1097. },
  1098. "JSON": {
  1099. "color": "#292929",
  1100. "url": "https://github.com/trending?l=JSON"
  1101. },
  1102. "JSON with Comments": {
  1103. "color": "#292929",
  1104. "url": "https://github.com/trending?l=JSON-with-Comments"
  1105. },
  1106. "JSON5": {
  1107. "color": "#267CB9",
  1108. "url": "https://github.com/trending?l=JSON5"
  1109. },
  1110. "JSONiq": {
  1111. "color": "#40d47e",
  1112. "url": "https://github.com/trending?l=JSONiq"
  1113. },
  1114. "JSONLD": {
  1115. "color": "#0c479c",
  1116. "url": "https://github.com/trending?l=JSONLD"
  1117. },
  1118. "Jsonnet": {
  1119. "color": "#0064bd",
  1120. "url": "https://github.com/trending?l=Jsonnet"
  1121. },
  1122. "Julia": {
  1123. "color": "#a270ba",
  1124. "url": "https://github.com/trending?l=Julia"
  1125. },
  1126. "Jupyter Notebook": {
  1127. "color": "#DA5B0B",
  1128. "url": "https://github.com/trending?l=Jupyter-Notebook"
  1129. },
  1130. "Just": {
  1131. "color": "#384d54",
  1132. "url": "https://github.com/trending?l=Just"
  1133. },
  1134. "Kaitai Struct": {
  1135. "color": "#773b37",
  1136. "url": "https://github.com/trending?l=Kaitai-Struct"
  1137. },
  1138. "KakouneScript": {
  1139. "color": "#6f8042",
  1140. "url": "https://github.com/trending?l=KakouneScript"
  1141. },
  1142. "KerboScript": {
  1143. "color": "#41adf0",
  1144. "url": "https://github.com/trending?l=KerboScript"
  1145. },
  1146. "KiCad Layout": {
  1147. "color": "#2f4aab",
  1148. "url": "https://github.com/trending?l=KiCad-Layout"
  1149. },
  1150. "KiCad Legacy Layout": {
  1151. "color": "#2f4aab",
  1152. "url": "https://github.com/trending?l=KiCad-Legacy-Layout"
  1153. },
  1154. "KiCad Schematic": {
  1155. "color": "#2f4aab",
  1156. "url": "https://github.com/trending?l=KiCad-Schematic"
  1157. },
  1158. "Kotlin": {
  1159. "color": "#A97BFF",
  1160. "url": "https://github.com/trending?l=Kotlin"
  1161. },
  1162. "KRL": {
  1163. "color": "#28430A",
  1164. "url": "https://github.com/trending?l=KRL"
  1165. },
  1166. "kvlang": {
  1167. "color": "#1da6e0",
  1168. "url": "https://github.com/trending?l=kvlang"
  1169. },
  1170. "LabVIEW": {
  1171. "color": "#fede06",
  1172. "url": "https://github.com/trending?l=LabVIEW"
  1173. },
  1174. "Lark": {
  1175. "color": "#2980B9",
  1176. "url": "https://github.com/trending?l=Lark"
  1177. },
  1178. "Lasso": {
  1179. "color": "#999999",
  1180. "url": "https://github.com/trending?l=Lasso"
  1181. },
  1182. "Latte": {
  1183. "color": "#f2a542",
  1184. "url": "https://github.com/trending?l=Latte"
  1185. },
  1186. "Lean": {
  1187. "color": null,
  1188. "url": "https://github.com/trending?l=Lean"
  1189. },
  1190. "Lean 4": {
  1191. "color": null,
  1192. "url": "https://github.com/trending?l=Lean-4"
  1193. },
  1194. "Less": {
  1195. "color": "#1d365d",
  1196. "url": "https://github.com/trending?l=Less"
  1197. },
  1198. "Lex": {
  1199. "color": "#DBCA00",
  1200. "url": "https://github.com/trending?l=Lex"
  1201. },
  1202. "LFE": {
  1203. "color": "#4C3023",
  1204. "url": "https://github.com/trending?l=LFE"
  1205. },
  1206. "LigoLANG": {
  1207. "color": "#0e74ff",
  1208. "url": "https://github.com/trending?l=LigoLANG"
  1209. },
  1210. "LilyPond": {
  1211. "color": "#9ccc7c",
  1212. "url": "https://github.com/trending?l=LilyPond"
  1213. },
  1214. "Limbo": {
  1215. "color": null,
  1216. "url": "https://github.com/trending?l=Limbo"
  1217. },
  1218. "Liquid": {
  1219. "color": "#67b8de",
  1220. "url": "https://github.com/trending?l=Liquid"
  1221. },
  1222. "Literate Agda": {
  1223. "color": "#315665",
  1224. "url": "https://github.com/trending?l=Literate-Agda"
  1225. },
  1226. "Literate CoffeeScript": {
  1227. "color": "#244776",
  1228. "url": "https://github.com/trending?l=Literate-CoffeeScript"
  1229. },
  1230. "Literate Haskell": {
  1231. "color": "#5e5086",
  1232. "url": "https://github.com/trending?l=Literate-Haskell"
  1233. },
  1234. "LiveScript": {
  1235. "color": "#499886",
  1236. "url": "https://github.com/trending?l=LiveScript"
  1237. },
  1238. "LLVM": {
  1239. "color": "#185619",
  1240. "url": "https://github.com/trending?l=LLVM"
  1241. },
  1242. "Logos": {
  1243. "color": null,
  1244. "url": "https://github.com/trending?l=Logos"
  1245. },
  1246. "Logtalk": {
  1247. "color": "#295b9a",
  1248. "url": "https://github.com/trending?l=Logtalk"
  1249. },
  1250. "LOLCODE": {
  1251. "color": "#cc9900",
  1252. "url": "https://github.com/trending?l=LOLCODE"
  1253. },
  1254. "LookML": {
  1255. "color": "#652B81",
  1256. "url": "https://github.com/trending?l=LookML"
  1257. },
  1258. "LoomScript": {
  1259. "color": null,
  1260. "url": "https://github.com/trending?l=LoomScript"
  1261. },
  1262. "LSL": {
  1263. "color": "#3d9970",
  1264. "url": "https://github.com/trending?l=LSL"
  1265. },
  1266. "Lua": {
  1267. "color": "#000080",
  1268. "url": "https://github.com/trending?l=Lua"
  1269. },
  1270. "M": {
  1271. "color": null,
  1272. "url": "https://github.com/trending?l=M"
  1273. },
  1274. "M4": {
  1275. "color": null,
  1276. "url": "https://github.com/trending?l=M4"
  1277. },
  1278. "M4Sugar": {
  1279. "color": null,
  1280. "url": "https://github.com/trending?l=M4Sugar"
  1281. },
  1282. "Macaulay2": {
  1283. "color": "#d8ffff",
  1284. "url": "https://github.com/trending?l=Macaulay2"
  1285. },
  1286. "Makefile": {
  1287. "color": "#427819",
  1288. "url": "https://github.com/trending?l=Makefile"
  1289. },
  1290. "Mako": {
  1291. "color": "#7e858d",
  1292. "url": "https://github.com/trending?l=Mako"
  1293. },
  1294. "Markdown": {
  1295. "color": "#083fa1",
  1296. "url": "https://github.com/trending?l=Markdown"
  1297. },
  1298. "Marko": {
  1299. "color": "#42bff2",
  1300. "url": "https://github.com/trending?l=Marko"
  1301. },
  1302. "Mask": {
  1303. "color": "#f97732",
  1304. "url": "https://github.com/trending?l=Mask"
  1305. },
  1306. "Mathematica": {
  1307. "color": "#dd1100",
  1308. "url": "https://github.com/trending?l=Mathematica"
  1309. },
  1310. "MATLAB": {
  1311. "color": "#e16737",
  1312. "url": "https://github.com/trending?l=MATLAB"
  1313. },
  1314. "Max": {
  1315. "color": "#c4a79c",
  1316. "url": "https://github.com/trending?l=Max"
  1317. },
  1318. "MAXScript": {
  1319. "color": "#00a6a6",
  1320. "url": "https://github.com/trending?l=MAXScript"
  1321. },
  1322. "mcfunction": {
  1323. "color": "#E22837",
  1324. "url": "https://github.com/trending?l=mcfunction"
  1325. },
  1326. "MDX": {
  1327. "color": "#fcb32c",
  1328. "url": "https://github.com/trending?l=MDX"
  1329. },
  1330. "Mercury": {
  1331. "color": "#ff2b2b",
  1332. "url": "https://github.com/trending?l=Mercury"
  1333. },
  1334. "Mermaid": {
  1335. "color": "#ff3670",
  1336. "url": "https://github.com/trending?l=Mermaid"
  1337. },
  1338. "Meson": {
  1339. "color": "#007800",
  1340. "url": "https://github.com/trending?l=Meson"
  1341. },
  1342. "Metal": {
  1343. "color": "#8f14e9",
  1344. "url": "https://github.com/trending?l=Metal"
  1345. },
  1346. "MiniD": {
  1347. "color": null,
  1348. "url": "https://github.com/trending?l=MiniD"
  1349. },
  1350. "MiniYAML": {
  1351. "color": "#ff1111",
  1352. "url": "https://github.com/trending?l=MiniYAML"
  1353. },
  1354. "Mint": {
  1355. "color": "#02b046",
  1356. "url": "https://github.com/trending?l=Mint"
  1357. },
  1358. "Mirah": {
  1359. "color": "#c7a938",
  1360. "url": "https://github.com/trending?l=Mirah"
  1361. },
  1362. "mIRC Script": {
  1363. "color": "#3d57c3",
  1364. "url": "https://github.com/trending?l=mIRC-Script"
  1365. },
  1366. "MLIR": {
  1367. "color": "#5EC8DB",
  1368. "url": "https://github.com/trending?l=MLIR"
  1369. },
  1370. "Modelica": {
  1371. "color": "#de1d31",
  1372. "url": "https://github.com/trending?l=Modelica"
  1373. },
  1374. "Modula-2": {
  1375. "color": "#10253f",
  1376. "url": "https://github.com/trending?l=Modula-2"
  1377. },
  1378. "Modula-3": {
  1379. "color": "#223388",
  1380. "url": "https://github.com/trending?l=Modula-3"
  1381. },
  1382. "Module Management System": {
  1383. "color": null,
  1384. "url": "https://github.com/trending?l=Module-Management-System"
  1385. },
  1386. "Monkey": {
  1387. "color": null,
  1388. "url": "https://github.com/trending?l=Monkey"
  1389. },
  1390. "Monkey C": {
  1391. "color": "#8D6747",
  1392. "url": "https://github.com/trending?l=Monkey-C"
  1393. },
  1394. "Moocode": {
  1395. "color": null,
  1396. "url": "https://github.com/trending?l=Moocode"
  1397. },
  1398. "MoonScript": {
  1399. "color": "#ff4585",
  1400. "url": "https://github.com/trending?l=MoonScript"
  1401. },
  1402. "Motoko": {
  1403. "color": "#fbb03b",
  1404. "url": "https://github.com/trending?l=Motoko"
  1405. },
  1406. "Motorola 68K Assembly": {
  1407. "color": "#005daa",
  1408. "url": "https://github.com/trending?l=Motorola-68K-Assembly"
  1409. },
  1410. "Move": {
  1411. "color": "#4a137a",
  1412. "url": "https://github.com/trending?l=Move"
  1413. },
  1414. "MQL4": {
  1415. "color": "#62A8D6",
  1416. "url": "https://github.com/trending?l=MQL4"
  1417. },
  1418. "MQL5": {
  1419. "color": "#4A76B8",
  1420. "url": "https://github.com/trending?l=MQL5"
  1421. },
  1422. "MTML": {
  1423. "color": "#b7e1f4",
  1424. "url": "https://github.com/trending?l=MTML"
  1425. },
  1426. "MUF": {
  1427. "color": null,
  1428. "url": "https://github.com/trending?l=MUF"
  1429. },
  1430. "mupad": {
  1431. "color": "#244963",
  1432. "url": "https://github.com/trending?l=mupad"
  1433. },
  1434. "Mustache": {
  1435. "color": "#724b3b",
  1436. "url": "https://github.com/trending?l=Mustache"
  1437. },
  1438. "Myghty": {
  1439. "color": null,
  1440. "url": "https://github.com/trending?l=Myghty"
  1441. },
  1442. "nanorc": {
  1443. "color": "#2d004d",
  1444. "url": "https://github.com/trending?l=nanorc"
  1445. },
  1446. "Nasal": {
  1447. "color": "#1d2c4e",
  1448. "url": "https://github.com/trending?l=Nasal"
  1449. },
  1450. "NASL": {
  1451. "color": null,
  1452. "url": "https://github.com/trending?l=NASL"
  1453. },
  1454. "NCL": {
  1455. "color": "#28431f",
  1456. "url": "https://github.com/trending?l=NCL"
  1457. },
  1458. "Nearley": {
  1459. "color": "#990000",
  1460. "url": "https://github.com/trending?l=Nearley"
  1461. },
  1462. "Nemerle": {
  1463. "color": "#3d3c6e",
  1464. "url": "https://github.com/trending?l=Nemerle"
  1465. },
  1466. "nesC": {
  1467. "color": "#94B0C7",
  1468. "url": "https://github.com/trending?l=nesC"
  1469. },
  1470. "NetLinx": {
  1471. "color": "#0aa0ff",
  1472. "url": "https://github.com/trending?l=NetLinx"
  1473. },
  1474. "NetLinx+ERB": {
  1475. "color": "#747faa",
  1476. "url": "https://github.com/trending?l=NetLinx+ERB"
  1477. },
  1478. "NetLogo": {
  1479. "color": "#ff6375",
  1480. "url": "https://github.com/trending?l=NetLogo"
  1481. },
  1482. "NewLisp": {
  1483. "color": "#87AED7",
  1484. "url": "https://github.com/trending?l=NewLisp"
  1485. },
  1486. "Nextflow": {
  1487. "color": "#3ac486",
  1488. "url": "https://github.com/trending?l=Nextflow"
  1489. },
  1490. "Nginx": {
  1491. "color": "#009639",
  1492. "url": "https://github.com/trending?l=Nginx"
  1493. },
  1494. "Nim": {
  1495. "color": "#ffc200",
  1496. "url": "https://github.com/trending?l=Nim"
  1497. },
  1498. "Nit": {
  1499. "color": "#009917",
  1500. "url": "https://github.com/trending?l=Nit"
  1501. },
  1502. "Nix": {
  1503. "color": "#7e7eff",
  1504. "url": "https://github.com/trending?l=Nix"
  1505. },
  1506. "NPM Config": {
  1507. "color": "#cb3837",
  1508. "url": "https://github.com/trending?l=NPM-Config"
  1509. },
  1510. "NSIS": {
  1511. "color": null,
  1512. "url": "https://github.com/trending?l=NSIS"
  1513. },
  1514. "Nu": {
  1515. "color": "#c9df40",
  1516. "url": "https://github.com/trending?l=Nu"
  1517. },
  1518. "NumPy": {
  1519. "color": "#9C8AF9",
  1520. "url": "https://github.com/trending?l=NumPy"
  1521. },
  1522. "Nunjucks": {
  1523. "color": "#3d8137",
  1524. "url": "https://github.com/trending?l=Nunjucks"
  1525. },
  1526. "Nushell": {
  1527. "color": "#4E9906",
  1528. "url": "https://github.com/trending?l=Nushell"
  1529. },
  1530. "NWScript": {
  1531. "color": "#111522",
  1532. "url": "https://github.com/trending?l=NWScript"
  1533. },
  1534. "OASv2-json": {
  1535. "color": "#85ea2d",
  1536. "url": "https://github.com/trending?l=OASv2-json"
  1537. },
  1538. "OASv2-yaml": {
  1539. "color": "#85ea2d",
  1540. "url": "https://github.com/trending?l=OASv2-yaml"
  1541. },
  1542. "OASv3-json": {
  1543. "color": "#85ea2d",
  1544. "url": "https://github.com/trending?l=OASv3-json"
  1545. },
  1546. "OASv3-yaml": {
  1547. "color": "#85ea2d",
  1548. "url": "https://github.com/trending?l=OASv3-yaml"
  1549. },
  1550. "Objective-C": {
  1551. "color": "#438eff",
  1552. "url": "https://github.com/trending?l=Objective-C"
  1553. },
  1554. "Objective-C++": {
  1555. "color": "#6866fb",
  1556. "url": "https://github.com/trending?l=Objective-C++"
  1557. },
  1558. "Objective-J": {
  1559. "color": "#ff0c5a",
  1560. "url": "https://github.com/trending?l=Objective-J"
  1561. },
  1562. "ObjectScript": {
  1563. "color": "#424893",
  1564. "url": "https://github.com/trending?l=ObjectScript"
  1565. },
  1566. "OCaml": {
  1567. "color": "#ef7a08",
  1568. "url": "https://github.com/trending?l=OCaml"
  1569. },
  1570. "Odin": {
  1571. "color": "#60AFFE",
  1572. "url": "https://github.com/trending?l=Odin"
  1573. },
  1574. "Omgrofl": {
  1575. "color": "#cabbff",
  1576. "url": "https://github.com/trending?l=Omgrofl"
  1577. },
  1578. "ooc": {
  1579. "color": "#b0b77e",
  1580. "url": "https://github.com/trending?l=ooc"
  1581. },
  1582. "Opa": {
  1583. "color": null,
  1584. "url": "https://github.com/trending?l=Opa"
  1585. },
  1586. "Opal": {
  1587. "color": "#f7ede0",
  1588. "url": "https://github.com/trending?l=Opal"
  1589. },
  1590. "Open Policy Agent": {
  1591. "color": "#7d9199",
  1592. "url": "https://github.com/trending?l=Open-Policy-Agent"
  1593. },
  1594. "OpenAPI Specification v2": {
  1595. "color": "#85ea2d",
  1596. "url": "https://github.com/trending?l=OpenAPI-Specification-v2"
  1597. },
  1598. "OpenAPI Specification v3": {
  1599. "color": "#85ea2d",
  1600. "url": "https://github.com/trending?l=OpenAPI-Specification-v3"
  1601. },
  1602. "OpenCL": {
  1603. "color": "#ed2e2d",
  1604. "url": "https://github.com/trending?l=OpenCL"
  1605. },
  1606. "OpenEdge ABL": {
  1607. "color": "#5ce600",
  1608. "url": "https://github.com/trending?l=OpenEdge-ABL"
  1609. },
  1610. "OpenQASM": {
  1611. "color": "#AA70FF",
  1612. "url": "https://github.com/trending?l=OpenQASM"
  1613. },
  1614. "OpenRC runscript": {
  1615. "color": null,
  1616. "url": "https://github.com/trending?l=OpenRC-runscript"
  1617. },
  1618. "OpenSCAD": {
  1619. "color": "#e5cd45",
  1620. "url": "https://github.com/trending?l=OpenSCAD"
  1621. },
  1622. "Option List": {
  1623. "color": "#476732",
  1624. "url": "https://github.com/trending?l=Option-List"
  1625. },
  1626. "Org": {
  1627. "color": "#77aa99",
  1628. "url": "https://github.com/trending?l=Org"
  1629. },
  1630. "Ox": {
  1631. "color": null,
  1632. "url": "https://github.com/trending?l=Ox"
  1633. },
  1634. "Oxygene": {
  1635. "color": "#cdd0e3",
  1636. "url": "https://github.com/trending?l=Oxygene"
  1637. },
  1638. "Oz": {
  1639. "color": "#fab738",
  1640. "url": "https://github.com/trending?l=Oz"
  1641. },
  1642. "P4": {
  1643. "color": "#7055b5",
  1644. "url": "https://github.com/trending?l=P4"
  1645. },
  1646. "Pact": {
  1647. "color": "#F7A8B8",
  1648. "url": "https://github.com/trending?l=Pact"
  1649. },
  1650. "Pan": {
  1651. "color": "#cc0000",
  1652. "url": "https://github.com/trending?l=Pan"
  1653. },
  1654. "Papyrus": {
  1655. "color": "#6600cc",
  1656. "url": "https://github.com/trending?l=Papyrus"
  1657. },
  1658. "Parrot": {
  1659. "color": "#f3ca0a",
  1660. "url": "https://github.com/trending?l=Parrot"
  1661. },
  1662. "Parrot Assembly": {
  1663. "color": null,
  1664. "url": "https://github.com/trending?l=Parrot-Assembly"
  1665. },
  1666. "Parrot Internal Representation": {
  1667. "color": null,
  1668. "url": "https://github.com/trending?l=Parrot-Internal-Representation"
  1669. },
  1670. "Pascal": {
  1671. "color": "#E3F171",
  1672. "url": "https://github.com/trending?l=Pascal"
  1673. },
  1674. "Pawn": {
  1675. "color": "#dbb284",
  1676. "url": "https://github.com/trending?l=Pawn"
  1677. },
  1678. "PDDL": {
  1679. "color": "#0d00ff",
  1680. "url": "https://github.com/trending?l=PDDL"
  1681. },
  1682. "PEG.js": {
  1683. "color": "#234d6b",
  1684. "url": "https://github.com/trending?l=PEG.js"
  1685. },
  1686. "Pep8": {
  1687. "color": "#C76F5B",
  1688. "url": "https://github.com/trending?l=Pep8"
  1689. },
  1690. "Perl": {
  1691. "color": "#0298c3",
  1692. "url": "https://github.com/trending?l=Perl"
  1693. },
  1694. "PHP": {
  1695. "color": "#4F5D95",
  1696. "url": "https://github.com/trending?l=PHP"
  1697. },
  1698. "PicoLisp": {
  1699. "color": "#6067af",
  1700. "url": "https://github.com/trending?l=PicoLisp"
  1701. },
  1702. "PigLatin": {
  1703. "color": "#fcd7de",
  1704. "url": "https://github.com/trending?l=PigLatin"
  1705. },
  1706. "Pike": {
  1707. "color": "#005390",
  1708. "url": "https://github.com/trending?l=Pike"
  1709. },
  1710. "Pip Requirements": {
  1711. "color": "#FFD343",
  1712. "url": "https://github.com/trending?l=Pip-Requirements"
  1713. },
  1714. "PlantUML": {
  1715. "color": "#fbbd16",
  1716. "url": "https://github.com/trending?l=PlantUML"
  1717. },
  1718. "PLpgSQL": {
  1719. "color": "#336790",
  1720. "url": "https://github.com/trending?l=PLpgSQL"
  1721. },
  1722. "PLSQL": {
  1723. "color": "#dad8d8",
  1724. "url": "https://github.com/trending?l=PLSQL"
  1725. },
  1726. "PogoScript": {
  1727. "color": "#d80074",
  1728. "url": "https://github.com/trending?l=PogoScript"
  1729. },
  1730. "Polar": {
  1731. "color": "#ae81ff",
  1732. "url": "https://github.com/trending?l=Polar"
  1733. },
  1734. "Pony": {
  1735. "color": null,
  1736. "url": "https://github.com/trending?l=Pony"
  1737. },
  1738. "Portugol": {
  1739. "color": "#f8bd00",
  1740. "url": "https://github.com/trending?l=Portugol"
  1741. },
  1742. "PostCSS": {
  1743. "color": "#dc3a0c",
  1744. "url": "https://github.com/trending?l=PostCSS"
  1745. },
  1746. "PostScript": {
  1747. "color": "#da291c",
  1748. "url": "https://github.com/trending?l=PostScript"
  1749. },
  1750. "POV-Ray SDL": {
  1751. "color": "#6bac65",
  1752. "url": "https://github.com/trending?l=POV-Ray-SDL"
  1753. },
  1754. "PowerBuilder": {
  1755. "color": "#8f0f8d",
  1756. "url": "https://github.com/trending?l=PowerBuilder"
  1757. },
  1758. "PowerShell": {
  1759. "color": "#012456",
  1760. "url": "https://github.com/trending?l=PowerShell"
  1761. },
  1762. "Praat": {
  1763. "color": "#c8506d",
  1764. "url": "https://github.com/trending?l=Praat"
  1765. },
  1766. "Prisma": {
  1767. "color": "#0c344b",
  1768. "url": "https://github.com/trending?l=Prisma"
  1769. },
  1770. "Processing": {
  1771. "color": "#0096D8",
  1772. "url": "https://github.com/trending?l=Processing"
  1773. },
  1774. "Procfile": {
  1775. "color": "#3B2F63",
  1776. "url": "https://github.com/trending?l=Procfile"
  1777. },
  1778. "Prolog": {
  1779. "color": "#74283c",
  1780. "url": "https://github.com/trending?l=Prolog"
  1781. },
  1782. "Promela": {
  1783. "color": "#de0000",
  1784. "url": "https://github.com/trending?l=Promela"
  1785. },
  1786. "Propeller Spin": {
  1787. "color": "#7fa2a7",
  1788. "url": "https://github.com/trending?l=Propeller-Spin"
  1789. },
  1790. "Pug": {
  1791. "color": "#a86454",
  1792. "url": "https://github.com/trending?l=Pug"
  1793. },
  1794. "Puppet": {
  1795. "color": "#302B6D",
  1796. "url": "https://github.com/trending?l=Puppet"
  1797. },
  1798. "PureBasic": {
  1799. "color": "#5a6986",
  1800. "url": "https://github.com/trending?l=PureBasic"
  1801. },
  1802. "PureScript": {
  1803. "color": "#1D222D",
  1804. "url": "https://github.com/trending?l=PureScript"
  1805. },
  1806. "Pyret": {
  1807. "color": "#ee1e10",
  1808. "url": "https://github.com/trending?l=Pyret"
  1809. },
  1810. "Python": {
  1811. "color": "#3572A5",
  1812. "url": "https://github.com/trending?l=Python"
  1813. },
  1814. "Python console": {
  1815. "color": "#3572A5",
  1816. "url": "https://github.com/trending?l=Python-console"
  1817. },
  1818. "Python traceback": {
  1819. "color": "#3572A5",
  1820. "url": "https://github.com/trending?l=Python-traceback"
  1821. },
  1822. "q": {
  1823. "color": "#0040cd",
  1824. "url": "https://github.com/trending?l=q"
  1825. },
  1826. "Q#": {
  1827. "color": "#fed659",
  1828. "url": "https://github.com/trending?l=Qsharp"
  1829. },
  1830. "QMake": {
  1831. "color": null,
  1832. "url": "https://github.com/trending?l=QMake"
  1833. },
  1834. "QML": {
  1835. "color": "#44a51c",
  1836. "url": "https://github.com/trending?l=QML"
  1837. },
  1838. "Qt Script": {
  1839. "color": "#00b841",
  1840. "url": "https://github.com/trending?l=Qt-Script"
  1841. },
  1842. "Quake": {
  1843. "color": "#882233",
  1844. "url": "https://github.com/trending?l=Quake"
  1845. },
  1846. "R": {
  1847. "color": "#198CE7",
  1848. "url": "https://github.com/trending?l=R"
  1849. },
  1850. "Racket": {
  1851. "color": "#3c5caa",
  1852. "url": "https://github.com/trending?l=Racket"
  1853. },
  1854. "Ragel": {
  1855. "color": "#9d5200",
  1856. "url": "https://github.com/trending?l=Ragel"
  1857. },
  1858. "Raku": {
  1859. "color": "#0000fb",
  1860. "url": "https://github.com/trending?l=Raku"
  1861. },
  1862. "RAML": {
  1863. "color": "#77d9fb",
  1864. "url": "https://github.com/trending?l=RAML"
  1865. },
  1866. "Rascal": {
  1867. "color": "#fffaa0",
  1868. "url": "https://github.com/trending?l=Rascal"
  1869. },
  1870. "RBS": {
  1871. "color": "#701516",
  1872. "url": "https://github.com/trending?l=RBS"
  1873. },
  1874. "RDoc": {
  1875. "color": "#701516",
  1876. "url": "https://github.com/trending?l=RDoc"
  1877. },
  1878. "REALbasic": {
  1879. "color": null,
  1880. "url": "https://github.com/trending?l=REALbasic"
  1881. },
  1882. "Reason": {
  1883. "color": "#ff5847",
  1884. "url": "https://github.com/trending?l=Reason"
  1885. },
  1886. "ReasonLIGO": {
  1887. "color": "#ff5847",
  1888. "url": "https://github.com/trending?l=ReasonLIGO"
  1889. },
  1890. "Rebol": {
  1891. "color": "#358a5b",
  1892. "url": "https://github.com/trending?l=Rebol"
  1893. },
  1894. "Record Jar": {
  1895. "color": "#0673ba",
  1896. "url": "https://github.com/trending?l=Record-Jar"
  1897. },
  1898. "Red": {
  1899. "color": "#f50000",
  1900. "url": "https://github.com/trending?l=Red"
  1901. },
  1902. "Redcode": {
  1903. "color": null,
  1904. "url": "https://github.com/trending?l=Redcode"
  1905. },
  1906. "Regular Expression": {
  1907. "color": "#009a00",
  1908. "url": "https://github.com/trending?l=Regular-Expression"
  1909. },
  1910. "Ren'Py": {
  1911. "color": "#ff7f7f",
  1912. "url": "https://github.com/trending?l=Ren'Py"
  1913. },
  1914. "RenderScript": {
  1915. "color": null,
  1916. "url": "https://github.com/trending?l=RenderScript"
  1917. },
  1918. "ReScript": {
  1919. "color": "#ed5051",
  1920. "url": "https://github.com/trending?l=ReScript"
  1921. },
  1922. "reStructuredText": {
  1923. "color": "#141414",
  1924. "url": "https://github.com/trending?l=reStructuredText"
  1925. },
  1926. "REXX": {
  1927. "color": "#d90e09",
  1928. "url": "https://github.com/trending?l=REXX"
  1929. },
  1930. "Rez": {
  1931. "color": "#FFDAB3",
  1932. "url": "https://github.com/trending?l=Rez"
  1933. },
  1934. "Ring": {
  1935. "color": "#2D54CB",
  1936. "url": "https://github.com/trending?l=Ring"
  1937. },
  1938. "Riot": {
  1939. "color": "#A71E49",
  1940. "url": "https://github.com/trending?l=Riot"
  1941. },
  1942. "RMarkdown": {
  1943. "color": "#198ce7",
  1944. "url": "https://github.com/trending?l=RMarkdown"
  1945. },
  1946. "RobotFramework": {
  1947. "color": "#00c0b5",
  1948. "url": "https://github.com/trending?l=RobotFramework"
  1949. },
  1950. "Roc": {
  1951. "color": "#7c38f5",
  1952. "url": "https://github.com/trending?l=Roc"
  1953. },
  1954. "Roff": {
  1955. "color": "#ecdebe",
  1956. "url": "https://github.com/trending?l=Roff"
  1957. },
  1958. "Roff Manpage": {
  1959. "color": "#ecdebe",
  1960. "url": "https://github.com/trending?l=Roff-Manpage"
  1961. },
  1962. "Rouge": {
  1963. "color": "#cc0088",
  1964. "url": "https://github.com/trending?l=Rouge"
  1965. },
  1966. "RouterOS Script": {
  1967. "color": "#DE3941",
  1968. "url": "https://github.com/trending?l=RouterOS-Script"
  1969. },
  1970. "RPC": {
  1971. "color": null,
  1972. "url": "https://github.com/trending?l=RPC"
  1973. },
  1974. "RPGLE": {
  1975. "color": "#2BDE21",
  1976. "url": "https://github.com/trending?l=RPGLE"
  1977. },
  1978. "Ruby": {
  1979. "color": "#701516",
  1980. "url": "https://github.com/trending?l=Ruby"
  1981. },
  1982. "RUNOFF": {
  1983. "color": "#665a4e",
  1984. "url": "https://github.com/trending?l=RUNOFF"
  1985. },
  1986. "Rust": {
  1987. "color": "#dea584",
  1988. "url": "https://github.com/trending?l=Rust"
  1989. },
  1990. "Sage": {
  1991. "color": null,
  1992. "url": "https://github.com/trending?l=Sage"
  1993. },
  1994. "SaltStack": {
  1995. "color": "#646464",
  1996. "url": "https://github.com/trending?l=SaltStack"
  1997. },
  1998. "SAS": {
  1999. "color": "#B34936",
  2000. "url": "https://github.com/trending?l=SAS"
  2001. },
  2002. "Sass": {
  2003. "color": "#a53b70",
  2004. "url": "https://github.com/trending?l=Sass"
  2005. },
  2006. "Scala": {
  2007. "color": "#c22d40",
  2008. "url": "https://github.com/trending?l=Scala"
  2009. },
  2010. "Scaml": {
  2011. "color": "#bd181a",
  2012. "url": "https://github.com/trending?l=Scaml"
  2013. },
  2014. "Scenic": {
  2015. "color": "#fdc700",
  2016. "url": "https://github.com/trending?l=Scenic"
  2017. },
  2018. "Scheme": {
  2019. "color": "#1e4aec",
  2020. "url": "https://github.com/trending?l=Scheme"
  2021. },
  2022. "Scilab": {
  2023. "color": "#ca0f21",
  2024. "url": "https://github.com/trending?l=Scilab"
  2025. },
  2026. "SCSS": {
  2027. "color": "#c6538c",
  2028. "url": "https://github.com/trending?l=SCSS"
  2029. },
  2030. "sed": {
  2031. "color": "#64b970",
  2032. "url": "https://github.com/trending?l=sed"
  2033. },
  2034. "Self": {
  2035. "color": "#0579aa",
  2036. "url": "https://github.com/trending?l=Self"
  2037. },
  2038. "ShaderLab": {
  2039. "color": "#222c37",
  2040. "url": "https://github.com/trending?l=ShaderLab"
  2041. },
  2042. "Shell": {
  2043. "color": "#89e051",
  2044. "url": "https://github.com/trending?l=Shell"
  2045. },
  2046. "ShellCheck Config": {
  2047. "color": "#cecfcb",
  2048. "url": "https://github.com/trending?l=ShellCheck-Config"
  2049. },
  2050. "ShellSession": {
  2051. "color": null,
  2052. "url": "https://github.com/trending?l=ShellSession"
  2053. },
  2054. "Shen": {
  2055. "color": "#120F14",
  2056. "url": "https://github.com/trending?l=Shen"
  2057. },
  2058. "Sieve": {
  2059. "color": null,
  2060. "url": "https://github.com/trending?l=Sieve"
  2061. },
  2062. "Simple File Verification": {
  2063. "color": "#C9BFED",
  2064. "url": "https://github.com/trending?l=Simple-File-Verification"
  2065. },
  2066. "Singularity": {
  2067. "color": "#64E6AD",
  2068. "url": "https://github.com/trending?l=Singularity"
  2069. },
  2070. "Slash": {
  2071. "color": "#007eff",
  2072. "url": "https://github.com/trending?l=Slash"
  2073. },
  2074. "Slice": {
  2075. "color": "#003fa2",
  2076. "url": "https://github.com/trending?l=Slice"
  2077. },
  2078. "Slim": {
  2079. "color": "#2b2b2b",
  2080. "url": "https://github.com/trending?l=Slim"
  2081. },
  2082. "Smali": {
  2083. "color": null,
  2084. "url": "https://github.com/trending?l=Smali"
  2085. },
  2086. "Smalltalk": {
  2087. "color": "#596706",
  2088. "url": "https://github.com/trending?l=Smalltalk"
  2089. },
  2090. "Smarty": {
  2091. "color": "#f0c040",
  2092. "url": "https://github.com/trending?l=Smarty"
  2093. },
  2094. "Smithy": {
  2095. "color": "#c44536",
  2096. "url": "https://github.com/trending?l=Smithy"
  2097. },
  2098. "SmPL": {
  2099. "color": "#c94949",
  2100. "url": "https://github.com/trending?l=SmPL"
  2101. },
  2102. "SMT": {
  2103. "color": null,
  2104. "url": "https://github.com/trending?l=SMT"
  2105. },
  2106. "Snakemake": {
  2107. "color": "#419179",
  2108. "url": "https://github.com/trending?l=Snakemake"
  2109. },
  2110. "Solidity": {
  2111. "color": "#AA6746",
  2112. "url": "https://github.com/trending?l=Solidity"
  2113. },
  2114. "SourcePawn": {
  2115. "color": "#f69e1d",
  2116. "url": "https://github.com/trending?l=SourcePawn"
  2117. },
  2118. "SPARQL": {
  2119. "color": "#0C4597",
  2120. "url": "https://github.com/trending?l=SPARQL"
  2121. },
  2122. "SQF": {
  2123. "color": "#3F3F3F",
  2124. "url": "https://github.com/trending?l=SQF"
  2125. },
  2126. "SQL": {
  2127. "color": "#e38c00",
  2128. "url": "https://github.com/trending?l=SQL"
  2129. },
  2130. "SQLPL": {
  2131. "color": "#e38c00",
  2132. "url": "https://github.com/trending?l=SQLPL"
  2133. },
  2134. "Squirrel": {
  2135. "color": "#800000",
  2136. "url": "https://github.com/trending?l=Squirrel"
  2137. },
  2138. "SRecode Template": {
  2139. "color": "#348a34",
  2140. "url": "https://github.com/trending?l=SRecode-Template"
  2141. },
  2142. "Stan": {
  2143. "color": "#b2011d",
  2144. "url": "https://github.com/trending?l=Stan"
  2145. },
  2146. "Standard ML": {
  2147. "color": "#dc566d",
  2148. "url": "https://github.com/trending?l=Standard-ML"
  2149. },
  2150. "Starlark": {
  2151. "color": "#76d275",
  2152. "url": "https://github.com/trending?l=Starlark"
  2153. },
  2154. "Stata": {
  2155. "color": "#1a5f91",
  2156. "url": "https://github.com/trending?l=Stata"
  2157. },
  2158. "STL": {
  2159. "color": "#373b5e",
  2160. "url": "https://github.com/trending?l=STL"
  2161. },
  2162. "StringTemplate": {
  2163. "color": "#3fb34f",
  2164. "url": "https://github.com/trending?l=StringTemplate"
  2165. },
  2166. "Stylus": {
  2167. "color": "#ff6347",
  2168. "url": "https://github.com/trending?l=Stylus"
  2169. },
  2170. "SubRip Text": {
  2171. "color": "#9e0101",
  2172. "url": "https://github.com/trending?l=SubRip-Text"
  2173. },
  2174. "SugarSS": {
  2175. "color": "#2fcc9f",
  2176. "url": "https://github.com/trending?l=SugarSS"
  2177. },
  2178. "SuperCollider": {
  2179. "color": "#46390b",
  2180. "url": "https://github.com/trending?l=SuperCollider"
  2181. },
  2182. "Svelte": {
  2183. "color": "#ff3e00",
  2184. "url": "https://github.com/trending?l=Svelte"
  2185. },
  2186. "SVG": {
  2187. "color": "#ff9900",
  2188. "url": "https://github.com/trending?l=SVG"
  2189. },
  2190. "Sway": {
  2191. "color": "#00F58C",
  2192. "url": "https://github.com/trending?l=Sway"
  2193. },
  2194. "Sweave": {
  2195. "color": "#198ce7",
  2196. "url": "https://github.com/trending?l=Sweave"
  2197. },
  2198. "Swift": {
  2199. "color": "#F05138",
  2200. "url": "https://github.com/trending?l=Swift"
  2201. },
  2202. "SWIG": {
  2203. "color": null,
  2204. "url": "https://github.com/trending?l=SWIG"
  2205. },
  2206. "SystemVerilog": {
  2207. "color": "#DAE1C2",
  2208. "url": "https://github.com/trending?l=SystemVerilog"
  2209. },
  2210. "Talon": {
  2211. "color": "#333333",
  2212. "url": "https://github.com/trending?l=Talon"
  2213. },
  2214. "Tcl": {
  2215. "color": "#e4cc98",
  2216. "url": "https://github.com/trending?l=Tcl"
  2217. },
  2218. "Tcsh": {
  2219. "color": null,
  2220. "url": "https://github.com/trending?l=Tcsh"
  2221. },
  2222. "Terra": {
  2223. "color": "#00004c",
  2224. "url": "https://github.com/trending?l=Terra"
  2225. },
  2226. "Terraform Template": {
  2227. "color": "#7b42bb",
  2228. "url": "https://github.com/trending?l=Terraform-Template"
  2229. },
  2230. "TeX": {
  2231. "color": "#3D6117",
  2232. "url": "https://github.com/trending?l=TeX"
  2233. },
  2234. "TextGrid": {
  2235. "color": "#c8506d",
  2236. "url": "https://github.com/trending?l=TextGrid"
  2237. },
  2238. "Textile": {
  2239. "color": "#ffe7ac",
  2240. "url": "https://github.com/trending?l=Textile"
  2241. },
  2242. "TextMate Properties": {
  2243. "color": "#df66e4",
  2244. "url": "https://github.com/trending?l=TextMate-Properties"
  2245. },
  2246. "Thrift": {
  2247. "color": "#D12127",
  2248. "url": "https://github.com/trending?l=Thrift"
  2249. },
  2250. "TI Program": {
  2251. "color": "#A0AA87",
  2252. "url": "https://github.com/trending?l=TI-Program"
  2253. },
  2254. "TL-Verilog": {
  2255. "color": "#C40023",
  2256. "url": "https://github.com/trending?l=TL-Verilog"
  2257. },
  2258. "TLA": {
  2259. "color": "#4b0079",
  2260. "url": "https://github.com/trending?l=TLA"
  2261. },
  2262. "Toit": {
  2263. "color": "#c2c9fb",
  2264. "url": "https://github.com/trending?l=Toit"
  2265. },
  2266. "TOML": {
  2267. "color": "#9c4221",
  2268. "url": "https://github.com/trending?l=TOML"
  2269. },
  2270. "TSQL": {
  2271. "color": "#e38c00",
  2272. "url": "https://github.com/trending?l=TSQL"
  2273. },
  2274. "TSV": {
  2275. "color": "#237346",
  2276. "url": "https://github.com/trending?l=TSV"
  2277. },
  2278. "TSX": {
  2279. "color": "#3178c6",
  2280. "url": "https://github.com/trending?l=TSX"
  2281. },
  2282. "Turing": {
  2283. "color": "#cf142b",
  2284. "url": "https://github.com/trending?l=Turing"
  2285. },
  2286. "Twig": {
  2287. "color": "#c1d026",
  2288. "url": "https://github.com/trending?l=Twig"
  2289. },
  2290. "TXL": {
  2291. "color": "#0178b8",
  2292. "url": "https://github.com/trending?l=TXL"
  2293. },
  2294. "TypeScript": {
  2295. "color": "#3178c6",
  2296. "url": "https://github.com/trending?l=TypeScript"
  2297. },
  2298. "Typst": {
  2299. "color": "#239dad",
  2300. "url": "https://github.com/trending?l=Typst"
  2301. },
  2302. "Unified Parallel C": {
  2303. "color": "#4e3617",
  2304. "url": "https://github.com/trending?l=Unified-Parallel-C"
  2305. },
  2306. "Unity3D Asset": {
  2307. "color": "#222c37",
  2308. "url": "https://github.com/trending?l=Unity3D-Asset"
  2309. },
  2310. "Unix Assembly": {
  2311. "color": null,
  2312. "url": "https://github.com/trending?l=Unix-Assembly"
  2313. },
  2314. "Uno": {
  2315. "color": "#9933cc",
  2316. "url": "https://github.com/trending?l=Uno"
  2317. },
  2318. "UnrealScript": {
  2319. "color": "#a54c4d",
  2320. "url": "https://github.com/trending?l=UnrealScript"
  2321. },
  2322. "UrWeb": {
  2323. "color": "#ccccee",
  2324. "url": "https://github.com/trending?l=UrWeb"
  2325. },
  2326. "V": {
  2327. "color": "#4f87c4",
  2328. "url": "https://github.com/trending?l=V"
  2329. },
  2330. "Vala": {
  2331. "color": "#a56de2",
  2332. "url": "https://github.com/trending?l=Vala"
  2333. },
  2334. "Valve Data Format": {
  2335. "color": "#f26025",
  2336. "url": "https://github.com/trending?l=Valve-Data-Format"
  2337. },
  2338. "VBA": {
  2339. "color": "#867db1",
  2340. "url": "https://github.com/trending?l=VBA"
  2341. },
  2342. "VBScript": {
  2343. "color": "#15dcdc",
  2344. "url": "https://github.com/trending?l=VBScript"
  2345. },
  2346. "VCL": {
  2347. "color": "#148AA8",
  2348. "url": "https://github.com/trending?l=VCL"
  2349. },
  2350. "Velocity Template Language": {
  2351. "color": "#507cff",
  2352. "url": "https://github.com/trending?l=Velocity-Template-Language"
  2353. },
  2354. "Verilog": {
  2355. "color": "#b2b7f8",
  2356. "url": "https://github.com/trending?l=Verilog"
  2357. },
  2358. "VHDL": {
  2359. "color": "#adb2cb",
  2360. "url": "https://github.com/trending?l=VHDL"
  2361. },
  2362. "Vim Help File": {
  2363. "color": "#199f4b",
  2364. "url": "https://github.com/trending?l=Vim-Help-File"
  2365. },
  2366. "Vim Script": {
  2367. "color": "#199f4b",
  2368. "url": "https://github.com/trending?l=Vim-Script"
  2369. },
  2370. "Vim Snippet": {
  2371. "color": "#199f4b",
  2372. "url": "https://github.com/trending?l=Vim-Snippet"
  2373. },
  2374. "Visual Basic .NET": {
  2375. "color": "#945db7",
  2376. "url": "https://github.com/trending?l=Visual-Basic-.NET"
  2377. },
  2378. "Visual Basic 6.0": {
  2379. "color": "#2c6353",
  2380. "url": "https://github.com/trending?l=Visual-Basic-6.0"
  2381. },
  2382. "Volt": {
  2383. "color": "#1F1F1F",
  2384. "url": "https://github.com/trending?l=Volt"
  2385. },
  2386. "Vue": {
  2387. "color": "#41b883",
  2388. "url": "https://github.com/trending?l=Vue"
  2389. },
  2390. "Vyper": {
  2391. "color": "#2980b9",
  2392. "url": "https://github.com/trending?l=Vyper"
  2393. },
  2394. "WDL": {
  2395. "color": "#42f1f4",
  2396. "url": "https://github.com/trending?l=WDL"
  2397. },
  2398. "Web Ontology Language": {
  2399. "color": "#5b70bd",
  2400. "url": "https://github.com/trending?l=Web-Ontology-Language"
  2401. },
  2402. "WebAssembly": {
  2403. "color": "#04133b",
  2404. "url": "https://github.com/trending?l=WebAssembly"
  2405. },
  2406. "WebAssembly Interface Type": {
  2407. "color": "#6250e7",
  2408. "url": "https://github.com/trending?l=WebAssembly-Interface-Type"
  2409. },
  2410. "WebIDL": {
  2411. "color": null,
  2412. "url": "https://github.com/trending?l=WebIDL"
  2413. },
  2414. "WGSL": {
  2415. "color": "#1a5e9a",
  2416. "url": "https://github.com/trending?l=WGSL"
  2417. },
  2418. "Whiley": {
  2419. "color": "#d5c397",
  2420. "url": "https://github.com/trending?l=Whiley"
  2421. },
  2422. "Wikitext": {
  2423. "color": "#fc5757",
  2424. "url": "https://github.com/trending?l=Wikitext"
  2425. },
  2426. "Windows Registry Entries": {
  2427. "color": "#52d5ff",
  2428. "url": "https://github.com/trending?l=Windows-Registry-Entries"
  2429. },
  2430. "wisp": {
  2431. "color": "#7582D1",
  2432. "url": "https://github.com/trending?l=wisp"
  2433. },
  2434. "Witcher Script": {
  2435. "color": "#ff0000",
  2436. "url": "https://github.com/trending?l=Witcher-Script"
  2437. },
  2438. "Wollok": {
  2439. "color": "#a23738",
  2440. "url": "https://github.com/trending?l=Wollok"
  2441. },
  2442. "World of Warcraft Addon Data": {
  2443. "color": "#f7e43f",
  2444. "url": "https://github.com/trending?l=World-of-Warcraft-Addon-Data"
  2445. },
  2446. "Wren": {
  2447. "color": "#383838",
  2448. "url": "https://github.com/trending?l=Wren"
  2449. },
  2450. "X10": {
  2451. "color": "#4B6BEF",
  2452. "url": "https://github.com/trending?l=X10"
  2453. },
  2454. "xBase": {
  2455. "color": "#403a40",
  2456. "url": "https://github.com/trending?l=xBase"
  2457. },
  2458. "XC": {
  2459. "color": "#99DA07",
  2460. "url": "https://github.com/trending?l=XC"
  2461. },
  2462. "XML": {
  2463. "color": "#0060ac",
  2464. "url": "https://github.com/trending?l=XML"
  2465. },
  2466. "XML Property List": {
  2467. "color": "#0060ac",
  2468. "url": "https://github.com/trending?l=XML-Property-List"
  2469. },
  2470. "Xojo": {
  2471. "color": "#81bd41",
  2472. "url": "https://github.com/trending?l=Xojo"
  2473. },
  2474. "Xonsh": {
  2475. "color": "#285EEF",
  2476. "url": "https://github.com/trending?l=Xonsh"
  2477. },
  2478. "XProc": {
  2479. "color": null,
  2480. "url": "https://github.com/trending?l=XProc"
  2481. },
  2482. "XQuery": {
  2483. "color": "#5232e7",
  2484. "url": "https://github.com/trending?l=XQuery"
  2485. },
  2486. "XS": {
  2487. "color": null,
  2488. "url": "https://github.com/trending?l=XS"
  2489. },
  2490. "XSLT": {
  2491. "color": "#EB8CEB",
  2492. "url": "https://github.com/trending?l=XSLT"
  2493. },
  2494. "Xtend": {
  2495. "color": "#24255d",
  2496. "url": "https://github.com/trending?l=Xtend"
  2497. },
  2498. "Yacc": {
  2499. "color": "#4B6C4B",
  2500. "url": "https://github.com/trending?l=Yacc"
  2501. },
  2502. "YAML": {
  2503. "color": "#cb171e",
  2504. "url": "https://github.com/trending?l=YAML"
  2505. },
  2506. "YARA": {
  2507. "color": "#220000",
  2508. "url": "https://github.com/trending?l=YARA"
  2509. },
  2510. "YASnippet": {
  2511. "color": "#32AB90",
  2512. "url": "https://github.com/trending?l=YASnippet"
  2513. },
  2514. "Yul": {
  2515. "color": "#794932",
  2516. "url": "https://github.com/trending?l=Yul"
  2517. },
  2518. "ZAP": {
  2519. "color": "#0d665e",
  2520. "url": "https://github.com/trending?l=ZAP"
  2521. },
  2522. "Zeek": {
  2523. "color": null,
  2524. "url": "https://github.com/trending?l=Zeek"
  2525. },
  2526. "ZenScript": {
  2527. "color": "#00BCD1",
  2528. "url": "https://github.com/trending?l=ZenScript"
  2529. },
  2530. "Zephir": {
  2531. "color": "#118f9e",
  2532. "url": "https://github.com/trending?l=Zephir"
  2533. },
  2534. "Zig": {
  2535. "color": "#ec915c",
  2536. "url": "https://github.com/trending?l=Zig"
  2537. },
  2538. "ZIL": {
  2539. "color": "#dc75e5",
  2540. "url": "https://github.com/trending?l=ZIL"
  2541. },
  2542. "Zimpl": {
  2543. "color": "#d67711",
  2544. "url": "https://github.com/trending?l=Zimpl"
  2545. }
  2546. }