neuralos 3.4.4 → 3.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +366 -0
- package/bin/gybackend.cjs +306 -4692
- package/neuralos-3.7.2.tgz +0 -0
- package/package.json +2 -2
- package/neuralos-3.4.4.tgz +0 -0
package/bin/gybackend.cjs
CHANGED
|
@@ -255556,6 +255556,69 @@ var init_subAgent = __esm({
|
|
|
255556
255556
|
}
|
|
255557
255557
|
});
|
|
255558
255558
|
|
|
255559
|
+
// ../../packages/backend/src/services/automation/dagScheduler.ts
|
|
255560
|
+
function planDag(steps) {
|
|
255561
|
+
const n2 = steps.length;
|
|
255562
|
+
const idToIndex = /* @__PURE__ */ new Map();
|
|
255563
|
+
steps.forEach((s, i) => idToIndex.set(s.id, i));
|
|
255564
|
+
const deps = steps.map((s, i) => {
|
|
255565
|
+
if (s.dependsOn !== void 0) {
|
|
255566
|
+
return s.dependsOn.map((id) => {
|
|
255567
|
+
const di = idToIndex.get(id);
|
|
255568
|
+
if (di === void 0) {
|
|
255569
|
+
throw new Error(`Step "${s.name ?? s.id}" depends on unknown step id "${id}".`);
|
|
255570
|
+
}
|
|
255571
|
+
return di;
|
|
255572
|
+
});
|
|
255573
|
+
}
|
|
255574
|
+
return i > 0 ? [i - 1] : [];
|
|
255575
|
+
});
|
|
255576
|
+
const indegree = deps.map((d) => d.length);
|
|
255577
|
+
const dependents = steps.map(() => []);
|
|
255578
|
+
deps.forEach((d, i) => d.forEach((dep) => dependents[dep].push(i)));
|
|
255579
|
+
const batches = [];
|
|
255580
|
+
const done = new Array(n2).fill(false);
|
|
255581
|
+
let doneCount = 0;
|
|
255582
|
+
while (doneCount < n2) {
|
|
255583
|
+
const batch = [];
|
|
255584
|
+
for (let i = 0; i < n2; i += 1) {
|
|
255585
|
+
if (!done[i] && indegree[i] === 0) batch.push(i);
|
|
255586
|
+
}
|
|
255587
|
+
if (batch.length === 0) {
|
|
255588
|
+
const remaining = steps.map((s, i) => done[i] ? null : s.name ?? s.id).filter(Boolean).join(", ");
|
|
255589
|
+
throw new Error(`Dependency cycle detected in playbook steps: ${remaining}.`);
|
|
255590
|
+
}
|
|
255591
|
+
batches.push(batch);
|
|
255592
|
+
for (const i of batch) {
|
|
255593
|
+
done[i] = true;
|
|
255594
|
+
doneCount += 1;
|
|
255595
|
+
for (const dep of dependents[i]) {
|
|
255596
|
+
indegree[dep] -= 1;
|
|
255597
|
+
}
|
|
255598
|
+
}
|
|
255599
|
+
}
|
|
255600
|
+
return { batches };
|
|
255601
|
+
}
|
|
255602
|
+
function chunk(arr3, size) {
|
|
255603
|
+
if (size <= 0) return [arr3];
|
|
255604
|
+
const out = [];
|
|
255605
|
+
for (let i = 0; i < arr3.length; i += size) out.push(arr3.slice(i, i + size));
|
|
255606
|
+
return out;
|
|
255607
|
+
}
|
|
255608
|
+
function validateDag(steps) {
|
|
255609
|
+
try {
|
|
255610
|
+
planDag(steps);
|
|
255611
|
+
return null;
|
|
255612
|
+
} catch (e) {
|
|
255613
|
+
return e instanceof Error ? e.message : String(e);
|
|
255614
|
+
}
|
|
255615
|
+
}
|
|
255616
|
+
var init_dagScheduler = __esm({
|
|
255617
|
+
"../../packages/backend/src/services/automation/dagScheduler.ts"() {
|
|
255618
|
+
"use strict";
|
|
255619
|
+
}
|
|
255620
|
+
});
|
|
255621
|
+
|
|
255559
255622
|
// ../../packages/backend/src/services/automation/templateEngine.ts
|
|
255560
255623
|
var templateEngine_exports = {};
|
|
255561
255624
|
__export(templateEngine_exports, {
|
|
@@ -256146,69 +256209,6 @@ var init_schedulerService = __esm({
|
|
|
256146
256209
|
}
|
|
256147
256210
|
});
|
|
256148
256211
|
|
|
256149
|
-
// ../../packages/backend/src/services/automation/dagScheduler.ts
|
|
256150
|
-
function planDag(steps) {
|
|
256151
|
-
const n2 = steps.length;
|
|
256152
|
-
const idToIndex = /* @__PURE__ */ new Map();
|
|
256153
|
-
steps.forEach((s, i) => idToIndex.set(s.id, i));
|
|
256154
|
-
const deps = steps.map((s, i) => {
|
|
256155
|
-
if (s.dependsOn !== void 0) {
|
|
256156
|
-
return s.dependsOn.map((id) => {
|
|
256157
|
-
const di = idToIndex.get(id);
|
|
256158
|
-
if (di === void 0) {
|
|
256159
|
-
throw new Error(`Step "${s.name ?? s.id}" depends on unknown step id "${id}".`);
|
|
256160
|
-
}
|
|
256161
|
-
return di;
|
|
256162
|
-
});
|
|
256163
|
-
}
|
|
256164
|
-
return i > 0 ? [i - 1] : [];
|
|
256165
|
-
});
|
|
256166
|
-
const indegree = deps.map((d) => d.length);
|
|
256167
|
-
const dependents = steps.map(() => []);
|
|
256168
|
-
deps.forEach((d, i) => d.forEach((dep) => dependents[dep].push(i)));
|
|
256169
|
-
const batches = [];
|
|
256170
|
-
const done = new Array(n2).fill(false);
|
|
256171
|
-
let doneCount = 0;
|
|
256172
|
-
while (doneCount < n2) {
|
|
256173
|
-
const batch = [];
|
|
256174
|
-
for (let i = 0; i < n2; i += 1) {
|
|
256175
|
-
if (!done[i] && indegree[i] === 0) batch.push(i);
|
|
256176
|
-
}
|
|
256177
|
-
if (batch.length === 0) {
|
|
256178
|
-
const remaining = steps.map((s, i) => done[i] ? null : s.name ?? s.id).filter(Boolean).join(", ");
|
|
256179
|
-
throw new Error(`Dependency cycle detected in playbook steps: ${remaining}.`);
|
|
256180
|
-
}
|
|
256181
|
-
batches.push(batch);
|
|
256182
|
-
for (const i of batch) {
|
|
256183
|
-
done[i] = true;
|
|
256184
|
-
doneCount += 1;
|
|
256185
|
-
for (const dep of dependents[i]) {
|
|
256186
|
-
indegree[dep] -= 1;
|
|
256187
|
-
}
|
|
256188
|
-
}
|
|
256189
|
-
}
|
|
256190
|
-
return { batches };
|
|
256191
|
-
}
|
|
256192
|
-
function chunk(arr3, size) {
|
|
256193
|
-
if (size <= 0) return [arr3];
|
|
256194
|
-
const out = [];
|
|
256195
|
-
for (let i = 0; i < arr3.length; i += size) out.push(arr3.slice(i, i + size));
|
|
256196
|
-
return out;
|
|
256197
|
-
}
|
|
256198
|
-
function validateDag(steps) {
|
|
256199
|
-
try {
|
|
256200
|
-
planDag(steps);
|
|
256201
|
-
return null;
|
|
256202
|
-
} catch (e) {
|
|
256203
|
-
return e instanceof Error ? e.message : String(e);
|
|
256204
|
-
}
|
|
256205
|
-
}
|
|
256206
|
-
var init_dagScheduler = __esm({
|
|
256207
|
-
"../../packages/backend/src/services/automation/dagScheduler.ts"() {
|
|
256208
|
-
"use strict";
|
|
256209
|
-
}
|
|
256210
|
-
});
|
|
256211
|
-
|
|
256212
256212
|
// ../../packages/backend/src/services/automation/runbookEngine.ts
|
|
256213
256213
|
function resolveParams(params, supplied) {
|
|
256214
256214
|
const out = {};
|
|
@@ -296064,4635 +296064,6 @@ var getTerminalConnectionTypeDefinition = (type2) => {
|
|
|
296064
296064
|
};
|
|
296065
296065
|
var getTerminalConnectionCapabilities = (type2) => getTerminalConnectionTypeDefinition(type2).capabilities;
|
|
296066
296066
|
|
|
296067
|
-
// ../../packages/shared/src/theme/terminalColorSchemes.ts
|
|
296068
|
-
var TABBY_DEFAULT_DARK = {
|
|
296069
|
-
name: "Tabby Default",
|
|
296070
|
-
foreground: "#cacaca",
|
|
296071
|
-
background: "#171717",
|
|
296072
|
-
cursor: "#bbbbbb",
|
|
296073
|
-
colors: [
|
|
296074
|
-
"#000000",
|
|
296075
|
-
"#ff615a",
|
|
296076
|
-
"#b1e969",
|
|
296077
|
-
"#ebd99c",
|
|
296078
|
-
"#5da9f6",
|
|
296079
|
-
"#e86aff",
|
|
296080
|
-
"#82fff7",
|
|
296081
|
-
"#dedacf",
|
|
296082
|
-
"#313131",
|
|
296083
|
-
"#f58c80",
|
|
296084
|
-
"#ddf88f",
|
|
296085
|
-
"#eee5b2",
|
|
296086
|
-
"#a5c7ff",
|
|
296087
|
-
"#ddaaff",
|
|
296088
|
-
"#b7fff9",
|
|
296089
|
-
"#ffffff"
|
|
296090
|
-
],
|
|
296091
|
-
selection: void 0,
|
|
296092
|
-
cursorAccent: void 0
|
|
296093
|
-
};
|
|
296094
|
-
var TABBY_DEFAULT_LIGHT = {
|
|
296095
|
-
name: "Tabby Default Light",
|
|
296096
|
-
foreground: "#4d4d4c",
|
|
296097
|
-
background: "#ffffff",
|
|
296098
|
-
cursor: "#4d4d4c",
|
|
296099
|
-
colors: [
|
|
296100
|
-
"#000000",
|
|
296101
|
-
"#c82829",
|
|
296102
|
-
"#718c00",
|
|
296103
|
-
"#eab700",
|
|
296104
|
-
"#4271ae",
|
|
296105
|
-
"#8959a8",
|
|
296106
|
-
"#3e999f",
|
|
296107
|
-
"#ffffff",
|
|
296108
|
-
"#000000",
|
|
296109
|
-
"#c82829",
|
|
296110
|
-
"#718c00",
|
|
296111
|
-
"#eab700",
|
|
296112
|
-
"#4271ae",
|
|
296113
|
-
"#8959a8",
|
|
296114
|
-
"#3e999f",
|
|
296115
|
-
"#ffffff"
|
|
296116
|
-
],
|
|
296117
|
-
selection: void 0,
|
|
296118
|
-
cursorAccent: void 0
|
|
296119
|
-
};
|
|
296120
|
-
|
|
296121
|
-
// ../../packages/shared/src/theme/builtInSchemes.ts
|
|
296122
|
-
var builtInSchemes = [
|
|
296123
|
-
{
|
|
296124
|
-
"name": "3024 Day",
|
|
296125
|
-
"foreground": "#4a4543",
|
|
296126
|
-
"background": "#f7f7f7",
|
|
296127
|
-
"cursor": "#4a4543",
|
|
296128
|
-
"colors": [
|
|
296129
|
-
"#090300",
|
|
296130
|
-
"#db2d20",
|
|
296131
|
-
"#01a252",
|
|
296132
|
-
"#fded02",
|
|
296133
|
-
"#01a0e4",
|
|
296134
|
-
"#a16a94",
|
|
296135
|
-
"#b5e4f4",
|
|
296136
|
-
"#a5a2a2",
|
|
296137
|
-
"#5c5855",
|
|
296138
|
-
"#e8bbd0",
|
|
296139
|
-
"#3a3432",
|
|
296140
|
-
"#4a4543",
|
|
296141
|
-
"#807d7c",
|
|
296142
|
-
"#d6d5d4",
|
|
296143
|
-
"#cdab53",
|
|
296144
|
-
"#f7f7f7"
|
|
296145
|
-
]
|
|
296146
|
-
},
|
|
296147
|
-
{
|
|
296148
|
-
"name": "3024 Night",
|
|
296149
|
-
"foreground": "#a5a2a2",
|
|
296150
|
-
"background": "#090300",
|
|
296151
|
-
"cursor": "#a5a2a2",
|
|
296152
|
-
"colors": [
|
|
296153
|
-
"#090300",
|
|
296154
|
-
"#db2d20",
|
|
296155
|
-
"#01a252",
|
|
296156
|
-
"#fded02",
|
|
296157
|
-
"#01a0e4",
|
|
296158
|
-
"#a16a94",
|
|
296159
|
-
"#b5e4f4",
|
|
296160
|
-
"#a5a2a2",
|
|
296161
|
-
"#5c5855",
|
|
296162
|
-
"#e8bbd0",
|
|
296163
|
-
"#3a3432",
|
|
296164
|
-
"#4a4543",
|
|
296165
|
-
"#807d7c",
|
|
296166
|
-
"#d6d5d4",
|
|
296167
|
-
"#cdab53",
|
|
296168
|
-
"#f7f7f7"
|
|
296169
|
-
]
|
|
296170
|
-
},
|
|
296171
|
-
{
|
|
296172
|
-
"name": "AdventureTime",
|
|
296173
|
-
"foreground": "#f8dcc0",
|
|
296174
|
-
"background": "#1f1d45",
|
|
296175
|
-
"cursor": "#efbf38",
|
|
296176
|
-
"colors": [
|
|
296177
|
-
"#050404",
|
|
296178
|
-
"#bd0013",
|
|
296179
|
-
"#4ab118",
|
|
296180
|
-
"#e7741e",
|
|
296181
|
-
"#0f4ac6",
|
|
296182
|
-
"#665993",
|
|
296183
|
-
"#70a598",
|
|
296184
|
-
"#f8dcc0",
|
|
296185
|
-
"#4e7cbf",
|
|
296186
|
-
"#fc5f5a",
|
|
296187
|
-
"#9eff6e",
|
|
296188
|
-
"#efc11a",
|
|
296189
|
-
"#1997c6",
|
|
296190
|
-
"#9b5953",
|
|
296191
|
-
"#c8faf4",
|
|
296192
|
-
"#f6f5fb"
|
|
296193
|
-
]
|
|
296194
|
-
},
|
|
296195
|
-
{
|
|
296196
|
-
"name": "Afterglow",
|
|
296197
|
-
"foreground": "#d0d0d0",
|
|
296198
|
-
"background": "#212121",
|
|
296199
|
-
"cursor": "#d0d0d0",
|
|
296200
|
-
"colors": [
|
|
296201
|
-
"#151515",
|
|
296202
|
-
"#ac4142",
|
|
296203
|
-
"#7e8e50",
|
|
296204
|
-
"#e5b567",
|
|
296205
|
-
"#6c99bb",
|
|
296206
|
-
"#9f4e85",
|
|
296207
|
-
"#7dd6cf",
|
|
296208
|
-
"#d0d0d0",
|
|
296209
|
-
"#505050",
|
|
296210
|
-
"#ac4142",
|
|
296211
|
-
"#7e8e50",
|
|
296212
|
-
"#e5b567",
|
|
296213
|
-
"#6c99bb",
|
|
296214
|
-
"#9f4e85",
|
|
296215
|
-
"#7dd6cf",
|
|
296216
|
-
"#f5f5f5"
|
|
296217
|
-
]
|
|
296218
|
-
},
|
|
296219
|
-
{
|
|
296220
|
-
"name": "AlienBlood",
|
|
296221
|
-
"foreground": "#637d75",
|
|
296222
|
-
"background": "#0f1610",
|
|
296223
|
-
"cursor": "#73fa91",
|
|
296224
|
-
"colors": [
|
|
296225
|
-
"#112616",
|
|
296226
|
-
"#7f2b27",
|
|
296227
|
-
"#2f7e25",
|
|
296228
|
-
"#717f24",
|
|
296229
|
-
"#2f6a7f",
|
|
296230
|
-
"#47587f",
|
|
296231
|
-
"#327f77",
|
|
296232
|
-
"#647d75",
|
|
296233
|
-
"#3c4812",
|
|
296234
|
-
"#e08009",
|
|
296235
|
-
"#18e000",
|
|
296236
|
-
"#bde000",
|
|
296237
|
-
"#00aae0",
|
|
296238
|
-
"#0058e0",
|
|
296239
|
-
"#00e0c4",
|
|
296240
|
-
"#73fa91"
|
|
296241
|
-
]
|
|
296242
|
-
},
|
|
296243
|
-
{
|
|
296244
|
-
"name": "Argonaut",
|
|
296245
|
-
"foreground": "#fffaf4",
|
|
296246
|
-
"background": "#0e1019",
|
|
296247
|
-
"cursor": "#ff0018",
|
|
296248
|
-
"colors": [
|
|
296249
|
-
"#232323",
|
|
296250
|
-
"#ff000f",
|
|
296251
|
-
"#8ce10b",
|
|
296252
|
-
"#ffb900",
|
|
296253
|
-
"#008df8",
|
|
296254
|
-
"#6d43a6",
|
|
296255
|
-
"#00d8eb",
|
|
296256
|
-
"#ffffff",
|
|
296257
|
-
"#444444",
|
|
296258
|
-
"#ff2740",
|
|
296259
|
-
"#abe15b",
|
|
296260
|
-
"#ffd242",
|
|
296261
|
-
"#0092ff",
|
|
296262
|
-
"#9a5feb",
|
|
296263
|
-
"#67fff0",
|
|
296264
|
-
"#ffffff"
|
|
296265
|
-
]
|
|
296266
|
-
},
|
|
296267
|
-
{
|
|
296268
|
-
"name": "Arthur",
|
|
296269
|
-
"foreground": "#ddeedd",
|
|
296270
|
-
"background": "#1c1c1c",
|
|
296271
|
-
"cursor": "#e2bbef",
|
|
296272
|
-
"colors": [
|
|
296273
|
-
"#3d352a",
|
|
296274
|
-
"#cd5c5c",
|
|
296275
|
-
"#86af80",
|
|
296276
|
-
"#e8ae5b",
|
|
296277
|
-
"#6495ed",
|
|
296278
|
-
"#deb887",
|
|
296279
|
-
"#b0c4de",
|
|
296280
|
-
"#bbaa99",
|
|
296281
|
-
"#554444",
|
|
296282
|
-
"#cc5533",
|
|
296283
|
-
"#88aa22",
|
|
296284
|
-
"#ffa75d",
|
|
296285
|
-
"#87ceeb",
|
|
296286
|
-
"#996600",
|
|
296287
|
-
"#b0c4de",
|
|
296288
|
-
"#ddccbb"
|
|
296289
|
-
]
|
|
296290
|
-
},
|
|
296291
|
-
{
|
|
296292
|
-
"name": "AtelierSulphurpool",
|
|
296293
|
-
"foreground": "#979db4",
|
|
296294
|
-
"background": "#202746",
|
|
296295
|
-
"cursor": "#979db4",
|
|
296296
|
-
"colors": [
|
|
296297
|
-
"#202746",
|
|
296298
|
-
"#c94922",
|
|
296299
|
-
"#ac9739",
|
|
296300
|
-
"#c08b30",
|
|
296301
|
-
"#3d8fd1",
|
|
296302
|
-
"#6679cc",
|
|
296303
|
-
"#22a2c9",
|
|
296304
|
-
"#979db4",
|
|
296305
|
-
"#6b7394",
|
|
296306
|
-
"#c76b29",
|
|
296307
|
-
"#293256",
|
|
296308
|
-
"#5e6687",
|
|
296309
|
-
"#898ea4",
|
|
296310
|
-
"#dfe2f1",
|
|
296311
|
-
"#9c637a",
|
|
296312
|
-
"#f5f7ff"
|
|
296313
|
-
]
|
|
296314
|
-
},
|
|
296315
|
-
{
|
|
296316
|
-
"name": "Atom",
|
|
296317
|
-
"foreground": "#c5c8c6",
|
|
296318
|
-
"background": "#161719",
|
|
296319
|
-
"cursor": "#d0d0d0",
|
|
296320
|
-
"colors": [
|
|
296321
|
-
"#000000",
|
|
296322
|
-
"#fd5ff1",
|
|
296323
|
-
"#87c38a",
|
|
296324
|
-
"#ffd7b1",
|
|
296325
|
-
"#85befd",
|
|
296326
|
-
"#b9b6fc",
|
|
296327
|
-
"#85befd",
|
|
296328
|
-
"#e0e0e0",
|
|
296329
|
-
"#000000",
|
|
296330
|
-
"#fd5ff1",
|
|
296331
|
-
"#94fa36",
|
|
296332
|
-
"#f5ffa8",
|
|
296333
|
-
"#96cbfe",
|
|
296334
|
-
"#b9b6fc",
|
|
296335
|
-
"#85befd",
|
|
296336
|
-
"#e0e0e0"
|
|
296337
|
-
]
|
|
296338
|
-
},
|
|
296339
|
-
{
|
|
296340
|
-
"name": "AtomOneLight",
|
|
296341
|
-
"foreground": "#2a2c33",
|
|
296342
|
-
"background": "#f9f9f9",
|
|
296343
|
-
"cursor": "#bbbbbb",
|
|
296344
|
-
"colors": [
|
|
296345
|
-
"#000000",
|
|
296346
|
-
"#de3e35",
|
|
296347
|
-
"#3f953a",
|
|
296348
|
-
"#d2b67c",
|
|
296349
|
-
"#2f5af3",
|
|
296350
|
-
"#950095",
|
|
296351
|
-
"#3f953a",
|
|
296352
|
-
"#bbbbbb",
|
|
296353
|
-
"#000000",
|
|
296354
|
-
"#de3e35",
|
|
296355
|
-
"#3f953a",
|
|
296356
|
-
"#d2b67c",
|
|
296357
|
-
"#2f5af3",
|
|
296358
|
-
"#a00095",
|
|
296359
|
-
"#3f953a",
|
|
296360
|
-
"#ffffff"
|
|
296361
|
-
]
|
|
296362
|
-
},
|
|
296363
|
-
{
|
|
296364
|
-
"name": "Base16 Default Dark",
|
|
296365
|
-
"foreground": "#d8d8d8",
|
|
296366
|
-
"background": "#181818",
|
|
296367
|
-
"cursor": "#d8d8d8",
|
|
296368
|
-
"colors": [
|
|
296369
|
-
"#181818",
|
|
296370
|
-
"#ab4642",
|
|
296371
|
-
"#a1b56c",
|
|
296372
|
-
"#f7ca88",
|
|
296373
|
-
"#7cafc2",
|
|
296374
|
-
"#ba8baf",
|
|
296375
|
-
"#86c1b9",
|
|
296376
|
-
"#d8d8d8",
|
|
296377
|
-
"#585858",
|
|
296378
|
-
"#ab4642",
|
|
296379
|
-
"#a1b56c",
|
|
296380
|
-
"#f7ca88",
|
|
296381
|
-
"#7cafc2",
|
|
296382
|
-
"#ba8baf",
|
|
296383
|
-
"#86c1b9",
|
|
296384
|
-
"#f8f8f8"
|
|
296385
|
-
]
|
|
296386
|
-
},
|
|
296387
|
-
{
|
|
296388
|
-
"name": "Batman",
|
|
296389
|
-
"foreground": "#6f6f6f",
|
|
296390
|
-
"background": "#1b1d1e",
|
|
296391
|
-
"cursor": "#fcef0c",
|
|
296392
|
-
"colors": [
|
|
296393
|
-
"#1b1d1e",
|
|
296394
|
-
"#e6dc44",
|
|
296395
|
-
"#c8be46",
|
|
296396
|
-
"#f4fd22",
|
|
296397
|
-
"#737174",
|
|
296398
|
-
"#747271",
|
|
296399
|
-
"#62605f",
|
|
296400
|
-
"#c6c5bf",
|
|
296401
|
-
"#505354",
|
|
296402
|
-
"#fff78e",
|
|
296403
|
-
"#fff27d",
|
|
296404
|
-
"#feed6c",
|
|
296405
|
-
"#919495",
|
|
296406
|
-
"#9a9a9d",
|
|
296407
|
-
"#a3a3a6",
|
|
296408
|
-
"#dadbd6"
|
|
296409
|
-
]
|
|
296410
|
-
},
|
|
296411
|
-
{
|
|
296412
|
-
"name": "Belafonte Day",
|
|
296413
|
-
"foreground": "#45373c",
|
|
296414
|
-
"background": "#d5ccba",
|
|
296415
|
-
"cursor": "#45373c",
|
|
296416
|
-
"colors": [
|
|
296417
|
-
"#20111b",
|
|
296418
|
-
"#be100e",
|
|
296419
|
-
"#858162",
|
|
296420
|
-
"#eaa549",
|
|
296421
|
-
"#426a79",
|
|
296422
|
-
"#97522c",
|
|
296423
|
-
"#989a9c",
|
|
296424
|
-
"#968c83",
|
|
296425
|
-
"#5e5252",
|
|
296426
|
-
"#be100e",
|
|
296427
|
-
"#858162",
|
|
296428
|
-
"#eaa549",
|
|
296429
|
-
"#426a79",
|
|
296430
|
-
"#97522c",
|
|
296431
|
-
"#989a9c",
|
|
296432
|
-
"#d5ccba"
|
|
296433
|
-
]
|
|
296434
|
-
},
|
|
296435
|
-
{
|
|
296436
|
-
"name": "Belafonte Night",
|
|
296437
|
-
"foreground": "#968c83",
|
|
296438
|
-
"background": "#20111b",
|
|
296439
|
-
"cursor": "#968c83",
|
|
296440
|
-
"colors": [
|
|
296441
|
-
"#20111b",
|
|
296442
|
-
"#be100e",
|
|
296443
|
-
"#858162",
|
|
296444
|
-
"#eaa549",
|
|
296445
|
-
"#426a79",
|
|
296446
|
-
"#97522c",
|
|
296447
|
-
"#989a9c",
|
|
296448
|
-
"#968c83",
|
|
296449
|
-
"#5e5252",
|
|
296450
|
-
"#be100e",
|
|
296451
|
-
"#858162",
|
|
296452
|
-
"#eaa549",
|
|
296453
|
-
"#426a79",
|
|
296454
|
-
"#97522c",
|
|
296455
|
-
"#989a9c",
|
|
296456
|
-
"#d5ccba"
|
|
296457
|
-
]
|
|
296458
|
-
},
|
|
296459
|
-
{
|
|
296460
|
-
"name": "BirdsOfParadise",
|
|
296461
|
-
"foreground": "#e0dbb7",
|
|
296462
|
-
"background": "#2a1f1d",
|
|
296463
|
-
"cursor": "#573d26",
|
|
296464
|
-
"colors": [
|
|
296465
|
-
"#573d26",
|
|
296466
|
-
"#be2d26",
|
|
296467
|
-
"#6ba18a",
|
|
296468
|
-
"#e99d2a",
|
|
296469
|
-
"#5a86ad",
|
|
296470
|
-
"#ac80a6",
|
|
296471
|
-
"#74a6ad",
|
|
296472
|
-
"#e0dbb7",
|
|
296473
|
-
"#9b6c4a",
|
|
296474
|
-
"#e84627",
|
|
296475
|
-
"#95d8ba",
|
|
296476
|
-
"#d0d150",
|
|
296477
|
-
"#b8d3ed",
|
|
296478
|
-
"#d19ecb",
|
|
296479
|
-
"#93cfd7",
|
|
296480
|
-
"#fff9d5"
|
|
296481
|
-
]
|
|
296482
|
-
},
|
|
296483
|
-
{
|
|
296484
|
-
"name": "Blazer",
|
|
296485
|
-
"foreground": "#d9e6f2",
|
|
296486
|
-
"background": "#0d1926",
|
|
296487
|
-
"cursor": "#d9e6f2",
|
|
296488
|
-
"colors": [
|
|
296489
|
-
"#000000",
|
|
296490
|
-
"#b87a7a",
|
|
296491
|
-
"#7ab87a",
|
|
296492
|
-
"#b8b87a",
|
|
296493
|
-
"#7a7ab8",
|
|
296494
|
-
"#b87ab8",
|
|
296495
|
-
"#7ab8b8",
|
|
296496
|
-
"#d9d9d9",
|
|
296497
|
-
"#262626",
|
|
296498
|
-
"#dbbdbd",
|
|
296499
|
-
"#bddbbd",
|
|
296500
|
-
"#dbdbbd",
|
|
296501
|
-
"#bdbddb",
|
|
296502
|
-
"#dbbddb",
|
|
296503
|
-
"#bddbdb",
|
|
296504
|
-
"#ffffff"
|
|
296505
|
-
]
|
|
296506
|
-
},
|
|
296507
|
-
{
|
|
296508
|
-
"name": "Borland",
|
|
296509
|
-
"foreground": "#ffff4e",
|
|
296510
|
-
"background": "#0000a4",
|
|
296511
|
-
"cursor": "#ffa560",
|
|
296512
|
-
"colors": [
|
|
296513
|
-
"#4f4f4f",
|
|
296514
|
-
"#ff6c60",
|
|
296515
|
-
"#a8ff60",
|
|
296516
|
-
"#ffffb6",
|
|
296517
|
-
"#96cbfe",
|
|
296518
|
-
"#ff73fd",
|
|
296519
|
-
"#c6c5fe",
|
|
296520
|
-
"#eeeeee",
|
|
296521
|
-
"#7c7c7c",
|
|
296522
|
-
"#ffb6b0",
|
|
296523
|
-
"#ceffac",
|
|
296524
|
-
"#ffffcc",
|
|
296525
|
-
"#b5dcff",
|
|
296526
|
-
"#ff9cfe",
|
|
296527
|
-
"#dfdffe",
|
|
296528
|
-
"#ffffff"
|
|
296529
|
-
]
|
|
296530
|
-
},
|
|
296531
|
-
{
|
|
296532
|
-
"name": "Bright Lights",
|
|
296533
|
-
"foreground": "#b3c9d7",
|
|
296534
|
-
"background": "#191919",
|
|
296535
|
-
"cursor": "#f34b00",
|
|
296536
|
-
"colors": [
|
|
296537
|
-
"#191919",
|
|
296538
|
-
"#ff355b",
|
|
296539
|
-
"#b7e876",
|
|
296540
|
-
"#ffc251",
|
|
296541
|
-
"#76d4ff",
|
|
296542
|
-
"#ba76e7",
|
|
296543
|
-
"#6cbfb5",
|
|
296544
|
-
"#c2c8d7",
|
|
296545
|
-
"#191919",
|
|
296546
|
-
"#ff355b",
|
|
296547
|
-
"#b7e876",
|
|
296548
|
-
"#ffc251",
|
|
296549
|
-
"#76d5ff",
|
|
296550
|
-
"#ba76e7",
|
|
296551
|
-
"#6cbfb5",
|
|
296552
|
-
"#c2c8d7"
|
|
296553
|
-
]
|
|
296554
|
-
},
|
|
296555
|
-
{
|
|
296556
|
-
"name": "Broadcast",
|
|
296557
|
-
"foreground": "#e6e1dc",
|
|
296558
|
-
"background": "#2b2b2b",
|
|
296559
|
-
"cursor": "#ffffff",
|
|
296560
|
-
"colors": [
|
|
296561
|
-
"#000000",
|
|
296562
|
-
"#da4939",
|
|
296563
|
-
"#519f50",
|
|
296564
|
-
"#ffd24a",
|
|
296565
|
-
"#6d9cbe",
|
|
296566
|
-
"#d0d0ff",
|
|
296567
|
-
"#6e9cbe",
|
|
296568
|
-
"#ffffff",
|
|
296569
|
-
"#323232",
|
|
296570
|
-
"#ff7b6b",
|
|
296571
|
-
"#83d182",
|
|
296572
|
-
"#ffff7c",
|
|
296573
|
-
"#9fcef0",
|
|
296574
|
-
"#ffffff",
|
|
296575
|
-
"#a0cef0",
|
|
296576
|
-
"#ffffff"
|
|
296577
|
-
]
|
|
296578
|
-
},
|
|
296579
|
-
{
|
|
296580
|
-
"name": "Brogrammer",
|
|
296581
|
-
"foreground": "#d6dbe5",
|
|
296582
|
-
"background": "#131313",
|
|
296583
|
-
"cursor": "#b9b9b9",
|
|
296584
|
-
"colors": [
|
|
296585
|
-
"#1f1f1f",
|
|
296586
|
-
"#f81118",
|
|
296587
|
-
"#2dc55e",
|
|
296588
|
-
"#ecba0f",
|
|
296589
|
-
"#2a84d2",
|
|
296590
|
-
"#4e5ab7",
|
|
296591
|
-
"#1081d6",
|
|
296592
|
-
"#d6dbe5",
|
|
296593
|
-
"#d6dbe5",
|
|
296594
|
-
"#de352e",
|
|
296595
|
-
"#1dd361",
|
|
296596
|
-
"#f3bd09",
|
|
296597
|
-
"#1081d6",
|
|
296598
|
-
"#5350b9",
|
|
296599
|
-
"#0f7ddb",
|
|
296600
|
-
"#ffffff"
|
|
296601
|
-
]
|
|
296602
|
-
},
|
|
296603
|
-
{
|
|
296604
|
-
"name": "C64",
|
|
296605
|
-
"foreground": "#7869c4",
|
|
296606
|
-
"background": "#40318d",
|
|
296607
|
-
"cursor": "#7869c4",
|
|
296608
|
-
"colors": [
|
|
296609
|
-
"#090300",
|
|
296610
|
-
"#883932",
|
|
296611
|
-
"#55a049",
|
|
296612
|
-
"#bfce72",
|
|
296613
|
-
"#40318d",
|
|
296614
|
-
"#8b3f96",
|
|
296615
|
-
"#67b6bd",
|
|
296616
|
-
"#ffffff",
|
|
296617
|
-
"#000000",
|
|
296618
|
-
"#883932",
|
|
296619
|
-
"#55a049",
|
|
296620
|
-
"#bfce72",
|
|
296621
|
-
"#40318d",
|
|
296622
|
-
"#8b3f96",
|
|
296623
|
-
"#67b6bd",
|
|
296624
|
-
"#f7f7f7"
|
|
296625
|
-
]
|
|
296626
|
-
},
|
|
296627
|
-
{
|
|
296628
|
-
"name": "CLRS",
|
|
296629
|
-
"foreground": "#262626",
|
|
296630
|
-
"background": "#ffffff",
|
|
296631
|
-
"cursor": "#6fd3fc",
|
|
296632
|
-
"colors": [
|
|
296633
|
-
"#000000",
|
|
296634
|
-
"#f8282a",
|
|
296635
|
-
"#328a5d",
|
|
296636
|
-
"#fa701d",
|
|
296637
|
-
"#135cd0",
|
|
296638
|
-
"#9f00bd",
|
|
296639
|
-
"#33c3c1",
|
|
296640
|
-
"#b3b3b3",
|
|
296641
|
-
"#555753",
|
|
296642
|
-
"#fb0416",
|
|
296643
|
-
"#2cc631",
|
|
296644
|
-
"#fdd727",
|
|
296645
|
-
"#1670ff",
|
|
296646
|
-
"#e900b0",
|
|
296647
|
-
"#3ad5ce",
|
|
296648
|
-
"#eeeeec"
|
|
296649
|
-
]
|
|
296650
|
-
},
|
|
296651
|
-
{
|
|
296652
|
-
"name": "Chalk",
|
|
296653
|
-
"foreground": "#d2d8d9",
|
|
296654
|
-
"background": "#2b2d2e",
|
|
296655
|
-
"cursor": "#708284",
|
|
296656
|
-
"colors": [
|
|
296657
|
-
"#7d8b8f",
|
|
296658
|
-
"#b23a52",
|
|
296659
|
-
"#789b6a",
|
|
296660
|
-
"#b9ac4a",
|
|
296661
|
-
"#2a7fac",
|
|
296662
|
-
"#bd4f5a",
|
|
296663
|
-
"#44a799",
|
|
296664
|
-
"#d2d8d9",
|
|
296665
|
-
"#888888",
|
|
296666
|
-
"#f24840",
|
|
296667
|
-
"#80c470",
|
|
296668
|
-
"#ffeb62",
|
|
296669
|
-
"#4196ff",
|
|
296670
|
-
"#fc5275",
|
|
296671
|
-
"#53cdbd",
|
|
296672
|
-
"#d2d8d9"
|
|
296673
|
-
]
|
|
296674
|
-
},
|
|
296675
|
-
{
|
|
296676
|
-
"name": "Chalkboard",
|
|
296677
|
-
"foreground": "#d9e6f2",
|
|
296678
|
-
"background": "#29262f",
|
|
296679
|
-
"cursor": "#d9e6f2",
|
|
296680
|
-
"colors": [
|
|
296681
|
-
"#000000",
|
|
296682
|
-
"#c37372",
|
|
296683
|
-
"#72c373",
|
|
296684
|
-
"#c2c372",
|
|
296685
|
-
"#7372c3",
|
|
296686
|
-
"#c372c2",
|
|
296687
|
-
"#72c2c3",
|
|
296688
|
-
"#d9d9d9",
|
|
296689
|
-
"#323232",
|
|
296690
|
-
"#dbaaaa",
|
|
296691
|
-
"#aadbaa",
|
|
296692
|
-
"#dadbaa",
|
|
296693
|
-
"#aaaadb",
|
|
296694
|
-
"#dbaada",
|
|
296695
|
-
"#aadadb",
|
|
296696
|
-
"#ffffff"
|
|
296697
|
-
]
|
|
296698
|
-
},
|
|
296699
|
-
{
|
|
296700
|
-
"name": "Ciapre",
|
|
296701
|
-
"foreground": "#aea47a",
|
|
296702
|
-
"background": "#191c27",
|
|
296703
|
-
"cursor": "#92805b",
|
|
296704
|
-
"colors": [
|
|
296705
|
-
"#181818",
|
|
296706
|
-
"#810009",
|
|
296707
|
-
"#48513b",
|
|
296708
|
-
"#cc8b3f",
|
|
296709
|
-
"#576d8c",
|
|
296710
|
-
"#724d7c",
|
|
296711
|
-
"#5c4f4b",
|
|
296712
|
-
"#aea47f",
|
|
296713
|
-
"#555555",
|
|
296714
|
-
"#ac3835",
|
|
296715
|
-
"#a6a75d",
|
|
296716
|
-
"#dcdf7c",
|
|
296717
|
-
"#3097c6",
|
|
296718
|
-
"#d33061",
|
|
296719
|
-
"#f3dbb2",
|
|
296720
|
-
"#f4f4f4"
|
|
296721
|
-
]
|
|
296722
|
-
},
|
|
296723
|
-
{
|
|
296724
|
-
"name": "Cobalt Neon",
|
|
296725
|
-
"foreground": "#8ff586",
|
|
296726
|
-
"background": "#142838",
|
|
296727
|
-
"cursor": "#c4206f",
|
|
296728
|
-
"colors": [
|
|
296729
|
-
"#142631",
|
|
296730
|
-
"#ff2320",
|
|
296731
|
-
"#3ba5ff",
|
|
296732
|
-
"#e9e75c",
|
|
296733
|
-
"#8ff586",
|
|
296734
|
-
"#781aa0",
|
|
296735
|
-
"#8ff586",
|
|
296736
|
-
"#ba46b2",
|
|
296737
|
-
"#fff688",
|
|
296738
|
-
"#d4312e",
|
|
296739
|
-
"#8ff586",
|
|
296740
|
-
"#e9f06d",
|
|
296741
|
-
"#3c7dd2",
|
|
296742
|
-
"#8230a7",
|
|
296743
|
-
"#6cbc67",
|
|
296744
|
-
"#8ff586"
|
|
296745
|
-
]
|
|
296746
|
-
},
|
|
296747
|
-
{
|
|
296748
|
-
"name": "Cobalt2",
|
|
296749
|
-
"foreground": "#ffffff",
|
|
296750
|
-
"background": "#132738",
|
|
296751
|
-
"cursor": "#f0cc09",
|
|
296752
|
-
"colors": [
|
|
296753
|
-
"#000000",
|
|
296754
|
-
"#ff0000",
|
|
296755
|
-
"#38de21",
|
|
296756
|
-
"#ffe50a",
|
|
296757
|
-
"#1460d2",
|
|
296758
|
-
"#ff005d",
|
|
296759
|
-
"#00bbbb",
|
|
296760
|
-
"#bbbbbb",
|
|
296761
|
-
"#555555",
|
|
296762
|
-
"#f40e17",
|
|
296763
|
-
"#3bd01d",
|
|
296764
|
-
"#edc809",
|
|
296765
|
-
"#5555ff",
|
|
296766
|
-
"#ff55ff",
|
|
296767
|
-
"#6ae3fa",
|
|
296768
|
-
"#ffffff"
|
|
296769
|
-
]
|
|
296770
|
-
},
|
|
296771
|
-
{
|
|
296772
|
-
"name": "CrayonPonyFish",
|
|
296773
|
-
"foreground": "#68525a",
|
|
296774
|
-
"background": "#150707",
|
|
296775
|
-
"cursor": "#68525a",
|
|
296776
|
-
"colors": [
|
|
296777
|
-
"#2b1b1d",
|
|
296778
|
-
"#91002b",
|
|
296779
|
-
"#579524",
|
|
296780
|
-
"#ab311b",
|
|
296781
|
-
"#8c87b0",
|
|
296782
|
-
"#692f50",
|
|
296783
|
-
"#e8a866",
|
|
296784
|
-
"#68525a",
|
|
296785
|
-
"#3d2b2e",
|
|
296786
|
-
"#c5255d",
|
|
296787
|
-
"#8dff57",
|
|
296788
|
-
"#c8381d",
|
|
296789
|
-
"#cfc9ff",
|
|
296790
|
-
"#fc6cba",
|
|
296791
|
-
"#ffceaf",
|
|
296792
|
-
"#b0949d"
|
|
296793
|
-
]
|
|
296794
|
-
},
|
|
296795
|
-
{
|
|
296796
|
-
"name": "Dark Pastel",
|
|
296797
|
-
"foreground": "#ffffff",
|
|
296798
|
-
"background": "#000000",
|
|
296799
|
-
"cursor": "#bbbbbb",
|
|
296800
|
-
"colors": [
|
|
296801
|
-
"#000000",
|
|
296802
|
-
"#ff5555",
|
|
296803
|
-
"#55ff55",
|
|
296804
|
-
"#ffff55",
|
|
296805
|
-
"#5555ff",
|
|
296806
|
-
"#ff55ff",
|
|
296807
|
-
"#55ffff",
|
|
296808
|
-
"#bbbbbb",
|
|
296809
|
-
"#555555",
|
|
296810
|
-
"#ff5555",
|
|
296811
|
-
"#55ff55",
|
|
296812
|
-
"#ffff55",
|
|
296813
|
-
"#5555ff",
|
|
296814
|
-
"#ff55ff",
|
|
296815
|
-
"#55ffff",
|
|
296816
|
-
"#ffffff"
|
|
296817
|
-
]
|
|
296818
|
-
},
|
|
296819
|
-
{
|
|
296820
|
-
"name": "Darkside",
|
|
296821
|
-
"foreground": "#bababa",
|
|
296822
|
-
"background": "#222324",
|
|
296823
|
-
"cursor": "#bbbbbb",
|
|
296824
|
-
"colors": [
|
|
296825
|
-
"#000000",
|
|
296826
|
-
"#e8341c",
|
|
296827
|
-
"#68c256",
|
|
296828
|
-
"#f2d42c",
|
|
296829
|
-
"#1c98e8",
|
|
296830
|
-
"#8e69c9",
|
|
296831
|
-
"#1c98e8",
|
|
296832
|
-
"#bababa",
|
|
296833
|
-
"#000000",
|
|
296834
|
-
"#e05a4f",
|
|
296835
|
-
"#77b869",
|
|
296836
|
-
"#efd64b",
|
|
296837
|
-
"#387cd3",
|
|
296838
|
-
"#957bbe",
|
|
296839
|
-
"#3d97e2",
|
|
296840
|
-
"#bababa"
|
|
296841
|
-
]
|
|
296842
|
-
},
|
|
296843
|
-
{
|
|
296844
|
-
"name": "Desert",
|
|
296845
|
-
"foreground": "#ffffff",
|
|
296846
|
-
"background": "#333333",
|
|
296847
|
-
"cursor": "#00ff00",
|
|
296848
|
-
"colors": [
|
|
296849
|
-
"#4d4d4d",
|
|
296850
|
-
"#ff2b2b",
|
|
296851
|
-
"#98fb98",
|
|
296852
|
-
"#f0e68c",
|
|
296853
|
-
"#cd853f",
|
|
296854
|
-
"#ffdead",
|
|
296855
|
-
"#ffa0a0",
|
|
296856
|
-
"#f5deb3",
|
|
296857
|
-
"#555555",
|
|
296858
|
-
"#ff5555",
|
|
296859
|
-
"#55ff55",
|
|
296860
|
-
"#ffff55",
|
|
296861
|
-
"#87ceff",
|
|
296862
|
-
"#ff55ff",
|
|
296863
|
-
"#ffd700",
|
|
296864
|
-
"#ffffff"
|
|
296865
|
-
]
|
|
296866
|
-
},
|
|
296867
|
-
{
|
|
296868
|
-
"name": "DimmedMonokai",
|
|
296869
|
-
"foreground": "#b9bcba",
|
|
296870
|
-
"background": "#1f1f1f",
|
|
296871
|
-
"cursor": "#f83e19",
|
|
296872
|
-
"colors": [
|
|
296873
|
-
"#3a3d43",
|
|
296874
|
-
"#be3f48",
|
|
296875
|
-
"#879a3b",
|
|
296876
|
-
"#c5a635",
|
|
296877
|
-
"#4f76a1",
|
|
296878
|
-
"#855c8d",
|
|
296879
|
-
"#578fa4",
|
|
296880
|
-
"#b9bcba",
|
|
296881
|
-
"#888987",
|
|
296882
|
-
"#fb001f",
|
|
296883
|
-
"#0f722f",
|
|
296884
|
-
"#c47033",
|
|
296885
|
-
"#186de3",
|
|
296886
|
-
"#fb0067",
|
|
296887
|
-
"#2e706d",
|
|
296888
|
-
"#fdffb9"
|
|
296889
|
-
]
|
|
296890
|
-
},
|
|
296891
|
-
{
|
|
296892
|
-
"name": "DotGov",
|
|
296893
|
-
"foreground": "#ebebeb",
|
|
296894
|
-
"background": "#262c35",
|
|
296895
|
-
"cursor": "#d9002f",
|
|
296896
|
-
"colors": [
|
|
296897
|
-
"#191919",
|
|
296898
|
-
"#bf091d",
|
|
296899
|
-
"#3d9751",
|
|
296900
|
-
"#f6bb34",
|
|
296901
|
-
"#17b2e0",
|
|
296902
|
-
"#7830b0",
|
|
296903
|
-
"#8bd2ed",
|
|
296904
|
-
"#ffffff",
|
|
296905
|
-
"#191919",
|
|
296906
|
-
"#bf091d",
|
|
296907
|
-
"#3d9751",
|
|
296908
|
-
"#f6bb34",
|
|
296909
|
-
"#17b2e0",
|
|
296910
|
-
"#7830b0",
|
|
296911
|
-
"#8bd2ed",
|
|
296912
|
-
"#ffffff"
|
|
296913
|
-
]
|
|
296914
|
-
},
|
|
296915
|
-
{
|
|
296916
|
-
"name": "Dracula",
|
|
296917
|
-
"foreground": "#f8f8f2",
|
|
296918
|
-
"background": "#1e1f29",
|
|
296919
|
-
"cursor": "#bbbbbb",
|
|
296920
|
-
"colors": [
|
|
296921
|
-
"#000000",
|
|
296922
|
-
"#ff5555",
|
|
296923
|
-
"#50fa7b",
|
|
296924
|
-
"#f1fa8c",
|
|
296925
|
-
"#bd93f9",
|
|
296926
|
-
"#ff79c6",
|
|
296927
|
-
"#8be9fd",
|
|
296928
|
-
"#bbbbbb",
|
|
296929
|
-
"#555555",
|
|
296930
|
-
"#ff5555",
|
|
296931
|
-
"#50fa7b",
|
|
296932
|
-
"#f1fa8c",
|
|
296933
|
-
"#bd93f9",
|
|
296934
|
-
"#ff79c6",
|
|
296935
|
-
"#8be9fd",
|
|
296936
|
-
"#ffffff"
|
|
296937
|
-
]
|
|
296938
|
-
},
|
|
296939
|
-
{
|
|
296940
|
-
"name": "Duotone Dark",
|
|
296941
|
-
"foreground": "#b7a1ff",
|
|
296942
|
-
"background": "#1f1d27",
|
|
296943
|
-
"cursor": "#ff9839",
|
|
296944
|
-
"colors": [
|
|
296945
|
-
"#1f1d27",
|
|
296946
|
-
"#d9393e",
|
|
296947
|
-
"#2dcd73",
|
|
296948
|
-
"#d9b76e",
|
|
296949
|
-
"#ffc284",
|
|
296950
|
-
"#de8d40",
|
|
296951
|
-
"#2488ff",
|
|
296952
|
-
"#b7a1ff",
|
|
296953
|
-
"#353147",
|
|
296954
|
-
"#d9393e",
|
|
296955
|
-
"#2dcd73",
|
|
296956
|
-
"#d9b76e",
|
|
296957
|
-
"#ffc284",
|
|
296958
|
-
"#de8d40",
|
|
296959
|
-
"#2488ff",
|
|
296960
|
-
"#eae5ff"
|
|
296961
|
-
]
|
|
296962
|
-
},
|
|
296963
|
-
{
|
|
296964
|
-
"name": "ENCOM",
|
|
296965
|
-
"foreground": "#00a595",
|
|
296966
|
-
"background": "#000000",
|
|
296967
|
-
"cursor": "#bbbbbb",
|
|
296968
|
-
"colors": [
|
|
296969
|
-
"#000000",
|
|
296970
|
-
"#9f0000",
|
|
296971
|
-
"#008b00",
|
|
296972
|
-
"#ffd000",
|
|
296973
|
-
"#0081ff",
|
|
296974
|
-
"#bc00ca",
|
|
296975
|
-
"#008b8b",
|
|
296976
|
-
"#bbbbbb",
|
|
296977
|
-
"#555555",
|
|
296978
|
-
"#ff0000",
|
|
296979
|
-
"#00ee00",
|
|
296980
|
-
"#ffff00",
|
|
296981
|
-
"#0000ff",
|
|
296982
|
-
"#ff00ff",
|
|
296983
|
-
"#00cdcd",
|
|
296984
|
-
"#ffffff"
|
|
296985
|
-
]
|
|
296986
|
-
},
|
|
296987
|
-
{
|
|
296988
|
-
"name": "Earthsong",
|
|
296989
|
-
"foreground": "#e5c7a9",
|
|
296990
|
-
"background": "#292520",
|
|
296991
|
-
"cursor": "#f6f7ec",
|
|
296992
|
-
"colors": [
|
|
296993
|
-
"#121418",
|
|
296994
|
-
"#c94234",
|
|
296995
|
-
"#85c54c",
|
|
296996
|
-
"#f5ae2e",
|
|
296997
|
-
"#1398b9",
|
|
296998
|
-
"#d0633d",
|
|
296999
|
-
"#509552",
|
|
297000
|
-
"#e5c6aa",
|
|
297001
|
-
"#675f54",
|
|
297002
|
-
"#ff645a",
|
|
297003
|
-
"#98e036",
|
|
297004
|
-
"#e0d561",
|
|
297005
|
-
"#5fdaff",
|
|
297006
|
-
"#ff9269",
|
|
297007
|
-
"#84f088",
|
|
297008
|
-
"#f6f7ec"
|
|
297009
|
-
]
|
|
297010
|
-
},
|
|
297011
|
-
{
|
|
297012
|
-
"name": "Elemental",
|
|
297013
|
-
"foreground": "#807a74",
|
|
297014
|
-
"background": "#22211d",
|
|
297015
|
-
"cursor": "#facb80",
|
|
297016
|
-
"colors": [
|
|
297017
|
-
"#3c3c30",
|
|
297018
|
-
"#98290f",
|
|
297019
|
-
"#479a43",
|
|
297020
|
-
"#7f7111",
|
|
297021
|
-
"#497f7d",
|
|
297022
|
-
"#7f4e2f",
|
|
297023
|
-
"#387f58",
|
|
297024
|
-
"#807974",
|
|
297025
|
-
"#555445",
|
|
297026
|
-
"#e0502a",
|
|
297027
|
-
"#61e070",
|
|
297028
|
-
"#d69927",
|
|
297029
|
-
"#79d9d9",
|
|
297030
|
-
"#cd7c54",
|
|
297031
|
-
"#59d599",
|
|
297032
|
-
"#fff1e9"
|
|
297033
|
-
]
|
|
297034
|
-
},
|
|
297035
|
-
{
|
|
297036
|
-
"name": "Elementary",
|
|
297037
|
-
"foreground": "#efefef",
|
|
297038
|
-
"background": "#181818",
|
|
297039
|
-
"cursor": "#bbbbbb",
|
|
297040
|
-
"colors": [
|
|
297041
|
-
"#242424",
|
|
297042
|
-
"#d71c15",
|
|
297043
|
-
"#5aa513",
|
|
297044
|
-
"#fdb40c",
|
|
297045
|
-
"#063b8c",
|
|
297046
|
-
"#e40038",
|
|
297047
|
-
"#2595e1",
|
|
297048
|
-
"#efefef",
|
|
297049
|
-
"#4b4b4b",
|
|
297050
|
-
"#fc1c18",
|
|
297051
|
-
"#6bc219",
|
|
297052
|
-
"#fec80e",
|
|
297053
|
-
"#0955ff",
|
|
297054
|
-
"#fb0050",
|
|
297055
|
-
"#3ea8fc",
|
|
297056
|
-
"#8c00ec"
|
|
297057
|
-
]
|
|
297058
|
-
},
|
|
297059
|
-
{
|
|
297060
|
-
"name": "Espresso",
|
|
297061
|
-
"foreground": "#ffffff",
|
|
297062
|
-
"background": "#323232",
|
|
297063
|
-
"cursor": "#d6d6d6",
|
|
297064
|
-
"colors": [
|
|
297065
|
-
"#353535",
|
|
297066
|
-
"#d25252",
|
|
297067
|
-
"#a5c261",
|
|
297068
|
-
"#ffc66d",
|
|
297069
|
-
"#6c99bb",
|
|
297070
|
-
"#d197d9",
|
|
297071
|
-
"#bed6ff",
|
|
297072
|
-
"#eeeeec",
|
|
297073
|
-
"#535353",
|
|
297074
|
-
"#f00c0c",
|
|
297075
|
-
"#c2e075",
|
|
297076
|
-
"#e1e48b",
|
|
297077
|
-
"#8ab7d9",
|
|
297078
|
-
"#efb5f7",
|
|
297079
|
-
"#dcf4ff",
|
|
297080
|
-
"#ffffff"
|
|
297081
|
-
]
|
|
297082
|
-
},
|
|
297083
|
-
{
|
|
297084
|
-
"name": "Espresso Libre",
|
|
297085
|
-
"foreground": "#b8a898",
|
|
297086
|
-
"background": "#2a211c",
|
|
297087
|
-
"cursor": "#ffffff",
|
|
297088
|
-
"colors": [
|
|
297089
|
-
"#000000",
|
|
297090
|
-
"#cc0000",
|
|
297091
|
-
"#1a921c",
|
|
297092
|
-
"#f0e53a",
|
|
297093
|
-
"#0066ff",
|
|
297094
|
-
"#c5656b",
|
|
297095
|
-
"#06989a",
|
|
297096
|
-
"#d3d7cf",
|
|
297097
|
-
"#555753",
|
|
297098
|
-
"#ef2929",
|
|
297099
|
-
"#9aff87",
|
|
297100
|
-
"#fffb5c",
|
|
297101
|
-
"#43a8ed",
|
|
297102
|
-
"#ff818a",
|
|
297103
|
-
"#34e2e2",
|
|
297104
|
-
"#eeeeec"
|
|
297105
|
-
]
|
|
297106
|
-
},
|
|
297107
|
-
{
|
|
297108
|
-
"name": "Fideloper",
|
|
297109
|
-
"foreground": "#dbdae0",
|
|
297110
|
-
"background": "#292f33",
|
|
297111
|
-
"cursor": "#d4605a",
|
|
297112
|
-
"colors": [
|
|
297113
|
-
"#292f33",
|
|
297114
|
-
"#cb1e2d",
|
|
297115
|
-
"#edb8ac",
|
|
297116
|
-
"#b7ab9b",
|
|
297117
|
-
"#2e78c2",
|
|
297118
|
-
"#c0236f",
|
|
297119
|
-
"#309186",
|
|
297120
|
-
"#eae3ce",
|
|
297121
|
-
"#092028",
|
|
297122
|
-
"#d4605a",
|
|
297123
|
-
"#d4605a",
|
|
297124
|
-
"#a86671",
|
|
297125
|
-
"#7c85c4",
|
|
297126
|
-
"#5c5db2",
|
|
297127
|
-
"#819090",
|
|
297128
|
-
"#fcf4df"
|
|
297129
|
-
]
|
|
297130
|
-
},
|
|
297131
|
-
{
|
|
297132
|
-
"name": "FirefoxDev",
|
|
297133
|
-
"foreground": "#7c8fa4",
|
|
297134
|
-
"background": "#0e1011",
|
|
297135
|
-
"cursor": "#708284",
|
|
297136
|
-
"colors": [
|
|
297137
|
-
"#002831",
|
|
297138
|
-
"#e63853",
|
|
297139
|
-
"#5eb83c",
|
|
297140
|
-
"#a57706",
|
|
297141
|
-
"#359ddf",
|
|
297142
|
-
"#d75cff",
|
|
297143
|
-
"#4b73a2",
|
|
297144
|
-
"#dcdcdc",
|
|
297145
|
-
"#001e27",
|
|
297146
|
-
"#e1003f",
|
|
297147
|
-
"#1d9000",
|
|
297148
|
-
"#cd9409",
|
|
297149
|
-
"#006fc0",
|
|
297150
|
-
"#a200da",
|
|
297151
|
-
"#005794",
|
|
297152
|
-
"#e2e2e2"
|
|
297153
|
-
]
|
|
297154
|
-
},
|
|
297155
|
-
{
|
|
297156
|
-
"name": "Firewatch",
|
|
297157
|
-
"foreground": "#9ba2b2",
|
|
297158
|
-
"background": "#1e2027",
|
|
297159
|
-
"cursor": "#f6f7ec",
|
|
297160
|
-
"colors": [
|
|
297161
|
-
"#585f6d",
|
|
297162
|
-
"#d95360",
|
|
297163
|
-
"#5ab977",
|
|
297164
|
-
"#dfb563",
|
|
297165
|
-
"#4d89c4",
|
|
297166
|
-
"#d55119",
|
|
297167
|
-
"#44a8b6",
|
|
297168
|
-
"#e6e5ff",
|
|
297169
|
-
"#585f6d",
|
|
297170
|
-
"#d95360",
|
|
297171
|
-
"#5ab977",
|
|
297172
|
-
"#dfb563",
|
|
297173
|
-
"#4c89c5",
|
|
297174
|
-
"#d55119",
|
|
297175
|
-
"#44a8b6",
|
|
297176
|
-
"#e6e5ff"
|
|
297177
|
-
]
|
|
297178
|
-
},
|
|
297179
|
-
{
|
|
297180
|
-
"name": "FishTank",
|
|
297181
|
-
"foreground": "#ecf0fe",
|
|
297182
|
-
"background": "#232537",
|
|
297183
|
-
"cursor": "#fecd5e",
|
|
297184
|
-
"colors": [
|
|
297185
|
-
"#03073c",
|
|
297186
|
-
"#c6004a",
|
|
297187
|
-
"#acf157",
|
|
297188
|
-
"#fecd5e",
|
|
297189
|
-
"#525fb8",
|
|
297190
|
-
"#986f82",
|
|
297191
|
-
"#968763",
|
|
297192
|
-
"#ecf0fc",
|
|
297193
|
-
"#6c5b30",
|
|
297194
|
-
"#da4b8a",
|
|
297195
|
-
"#dbffa9",
|
|
297196
|
-
"#fee6a9",
|
|
297197
|
-
"#b2befa",
|
|
297198
|
-
"#fda5cd",
|
|
297199
|
-
"#a5bd86",
|
|
297200
|
-
"#f6ffec"
|
|
297201
|
-
]
|
|
297202
|
-
},
|
|
297203
|
-
{
|
|
297204
|
-
"name": "Flat",
|
|
297205
|
-
"foreground": "#2cc55d",
|
|
297206
|
-
"background": "#002240",
|
|
297207
|
-
"cursor": "#e5be0c",
|
|
297208
|
-
"colors": [
|
|
297209
|
-
"#222d3f",
|
|
297210
|
-
"#a82320",
|
|
297211
|
-
"#32a548",
|
|
297212
|
-
"#e58d11",
|
|
297213
|
-
"#3167ac",
|
|
297214
|
-
"#781aa0",
|
|
297215
|
-
"#2c9370",
|
|
297216
|
-
"#b0b6ba",
|
|
297217
|
-
"#212c3c",
|
|
297218
|
-
"#d4312e",
|
|
297219
|
-
"#2d9440",
|
|
297220
|
-
"#e5be0c",
|
|
297221
|
-
"#3c7dd2",
|
|
297222
|
-
"#8230a7",
|
|
297223
|
-
"#35b387",
|
|
297224
|
-
"#e7eced"
|
|
297225
|
-
]
|
|
297226
|
-
},
|
|
297227
|
-
{
|
|
297228
|
-
"name": "Flatland",
|
|
297229
|
-
"foreground": "#b8dbef",
|
|
297230
|
-
"background": "#1d1f21",
|
|
297231
|
-
"cursor": "#708284",
|
|
297232
|
-
"colors": [
|
|
297233
|
-
"#1d1d19",
|
|
297234
|
-
"#f18339",
|
|
297235
|
-
"#9fd364",
|
|
297236
|
-
"#f4ef6d",
|
|
297237
|
-
"#5096be",
|
|
297238
|
-
"#695abc",
|
|
297239
|
-
"#d63865",
|
|
297240
|
-
"#ffffff",
|
|
297241
|
-
"#1d1d19",
|
|
297242
|
-
"#d22a24",
|
|
297243
|
-
"#a7d42c",
|
|
297244
|
-
"#ff8949",
|
|
297245
|
-
"#61b9d0",
|
|
297246
|
-
"#695abc",
|
|
297247
|
-
"#d63865",
|
|
297248
|
-
"#ffffff"
|
|
297249
|
-
]
|
|
297250
|
-
},
|
|
297251
|
-
{
|
|
297252
|
-
"name": "Floraverse",
|
|
297253
|
-
"foreground": "#dbd1b9",
|
|
297254
|
-
"background": "#0e0d15",
|
|
297255
|
-
"cursor": "#bbbbbb",
|
|
297256
|
-
"colors": [
|
|
297257
|
-
"#08002e",
|
|
297258
|
-
"#64002c",
|
|
297259
|
-
"#5d731a",
|
|
297260
|
-
"#cd751c",
|
|
297261
|
-
"#1d6da1",
|
|
297262
|
-
"#b7077e",
|
|
297263
|
-
"#42a38c",
|
|
297264
|
-
"#f3e0b8",
|
|
297265
|
-
"#331e4d",
|
|
297266
|
-
"#d02063",
|
|
297267
|
-
"#b4ce59",
|
|
297268
|
-
"#fac357",
|
|
297269
|
-
"#40a4cf",
|
|
297270
|
-
"#f12aae",
|
|
297271
|
-
"#62caa8",
|
|
297272
|
-
"#fff5db"
|
|
297273
|
-
]
|
|
297274
|
-
},
|
|
297275
|
-
{
|
|
297276
|
-
"name": "ForestBlue",
|
|
297277
|
-
"foreground": "#e2d8cd",
|
|
297278
|
-
"background": "#051519",
|
|
297279
|
-
"cursor": "#9e9ecb",
|
|
297280
|
-
"colors": [
|
|
297281
|
-
"#333333",
|
|
297282
|
-
"#f8818e",
|
|
297283
|
-
"#92d3a2",
|
|
297284
|
-
"#1a8e63",
|
|
297285
|
-
"#8ed0ce",
|
|
297286
|
-
"#5e468c",
|
|
297287
|
-
"#31658c",
|
|
297288
|
-
"#e2d8cd",
|
|
297289
|
-
"#3d3d3d",
|
|
297290
|
-
"#fb3d66",
|
|
297291
|
-
"#6bb48d",
|
|
297292
|
-
"#30c85a",
|
|
297293
|
-
"#39a7a2",
|
|
297294
|
-
"#7e62b3",
|
|
297295
|
-
"#6096bf",
|
|
297296
|
-
"#e2d8cd"
|
|
297297
|
-
]
|
|
297298
|
-
},
|
|
297299
|
-
{
|
|
297300
|
-
"name": "FrontEndDelight",
|
|
297301
|
-
"foreground": "#adadad",
|
|
297302
|
-
"background": "#1b1c1d",
|
|
297303
|
-
"cursor": "#cdcdcd",
|
|
297304
|
-
"colors": [
|
|
297305
|
-
"#242526",
|
|
297306
|
-
"#f8511b",
|
|
297307
|
-
"#565747",
|
|
297308
|
-
"#fa771d",
|
|
297309
|
-
"#2c70b7",
|
|
297310
|
-
"#f02e4f",
|
|
297311
|
-
"#3ca1a6",
|
|
297312
|
-
"#adadad",
|
|
297313
|
-
"#5fac6d",
|
|
297314
|
-
"#f74319",
|
|
297315
|
-
"#74ec4c",
|
|
297316
|
-
"#fdc325",
|
|
297317
|
-
"#3393ca",
|
|
297318
|
-
"#e75e4f",
|
|
297319
|
-
"#4fbce6",
|
|
297320
|
-
"#8c735b"
|
|
297321
|
-
]
|
|
297322
|
-
},
|
|
297323
|
-
{
|
|
297324
|
-
"name": "FunForrest",
|
|
297325
|
-
"foreground": "#dec165",
|
|
297326
|
-
"background": "#251200",
|
|
297327
|
-
"cursor": "#e5591c",
|
|
297328
|
-
"colors": [
|
|
297329
|
-
"#000000",
|
|
297330
|
-
"#d6262b",
|
|
297331
|
-
"#919c00",
|
|
297332
|
-
"#be8a13",
|
|
297333
|
-
"#4699a3",
|
|
297334
|
-
"#8d4331",
|
|
297335
|
-
"#da8213",
|
|
297336
|
-
"#ddc265",
|
|
297337
|
-
"#7f6a55",
|
|
297338
|
-
"#e55a1c",
|
|
297339
|
-
"#bfc65a",
|
|
297340
|
-
"#ffcb1b",
|
|
297341
|
-
"#7cc9cf",
|
|
297342
|
-
"#d26349",
|
|
297343
|
-
"#e6a96b",
|
|
297344
|
-
"#ffeaa3"
|
|
297345
|
-
]
|
|
297346
|
-
},
|
|
297347
|
-
{
|
|
297348
|
-
"name": "Galaxy",
|
|
297349
|
-
"foreground": "#ffffff",
|
|
297350
|
-
"background": "#1d2837",
|
|
297351
|
-
"cursor": "#bbbbbb",
|
|
297352
|
-
"colors": [
|
|
297353
|
-
"#000000",
|
|
297354
|
-
"#f9555f",
|
|
297355
|
-
"#21b089",
|
|
297356
|
-
"#fef02a",
|
|
297357
|
-
"#589df6",
|
|
297358
|
-
"#944d95",
|
|
297359
|
-
"#1f9ee7",
|
|
297360
|
-
"#bbbbbb",
|
|
297361
|
-
"#555555",
|
|
297362
|
-
"#fa8c8f",
|
|
297363
|
-
"#35bb9a",
|
|
297364
|
-
"#ffff55",
|
|
297365
|
-
"#589df6",
|
|
297366
|
-
"#e75699",
|
|
297367
|
-
"#3979bc",
|
|
297368
|
-
"#ffffff"
|
|
297369
|
-
]
|
|
297370
|
-
},
|
|
297371
|
-
{
|
|
297372
|
-
"name": "Github",
|
|
297373
|
-
"foreground": "#3e3e3e",
|
|
297374
|
-
"background": "#f4f4f4",
|
|
297375
|
-
"cursor": "#3f3f3f",
|
|
297376
|
-
"colors": [
|
|
297377
|
-
"#3e3e3e",
|
|
297378
|
-
"#970b16",
|
|
297379
|
-
"#07962a",
|
|
297380
|
-
"#f8eec7",
|
|
297381
|
-
"#003e8a",
|
|
297382
|
-
"#e94691",
|
|
297383
|
-
"#89d1ec",
|
|
297384
|
-
"#ffffff",
|
|
297385
|
-
"#666666",
|
|
297386
|
-
"#de0000",
|
|
297387
|
-
"#87d5a2",
|
|
297388
|
-
"#f1d007",
|
|
297389
|
-
"#2e6cba",
|
|
297390
|
-
"#ffa29f",
|
|
297391
|
-
"#1cfafe",
|
|
297392
|
-
"#ffffff"
|
|
297393
|
-
]
|
|
297394
|
-
},
|
|
297395
|
-
{
|
|
297396
|
-
"name": "Glacier",
|
|
297397
|
-
"foreground": "#ffffff",
|
|
297398
|
-
"background": "#0c1115",
|
|
297399
|
-
"cursor": "#6c6c6c",
|
|
297400
|
-
"colors": [
|
|
297401
|
-
"#2e343c",
|
|
297402
|
-
"#bd0f2f",
|
|
297403
|
-
"#35a770",
|
|
297404
|
-
"#fb9435",
|
|
297405
|
-
"#1f5872",
|
|
297406
|
-
"#bd2523",
|
|
297407
|
-
"#778397",
|
|
297408
|
-
"#ffffff",
|
|
297409
|
-
"#404a55",
|
|
297410
|
-
"#bd0f2f",
|
|
297411
|
-
"#49e998",
|
|
297412
|
-
"#fddf6e",
|
|
297413
|
-
"#2a8bc1",
|
|
297414
|
-
"#ea4727",
|
|
297415
|
-
"#a0b6d3",
|
|
297416
|
-
"#ffffff"
|
|
297417
|
-
]
|
|
297418
|
-
},
|
|
297419
|
-
{
|
|
297420
|
-
"name": "Grape",
|
|
297421
|
-
"foreground": "#9f9fa1",
|
|
297422
|
-
"background": "#171423",
|
|
297423
|
-
"cursor": "#a288f7",
|
|
297424
|
-
"colors": [
|
|
297425
|
-
"#2d283f",
|
|
297426
|
-
"#ed2261",
|
|
297427
|
-
"#1fa91b",
|
|
297428
|
-
"#8ddc20",
|
|
297429
|
-
"#487df4",
|
|
297430
|
-
"#8d35c9",
|
|
297431
|
-
"#3bdeed",
|
|
297432
|
-
"#9e9ea0",
|
|
297433
|
-
"#59516a",
|
|
297434
|
-
"#f0729a",
|
|
297435
|
-
"#53aa5e",
|
|
297436
|
-
"#b2dc87",
|
|
297437
|
-
"#a9bcec",
|
|
297438
|
-
"#ad81c2",
|
|
297439
|
-
"#9de3eb",
|
|
297440
|
-
"#a288f7"
|
|
297441
|
-
]
|
|
297442
|
-
},
|
|
297443
|
-
{
|
|
297444
|
-
"name": "Grass",
|
|
297445
|
-
"foreground": "#fff0a5",
|
|
297446
|
-
"background": "#13773d",
|
|
297447
|
-
"cursor": "#8c2800",
|
|
297448
|
-
"colors": [
|
|
297449
|
-
"#000000",
|
|
297450
|
-
"#bb0000",
|
|
297451
|
-
"#00bb00",
|
|
297452
|
-
"#e7b000",
|
|
297453
|
-
"#0000a3",
|
|
297454
|
-
"#950062",
|
|
297455
|
-
"#00bbbb",
|
|
297456
|
-
"#bbbbbb",
|
|
297457
|
-
"#555555",
|
|
297458
|
-
"#bb0000",
|
|
297459
|
-
"#00bb00",
|
|
297460
|
-
"#e7b000",
|
|
297461
|
-
"#0000bb",
|
|
297462
|
-
"#ff55ff",
|
|
297463
|
-
"#55ffff",
|
|
297464
|
-
"#ffffff"
|
|
297465
|
-
]
|
|
297466
|
-
},
|
|
297467
|
-
{
|
|
297468
|
-
"name": "Gruvbox Dark",
|
|
297469
|
-
"foreground": "#e6d4a3",
|
|
297470
|
-
"background": "#1e1e1e",
|
|
297471
|
-
"cursor": "#bbbbbb",
|
|
297472
|
-
"colors": [
|
|
297473
|
-
"#161819",
|
|
297474
|
-
"#f73028",
|
|
297475
|
-
"#aab01e",
|
|
297476
|
-
"#f7b125",
|
|
297477
|
-
"#719586",
|
|
297478
|
-
"#c77089",
|
|
297479
|
-
"#7db669",
|
|
297480
|
-
"#faefbb",
|
|
297481
|
-
"#7f7061",
|
|
297482
|
-
"#be0f17",
|
|
297483
|
-
"#868715",
|
|
297484
|
-
"#cc881a",
|
|
297485
|
-
"#377375",
|
|
297486
|
-
"#a04b73",
|
|
297487
|
-
"#578e57",
|
|
297488
|
-
"#e6d4a3"
|
|
297489
|
-
]
|
|
297490
|
-
},
|
|
297491
|
-
{
|
|
297492
|
-
"name": "Hardcore",
|
|
297493
|
-
"foreground": "#a0a0a0",
|
|
297494
|
-
"background": "#121212",
|
|
297495
|
-
"cursor": "#bbbbbb",
|
|
297496
|
-
"colors": [
|
|
297497
|
-
"#1b1d1e",
|
|
297498
|
-
"#f92672",
|
|
297499
|
-
"#a6e22e",
|
|
297500
|
-
"#fd971f",
|
|
297501
|
-
"#66d9ef",
|
|
297502
|
-
"#9e6ffe",
|
|
297503
|
-
"#5e7175",
|
|
297504
|
-
"#ccccc6",
|
|
297505
|
-
"#505354",
|
|
297506
|
-
"#ff669d",
|
|
297507
|
-
"#beed5f",
|
|
297508
|
-
"#e6db74",
|
|
297509
|
-
"#66d9ef",
|
|
297510
|
-
"#9e6ffe",
|
|
297511
|
-
"#a3babf",
|
|
297512
|
-
"#f8f8f2"
|
|
297513
|
-
]
|
|
297514
|
-
},
|
|
297515
|
-
{
|
|
297516
|
-
"name": "Harper",
|
|
297517
|
-
"foreground": "#a8a49d",
|
|
297518
|
-
"background": "#010101",
|
|
297519
|
-
"cursor": "#a8a49d",
|
|
297520
|
-
"colors": [
|
|
297521
|
-
"#010101",
|
|
297522
|
-
"#f8b63f",
|
|
297523
|
-
"#7fb5e1",
|
|
297524
|
-
"#d6da25",
|
|
297525
|
-
"#489e48",
|
|
297526
|
-
"#b296c6",
|
|
297527
|
-
"#f5bfd7",
|
|
297528
|
-
"#a8a49d",
|
|
297529
|
-
"#726e6a",
|
|
297530
|
-
"#f8b63f",
|
|
297531
|
-
"#7fb5e1",
|
|
297532
|
-
"#d6da25",
|
|
297533
|
-
"#489e48",
|
|
297534
|
-
"#b296c6",
|
|
297535
|
-
"#f5bfd7",
|
|
297536
|
-
"#fefbea"
|
|
297537
|
-
]
|
|
297538
|
-
},
|
|
297539
|
-
{
|
|
297540
|
-
"name": "Highway",
|
|
297541
|
-
"foreground": "#ededed",
|
|
297542
|
-
"background": "#222225",
|
|
297543
|
-
"cursor": "#e0d9b9",
|
|
297544
|
-
"colors": [
|
|
297545
|
-
"#000000",
|
|
297546
|
-
"#d00e18",
|
|
297547
|
-
"#138034",
|
|
297548
|
-
"#ffcb3e",
|
|
297549
|
-
"#006bb3",
|
|
297550
|
-
"#6b2775",
|
|
297551
|
-
"#384564",
|
|
297552
|
-
"#ededed",
|
|
297553
|
-
"#5d504a",
|
|
297554
|
-
"#f07e18",
|
|
297555
|
-
"#b1d130",
|
|
297556
|
-
"#fff120",
|
|
297557
|
-
"#4fc2fd",
|
|
297558
|
-
"#de0071",
|
|
297559
|
-
"#5d504a",
|
|
297560
|
-
"#ffffff"
|
|
297561
|
-
]
|
|
297562
|
-
},
|
|
297563
|
-
{
|
|
297564
|
-
"name": "Hipster Green",
|
|
297565
|
-
"foreground": "#84c138",
|
|
297566
|
-
"background": "#100b05",
|
|
297567
|
-
"cursor": "#23ff18",
|
|
297568
|
-
"colors": [
|
|
297569
|
-
"#000000",
|
|
297570
|
-
"#b6214a",
|
|
297571
|
-
"#00a600",
|
|
297572
|
-
"#bfbf00",
|
|
297573
|
-
"#246eb2",
|
|
297574
|
-
"#b200b2",
|
|
297575
|
-
"#00a6b2",
|
|
297576
|
-
"#bfbfbf",
|
|
297577
|
-
"#666666",
|
|
297578
|
-
"#e50000",
|
|
297579
|
-
"#86a93e",
|
|
297580
|
-
"#e5e500",
|
|
297581
|
-
"#0000ff",
|
|
297582
|
-
"#e500e5",
|
|
297583
|
-
"#00e5e5",
|
|
297584
|
-
"#e5e5e5"
|
|
297585
|
-
]
|
|
297586
|
-
},
|
|
297587
|
-
{
|
|
297588
|
-
"name": "Homebrew",
|
|
297589
|
-
"foreground": "#00ff00",
|
|
297590
|
-
"background": "#000000",
|
|
297591
|
-
"cursor": "#23ff18",
|
|
297592
|
-
"colors": [
|
|
297593
|
-
"#000000",
|
|
297594
|
-
"#990000",
|
|
297595
|
-
"#00a600",
|
|
297596
|
-
"#999900",
|
|
297597
|
-
"#0000b2",
|
|
297598
|
-
"#b200b2",
|
|
297599
|
-
"#00a6b2",
|
|
297600
|
-
"#bfbfbf",
|
|
297601
|
-
"#666666",
|
|
297602
|
-
"#e50000",
|
|
297603
|
-
"#00d900",
|
|
297604
|
-
"#e5e500",
|
|
297605
|
-
"#0000ff",
|
|
297606
|
-
"#e500e5",
|
|
297607
|
-
"#00e5e5",
|
|
297608
|
-
"#e5e5e5"
|
|
297609
|
-
]
|
|
297610
|
-
},
|
|
297611
|
-
{
|
|
297612
|
-
"name": "Hurtado",
|
|
297613
|
-
"foreground": "#dbdbdb",
|
|
297614
|
-
"background": "#000000",
|
|
297615
|
-
"cursor": "#bbbbbb",
|
|
297616
|
-
"colors": [
|
|
297617
|
-
"#575757",
|
|
297618
|
-
"#ff1b00",
|
|
297619
|
-
"#a5e055",
|
|
297620
|
-
"#fbe74a",
|
|
297621
|
-
"#496487",
|
|
297622
|
-
"#fd5ff1",
|
|
297623
|
-
"#86e9fe",
|
|
297624
|
-
"#cbcccb",
|
|
297625
|
-
"#262626",
|
|
297626
|
-
"#d51d00",
|
|
297627
|
-
"#a5df55",
|
|
297628
|
-
"#fbe84a",
|
|
297629
|
-
"#89beff",
|
|
297630
|
-
"#c001c1",
|
|
297631
|
-
"#86eafe",
|
|
297632
|
-
"#dbdbdb"
|
|
297633
|
-
]
|
|
297634
|
-
},
|
|
297635
|
-
{
|
|
297636
|
-
"name": "Hybrid",
|
|
297637
|
-
"foreground": "#b7bcba",
|
|
297638
|
-
"background": "#161719",
|
|
297639
|
-
"cursor": "#b7bcba",
|
|
297640
|
-
"colors": [
|
|
297641
|
-
"#2a2e33",
|
|
297642
|
-
"#b84d51",
|
|
297643
|
-
"#b3bf5a",
|
|
297644
|
-
"#e4b55e",
|
|
297645
|
-
"#6e90b0",
|
|
297646
|
-
"#a17eac",
|
|
297647
|
-
"#7fbfb4",
|
|
297648
|
-
"#b5b9b6",
|
|
297649
|
-
"#1d1f22",
|
|
297650
|
-
"#8d2e32",
|
|
297651
|
-
"#798431",
|
|
297652
|
-
"#e58a50",
|
|
297653
|
-
"#4b6b88",
|
|
297654
|
-
"#6e5079",
|
|
297655
|
-
"#4d7b74",
|
|
297656
|
-
"#5a626a"
|
|
297657
|
-
]
|
|
297658
|
-
},
|
|
297659
|
-
{
|
|
297660
|
-
"name": "IC_Green_PPL",
|
|
297661
|
-
"foreground": "#d9efd3",
|
|
297662
|
-
"background": "#3a3d3f",
|
|
297663
|
-
"cursor": "#42ff58",
|
|
297664
|
-
"colors": [
|
|
297665
|
-
"#1f1f1f",
|
|
297666
|
-
"#fb002a",
|
|
297667
|
-
"#339c24",
|
|
297668
|
-
"#659b25",
|
|
297669
|
-
"#149b45",
|
|
297670
|
-
"#53b82c",
|
|
297671
|
-
"#2cb868",
|
|
297672
|
-
"#e0ffef",
|
|
297673
|
-
"#032710",
|
|
297674
|
-
"#a7ff3f",
|
|
297675
|
-
"#9fff6d",
|
|
297676
|
-
"#d2ff6d",
|
|
297677
|
-
"#72ffb5",
|
|
297678
|
-
"#50ff3e",
|
|
297679
|
-
"#22ff71",
|
|
297680
|
-
"#daefd0"
|
|
297681
|
-
]
|
|
297682
|
-
},
|
|
297683
|
-
{
|
|
297684
|
-
"name": "IC_Orange_PPL",
|
|
297685
|
-
"foreground": "#ffcb83",
|
|
297686
|
-
"background": "#262626",
|
|
297687
|
-
"cursor": "#fc531d",
|
|
297688
|
-
"colors": [
|
|
297689
|
-
"#000000",
|
|
297690
|
-
"#c13900",
|
|
297691
|
-
"#a4a900",
|
|
297692
|
-
"#caaf00",
|
|
297693
|
-
"#bd6d00",
|
|
297694
|
-
"#fc5e00",
|
|
297695
|
-
"#f79500",
|
|
297696
|
-
"#ffc88a",
|
|
297697
|
-
"#6a4f2a",
|
|
297698
|
-
"#ff8c68",
|
|
297699
|
-
"#f6ff40",
|
|
297700
|
-
"#ffe36e",
|
|
297701
|
-
"#ffbe55",
|
|
297702
|
-
"#fc874f",
|
|
297703
|
-
"#c69752",
|
|
297704
|
-
"#fafaff"
|
|
297705
|
-
]
|
|
297706
|
-
},
|
|
297707
|
-
{
|
|
297708
|
-
"name": "IR_Black",
|
|
297709
|
-
"foreground": "#f1f1f1",
|
|
297710
|
-
"background": "#000000",
|
|
297711
|
-
"cursor": "#808080",
|
|
297712
|
-
"colors": [
|
|
297713
|
-
"#4f4f4f",
|
|
297714
|
-
"#fa6c60",
|
|
297715
|
-
"#a8ff60",
|
|
297716
|
-
"#fffeb7",
|
|
297717
|
-
"#96cafe",
|
|
297718
|
-
"#fa73fd",
|
|
297719
|
-
"#c6c5fe",
|
|
297720
|
-
"#efedef",
|
|
297721
|
-
"#7b7b7b",
|
|
297722
|
-
"#fcb6b0",
|
|
297723
|
-
"#cfffab",
|
|
297724
|
-
"#ffffcc",
|
|
297725
|
-
"#b5dcff",
|
|
297726
|
-
"#fb9cfe",
|
|
297727
|
-
"#e0e0fe",
|
|
297728
|
-
"#ffffff"
|
|
297729
|
-
]
|
|
297730
|
-
},
|
|
297731
|
-
{
|
|
297732
|
-
"name": "Iceberg",
|
|
297733
|
-
"foreground": "#c6c8d1",
|
|
297734
|
-
"background": "#161821",
|
|
297735
|
-
"cursor": "#c6c8d1",
|
|
297736
|
-
"colors": [
|
|
297737
|
-
"#1e2132",
|
|
297738
|
-
"#e27878",
|
|
297739
|
-
"#b4be82",
|
|
297740
|
-
"#e2a478",
|
|
297741
|
-
"#84a0c6",
|
|
297742
|
-
"#a093c7",
|
|
297743
|
-
"#89b8c2",
|
|
297744
|
-
"#c6c8d1",
|
|
297745
|
-
"#6b7089",
|
|
297746
|
-
"#e98989",
|
|
297747
|
-
"#c0ca8e",
|
|
297748
|
-
"#e9b189",
|
|
297749
|
-
"#91acd1",
|
|
297750
|
-
"#ada0d3",
|
|
297751
|
-
"#95c4ce",
|
|
297752
|
-
"#d2d4de"
|
|
297753
|
-
]
|
|
297754
|
-
},
|
|
297755
|
-
{
|
|
297756
|
-
"name": "Jackie Brown",
|
|
297757
|
-
"foreground": "#ffcc2f",
|
|
297758
|
-
"background": "#2c1d16",
|
|
297759
|
-
"cursor": "#23ff18",
|
|
297760
|
-
"colors": [
|
|
297761
|
-
"#2c1d16",
|
|
297762
|
-
"#ef5734",
|
|
297763
|
-
"#2baf2b",
|
|
297764
|
-
"#bebf00",
|
|
297765
|
-
"#246eb2",
|
|
297766
|
-
"#d05ec1",
|
|
297767
|
-
"#00acee",
|
|
297768
|
-
"#bfbfbf",
|
|
297769
|
-
"#666666",
|
|
297770
|
-
"#e50000",
|
|
297771
|
-
"#86a93e",
|
|
297772
|
-
"#e5e500",
|
|
297773
|
-
"#0000ff",
|
|
297774
|
-
"#e500e5",
|
|
297775
|
-
"#00e5e5",
|
|
297776
|
-
"#e5e5e5"
|
|
297777
|
-
]
|
|
297778
|
-
},
|
|
297779
|
-
{
|
|
297780
|
-
"name": "Japanesque",
|
|
297781
|
-
"foreground": "#f7f6ec",
|
|
297782
|
-
"background": "#1e1e1e",
|
|
297783
|
-
"cursor": "#edcf4f",
|
|
297784
|
-
"colors": [
|
|
297785
|
-
"#343935",
|
|
297786
|
-
"#cf3f61",
|
|
297787
|
-
"#7bb75b",
|
|
297788
|
-
"#e9b32a",
|
|
297789
|
-
"#4c9ad4",
|
|
297790
|
-
"#a57fc4",
|
|
297791
|
-
"#389aad",
|
|
297792
|
-
"#fafaf6",
|
|
297793
|
-
"#595b59",
|
|
297794
|
-
"#d18fa6",
|
|
297795
|
-
"#767f2c",
|
|
297796
|
-
"#78592f",
|
|
297797
|
-
"#135979",
|
|
297798
|
-
"#604291",
|
|
297799
|
-
"#76bbca",
|
|
297800
|
-
"#b2b5ae"
|
|
297801
|
-
]
|
|
297802
|
-
},
|
|
297803
|
-
{
|
|
297804
|
-
"name": "Jazz",
|
|
297805
|
-
"foreground": "#3f3f3f",
|
|
297806
|
-
"background": "#f3f2f1",
|
|
297807
|
-
"cursor": "#9acf9f",
|
|
297808
|
-
"colors": [
|
|
297809
|
-
"#282c34",
|
|
297810
|
-
"#e06c75",
|
|
297811
|
-
"#668e3d",
|
|
297812
|
-
"#c49041",
|
|
297813
|
-
"#8c71bf",
|
|
297814
|
-
"#c678dd",
|
|
297815
|
-
"#878b91",
|
|
297816
|
-
"#abb2bf",
|
|
297817
|
-
"#548962",
|
|
297818
|
-
"#d19a66",
|
|
297819
|
-
"#668e3d",
|
|
297820
|
-
"#c49041",
|
|
297821
|
-
"#8c71bf",
|
|
297822
|
-
"#c678dd",
|
|
297823
|
-
"#5e6091",
|
|
297824
|
-
"#f2f7ff"
|
|
297825
|
-
]
|
|
297826
|
-
},
|
|
297827
|
-
{
|
|
297828
|
-
"name": "Jellybeans",
|
|
297829
|
-
"foreground": "#dedede",
|
|
297830
|
-
"background": "#121212",
|
|
297831
|
-
"cursor": "#ffa560",
|
|
297832
|
-
"colors": [
|
|
297833
|
-
"#929292",
|
|
297834
|
-
"#e27373",
|
|
297835
|
-
"#94b979",
|
|
297836
|
-
"#ffba7b",
|
|
297837
|
-
"#97bedc",
|
|
297838
|
-
"#e1c0fa",
|
|
297839
|
-
"#00988e",
|
|
297840
|
-
"#dedede",
|
|
297841
|
-
"#bdbdbd",
|
|
297842
|
-
"#ffa1a1",
|
|
297843
|
-
"#bddeab",
|
|
297844
|
-
"#ffdca0",
|
|
297845
|
-
"#b1d8f6",
|
|
297846
|
-
"#fbdaff",
|
|
297847
|
-
"#1ab2a8",
|
|
297848
|
-
"#ffffff"
|
|
297849
|
-
]
|
|
297850
|
-
},
|
|
297851
|
-
{
|
|
297852
|
-
"name": "JetBrains Darcula",
|
|
297853
|
-
"foreground": "#adadad",
|
|
297854
|
-
"background": "#202020",
|
|
297855
|
-
"cursor": "#ffffff",
|
|
297856
|
-
"colors": [
|
|
297857
|
-
"#000000",
|
|
297858
|
-
"#fa5355",
|
|
297859
|
-
"#126e00",
|
|
297860
|
-
"#c2c300",
|
|
297861
|
-
"#4581eb",
|
|
297862
|
-
"#fa54ff",
|
|
297863
|
-
"#33c2c1",
|
|
297864
|
-
"#adadad",
|
|
297865
|
-
"#555555",
|
|
297866
|
-
"#fb7172",
|
|
297867
|
-
"#67ff4f",
|
|
297868
|
-
"#ffff00",
|
|
297869
|
-
"#6d9df1",
|
|
297870
|
-
"#fb82ff",
|
|
297871
|
-
"#60d3d1",
|
|
297872
|
-
"#eeeeee"
|
|
297873
|
-
]
|
|
297874
|
-
},
|
|
297875
|
-
{
|
|
297876
|
-
"name": "Kibble",
|
|
297877
|
-
"foreground": "#f7f7f7",
|
|
297878
|
-
"background": "#0e100a",
|
|
297879
|
-
"cursor": "#9fda9c",
|
|
297880
|
-
"colors": [
|
|
297881
|
-
"#4d4d4d",
|
|
297882
|
-
"#c70031",
|
|
297883
|
-
"#29cf13",
|
|
297884
|
-
"#d8e30e",
|
|
297885
|
-
"#3449d1",
|
|
297886
|
-
"#8400ff",
|
|
297887
|
-
"#0798ab",
|
|
297888
|
-
"#e2d1e3",
|
|
297889
|
-
"#5a5a5a",
|
|
297890
|
-
"#f01578",
|
|
297891
|
-
"#6ce05c",
|
|
297892
|
-
"#f3f79e",
|
|
297893
|
-
"#97a4f7",
|
|
297894
|
-
"#c495f0",
|
|
297895
|
-
"#68f2e0",
|
|
297896
|
-
"#ffffff"
|
|
297897
|
-
]
|
|
297898
|
-
},
|
|
297899
|
-
{
|
|
297900
|
-
"name": "Later This Evening",
|
|
297901
|
-
"foreground": "#959595",
|
|
297902
|
-
"background": "#222222",
|
|
297903
|
-
"cursor": "#424242",
|
|
297904
|
-
"colors": [
|
|
297905
|
-
"#2b2b2b",
|
|
297906
|
-
"#d45a60",
|
|
297907
|
-
"#afba67",
|
|
297908
|
-
"#e5d289",
|
|
297909
|
-
"#a0bad6",
|
|
297910
|
-
"#c092d6",
|
|
297911
|
-
"#91bfb7",
|
|
297912
|
-
"#3c3d3d",
|
|
297913
|
-
"#454747",
|
|
297914
|
-
"#d3232f",
|
|
297915
|
-
"#aabb39",
|
|
297916
|
-
"#e5be39",
|
|
297917
|
-
"#6699d6",
|
|
297918
|
-
"#ab53d6",
|
|
297919
|
-
"#5fc0ae",
|
|
297920
|
-
"#c1c2c2"
|
|
297921
|
-
]
|
|
297922
|
-
},
|
|
297923
|
-
{
|
|
297924
|
-
"name": "Lavandula",
|
|
297925
|
-
"foreground": "#736e7d",
|
|
297926
|
-
"background": "#050014",
|
|
297927
|
-
"cursor": "#8c91fa",
|
|
297928
|
-
"colors": [
|
|
297929
|
-
"#230046",
|
|
297930
|
-
"#7d1625",
|
|
297931
|
-
"#337e6f",
|
|
297932
|
-
"#7f6f49",
|
|
297933
|
-
"#4f4a7f",
|
|
297934
|
-
"#5a3f7f",
|
|
297935
|
-
"#58777f",
|
|
297936
|
-
"#736e7d",
|
|
297937
|
-
"#372d46",
|
|
297938
|
-
"#e05167",
|
|
297939
|
-
"#52e0c4",
|
|
297940
|
-
"#e0c386",
|
|
297941
|
-
"#8e87e0",
|
|
297942
|
-
"#a776e0",
|
|
297943
|
-
"#9ad4e0",
|
|
297944
|
-
"#8c91fa"
|
|
297945
|
-
]
|
|
297946
|
-
},
|
|
297947
|
-
{
|
|
297948
|
-
"name": "Light Owl",
|
|
297949
|
-
"foreground": "#403f53",
|
|
297950
|
-
"background": "#fbfbfb",
|
|
297951
|
-
"cursor": "#90a7b2",
|
|
297952
|
-
"colors": [
|
|
297953
|
-
"#403f53",
|
|
297954
|
-
"#de3d3b",
|
|
297955
|
-
"#08916a",
|
|
297956
|
-
"#e0af02",
|
|
297957
|
-
"#288ed7",
|
|
297958
|
-
"#d6438a",
|
|
297959
|
-
"#2aa298",
|
|
297960
|
-
"#f0f0f0",
|
|
297961
|
-
"#403f53",
|
|
297962
|
-
"#de3d3b",
|
|
297963
|
-
"#08916a",
|
|
297964
|
-
"#daaa01",
|
|
297965
|
-
"#288ed7",
|
|
297966
|
-
"#d6438a",
|
|
297967
|
-
"#2aa298",
|
|
297968
|
-
"#979797"
|
|
297969
|
-
]
|
|
297970
|
-
},
|
|
297971
|
-
{
|
|
297972
|
-
"name": "LiquidCarbon",
|
|
297973
|
-
"foreground": "#afc2c2",
|
|
297974
|
-
"background": "#303030",
|
|
297975
|
-
"cursor": "#ffffff",
|
|
297976
|
-
"colors": [
|
|
297977
|
-
"#000000",
|
|
297978
|
-
"#ff3030",
|
|
297979
|
-
"#559a70",
|
|
297980
|
-
"#ccac00",
|
|
297981
|
-
"#0099cc",
|
|
297982
|
-
"#cc69c8",
|
|
297983
|
-
"#7ac4cc",
|
|
297984
|
-
"#bccccc",
|
|
297985
|
-
"#000000",
|
|
297986
|
-
"#ff3030",
|
|
297987
|
-
"#559a70",
|
|
297988
|
-
"#ccac00",
|
|
297989
|
-
"#0099cc",
|
|
297990
|
-
"#cc69c8",
|
|
297991
|
-
"#7ac4cc",
|
|
297992
|
-
"#bccccc"
|
|
297993
|
-
]
|
|
297994
|
-
},
|
|
297995
|
-
{
|
|
297996
|
-
"name": "LiquidCarbonTransparent",
|
|
297997
|
-
"foreground": "#afc2c2",
|
|
297998
|
-
"background": "#000000",
|
|
297999
|
-
"cursor": "#ffffff",
|
|
298000
|
-
"colors": [
|
|
298001
|
-
"#000000",
|
|
298002
|
-
"#ff3030",
|
|
298003
|
-
"#559a70",
|
|
298004
|
-
"#ccac00",
|
|
298005
|
-
"#0099cc",
|
|
298006
|
-
"#cc69c8",
|
|
298007
|
-
"#7ac4cc",
|
|
298008
|
-
"#bccccc",
|
|
298009
|
-
"#000000",
|
|
298010
|
-
"#ff3030",
|
|
298011
|
-
"#559a70",
|
|
298012
|
-
"#ccac00",
|
|
298013
|
-
"#0099cc",
|
|
298014
|
-
"#cc69c8",
|
|
298015
|
-
"#7ac4cc",
|
|
298016
|
-
"#bccccc"
|
|
298017
|
-
]
|
|
298018
|
-
},
|
|
298019
|
-
{
|
|
298020
|
-
"name": "LiquidCarbonTransparentInverse",
|
|
298021
|
-
"foreground": "#afc2c2",
|
|
298022
|
-
"background": "#000000",
|
|
298023
|
-
"cursor": "#ffffff",
|
|
298024
|
-
"colors": [
|
|
298025
|
-
"#bccccd",
|
|
298026
|
-
"#ff3030",
|
|
298027
|
-
"#559a70",
|
|
298028
|
-
"#ccac00",
|
|
298029
|
-
"#0099cc",
|
|
298030
|
-
"#cc69c8",
|
|
298031
|
-
"#7ac4cc",
|
|
298032
|
-
"#000000",
|
|
298033
|
-
"#ffffff",
|
|
298034
|
-
"#ff3030",
|
|
298035
|
-
"#559a70",
|
|
298036
|
-
"#ccac00",
|
|
298037
|
-
"#0099cc",
|
|
298038
|
-
"#cc69c8",
|
|
298039
|
-
"#7ac4cc",
|
|
298040
|
-
"#000000"
|
|
298041
|
-
]
|
|
298042
|
-
},
|
|
298043
|
-
{
|
|
298044
|
-
"name": "Man Page",
|
|
298045
|
-
"foreground": "#000000",
|
|
298046
|
-
"background": "#fef49c",
|
|
298047
|
-
"cursor": "#7f7f7f",
|
|
298048
|
-
"colors": [
|
|
298049
|
-
"#000000",
|
|
298050
|
-
"#cc0000",
|
|
298051
|
-
"#00a600",
|
|
298052
|
-
"#999900",
|
|
298053
|
-
"#0000b2",
|
|
298054
|
-
"#b200b2",
|
|
298055
|
-
"#00a6b2",
|
|
298056
|
-
"#cccccc",
|
|
298057
|
-
"#666666",
|
|
298058
|
-
"#e50000",
|
|
298059
|
-
"#00d900",
|
|
298060
|
-
"#e5e500",
|
|
298061
|
-
"#0000ff",
|
|
298062
|
-
"#e500e5",
|
|
298063
|
-
"#00e5e5",
|
|
298064
|
-
"#e5e5e5"
|
|
298065
|
-
]
|
|
298066
|
-
},
|
|
298067
|
-
{
|
|
298068
|
-
"name": "Material",
|
|
298069
|
-
"foreground": "#232322",
|
|
298070
|
-
"background": "#eaeaea",
|
|
298071
|
-
"cursor": "#16afca",
|
|
298072
|
-
"colors": [
|
|
298073
|
-
"#212121",
|
|
298074
|
-
"#b7141f",
|
|
298075
|
-
"#457b24",
|
|
298076
|
-
"#f6981e",
|
|
298077
|
-
"#134eb2",
|
|
298078
|
-
"#560088",
|
|
298079
|
-
"#0e717c",
|
|
298080
|
-
"#efefef",
|
|
298081
|
-
"#424242",
|
|
298082
|
-
"#e83b3f",
|
|
298083
|
-
"#7aba3a",
|
|
298084
|
-
"#ffea2e",
|
|
298085
|
-
"#54a4f3",
|
|
298086
|
-
"#aa4dbc",
|
|
298087
|
-
"#26bbd1",
|
|
298088
|
-
"#d9d9d9"
|
|
298089
|
-
]
|
|
298090
|
-
},
|
|
298091
|
-
{
|
|
298092
|
-
"name": "MaterialDark",
|
|
298093
|
-
"foreground": "#e5e5e5",
|
|
298094
|
-
"background": "#232322",
|
|
298095
|
-
"cursor": "#16afca",
|
|
298096
|
-
"colors": [
|
|
298097
|
-
"#212121",
|
|
298098
|
-
"#b7141f",
|
|
298099
|
-
"#457b24",
|
|
298100
|
-
"#f6981e",
|
|
298101
|
-
"#134eb2",
|
|
298102
|
-
"#560088",
|
|
298103
|
-
"#0e717c",
|
|
298104
|
-
"#efefef",
|
|
298105
|
-
"#424242",
|
|
298106
|
-
"#e83b3f",
|
|
298107
|
-
"#7aba3a",
|
|
298108
|
-
"#ffea2e",
|
|
298109
|
-
"#54a4f3",
|
|
298110
|
-
"#aa4dbc",
|
|
298111
|
-
"#26bbd1",
|
|
298112
|
-
"#d9d9d9"
|
|
298113
|
-
]
|
|
298114
|
-
},
|
|
298115
|
-
{
|
|
298116
|
-
"name": "Mathias",
|
|
298117
|
-
"foreground": "#bbbbbb",
|
|
298118
|
-
"background": "#000000",
|
|
298119
|
-
"cursor": "#bbbbbb",
|
|
298120
|
-
"colors": [
|
|
298121
|
-
"#000000",
|
|
298122
|
-
"#e52222",
|
|
298123
|
-
"#a6e32d",
|
|
298124
|
-
"#fc951e",
|
|
298125
|
-
"#c48dff",
|
|
298126
|
-
"#fa2573",
|
|
298127
|
-
"#67d9f0",
|
|
298128
|
-
"#f2f2f2",
|
|
298129
|
-
"#555555",
|
|
298130
|
-
"#ff5555",
|
|
298131
|
-
"#55ff55",
|
|
298132
|
-
"#ffff55",
|
|
298133
|
-
"#5555ff",
|
|
298134
|
-
"#ff55ff",
|
|
298135
|
-
"#55ffff",
|
|
298136
|
-
"#ffffff"
|
|
298137
|
-
]
|
|
298138
|
-
},
|
|
298139
|
-
{
|
|
298140
|
-
"name": "Medallion",
|
|
298141
|
-
"foreground": "#cac296",
|
|
298142
|
-
"background": "#1d1908",
|
|
298143
|
-
"cursor": "#d3ba30",
|
|
298144
|
-
"colors": [
|
|
298145
|
-
"#000000",
|
|
298146
|
-
"#b64c00",
|
|
298147
|
-
"#7c8b16",
|
|
298148
|
-
"#d3bd26",
|
|
298149
|
-
"#616bb0",
|
|
298150
|
-
"#8c5a90",
|
|
298151
|
-
"#916c25",
|
|
298152
|
-
"#cac29a",
|
|
298153
|
-
"#5e5219",
|
|
298154
|
-
"#ff9149",
|
|
298155
|
-
"#b2ca3b",
|
|
298156
|
-
"#ffe54a",
|
|
298157
|
-
"#acb8ff",
|
|
298158
|
-
"#ffa0ff",
|
|
298159
|
-
"#ffbc51",
|
|
298160
|
-
"#fed698"
|
|
298161
|
-
]
|
|
298162
|
-
},
|
|
298163
|
-
{
|
|
298164
|
-
"name": "Melange Dark",
|
|
298165
|
-
"foreground": "#ece1d7",
|
|
298166
|
-
"background": "#2a2520",
|
|
298167
|
-
"cursor": "#ece1d7",
|
|
298168
|
-
"colors": [
|
|
298169
|
-
"#352f2a",
|
|
298170
|
-
"#000000",
|
|
298171
|
-
"#000000",
|
|
298172
|
-
"#000000",
|
|
298173
|
-
"#000000",
|
|
298174
|
-
"#000000",
|
|
298175
|
-
"#000000",
|
|
298176
|
-
"#000000",
|
|
298177
|
-
"#4d453e",
|
|
298178
|
-
"#000000",
|
|
298179
|
-
"#000000",
|
|
298180
|
-
"#000000",
|
|
298181
|
-
"#000000",
|
|
298182
|
-
"#000000",
|
|
298183
|
-
"#000000",
|
|
298184
|
-
"#000000"
|
|
298185
|
-
]
|
|
298186
|
-
},
|
|
298187
|
-
{
|
|
298188
|
-
"name": "Misterioso",
|
|
298189
|
-
"foreground": "#e1e1e0",
|
|
298190
|
-
"background": "#2d3743",
|
|
298191
|
-
"cursor": "#000000",
|
|
298192
|
-
"colors": [
|
|
298193
|
-
"#000000",
|
|
298194
|
-
"#ff4242",
|
|
298195
|
-
"#74af68",
|
|
298196
|
-
"#ffad29",
|
|
298197
|
-
"#338f86",
|
|
298198
|
-
"#9414e6",
|
|
298199
|
-
"#23d7d7",
|
|
298200
|
-
"#e1e1e0",
|
|
298201
|
-
"#555555",
|
|
298202
|
-
"#ff3242",
|
|
298203
|
-
"#74cd68",
|
|
298204
|
-
"#ffb929",
|
|
298205
|
-
"#23d7d7",
|
|
298206
|
-
"#ff37ff",
|
|
298207
|
-
"#00ede1",
|
|
298208
|
-
"#ffffff"
|
|
298209
|
-
]
|
|
298210
|
-
},
|
|
298211
|
-
{
|
|
298212
|
-
"name": "Molokai",
|
|
298213
|
-
"foreground": "#bbbbbb",
|
|
298214
|
-
"background": "#121212",
|
|
298215
|
-
"cursor": "#bbbbbb",
|
|
298216
|
-
"colors": [
|
|
298217
|
-
"#121212",
|
|
298218
|
-
"#fa2573",
|
|
298219
|
-
"#98e123",
|
|
298220
|
-
"#dfd460",
|
|
298221
|
-
"#1080d0",
|
|
298222
|
-
"#8700ff",
|
|
298223
|
-
"#43a8d0",
|
|
298224
|
-
"#bbbbbb",
|
|
298225
|
-
"#555555",
|
|
298226
|
-
"#f6669d",
|
|
298227
|
-
"#b1e05f",
|
|
298228
|
-
"#fff26d",
|
|
298229
|
-
"#00afff",
|
|
298230
|
-
"#af87ff",
|
|
298231
|
-
"#51ceff",
|
|
298232
|
-
"#ffffff"
|
|
298233
|
-
]
|
|
298234
|
-
},
|
|
298235
|
-
{
|
|
298236
|
-
"name": "MonaLisa",
|
|
298237
|
-
"foreground": "#f7d66a",
|
|
298238
|
-
"background": "#120b0d",
|
|
298239
|
-
"cursor": "#c46c32",
|
|
298240
|
-
"colors": [
|
|
298241
|
-
"#351b0e",
|
|
298242
|
-
"#9b291c",
|
|
298243
|
-
"#636232",
|
|
298244
|
-
"#c36e28",
|
|
298245
|
-
"#515c5d",
|
|
298246
|
-
"#9b1d29",
|
|
298247
|
-
"#588056",
|
|
298248
|
-
"#f7d75c",
|
|
298249
|
-
"#874228",
|
|
298250
|
-
"#ff4331",
|
|
298251
|
-
"#b4b264",
|
|
298252
|
-
"#ff9566",
|
|
298253
|
-
"#9eb2b4",
|
|
298254
|
-
"#ff5b6a",
|
|
298255
|
-
"#8acd8f",
|
|
298256
|
-
"#ffe598"
|
|
298257
|
-
]
|
|
298258
|
-
},
|
|
298259
|
-
{
|
|
298260
|
-
"name": "Monokai Soda",
|
|
298261
|
-
"foreground": "#c4c5b5",
|
|
298262
|
-
"background": "#1a1a1a",
|
|
298263
|
-
"cursor": "#f6f7ec",
|
|
298264
|
-
"colors": [
|
|
298265
|
-
"#1a1a1a",
|
|
298266
|
-
"#f4005f",
|
|
298267
|
-
"#98e024",
|
|
298268
|
-
"#fa8419",
|
|
298269
|
-
"#9d65ff",
|
|
298270
|
-
"#f4005f",
|
|
298271
|
-
"#58d1eb",
|
|
298272
|
-
"#c4c5b5",
|
|
298273
|
-
"#625e4c",
|
|
298274
|
-
"#f4005f",
|
|
298275
|
-
"#98e024",
|
|
298276
|
-
"#e0d561",
|
|
298277
|
-
"#9d65ff",
|
|
298278
|
-
"#f4005f",
|
|
298279
|
-
"#58d1eb",
|
|
298280
|
-
"#f6f6ef"
|
|
298281
|
-
]
|
|
298282
|
-
},
|
|
298283
|
-
{
|
|
298284
|
-
"name": "Monokai Vivid",
|
|
298285
|
-
"foreground": "#f9f9f9",
|
|
298286
|
-
"background": "#121212",
|
|
298287
|
-
"cursor": "#fb0007",
|
|
298288
|
-
"colors": [
|
|
298289
|
-
"#121212",
|
|
298290
|
-
"#fa2934",
|
|
298291
|
-
"#98e123",
|
|
298292
|
-
"#fff30a",
|
|
298293
|
-
"#0443ff",
|
|
298294
|
-
"#f800f8",
|
|
298295
|
-
"#01b6ed",
|
|
298296
|
-
"#ffffff",
|
|
298297
|
-
"#838383",
|
|
298298
|
-
"#f6669d",
|
|
298299
|
-
"#b1e05f",
|
|
298300
|
-
"#fff26d",
|
|
298301
|
-
"#0443ff",
|
|
298302
|
-
"#f200f6",
|
|
298303
|
-
"#51ceff",
|
|
298304
|
-
"#ffffff"
|
|
298305
|
-
]
|
|
298306
|
-
},
|
|
298307
|
-
{
|
|
298308
|
-
"name": "N0tch2k",
|
|
298309
|
-
"foreground": "#a0a0a0",
|
|
298310
|
-
"background": "#222222",
|
|
298311
|
-
"cursor": "#aa9175",
|
|
298312
|
-
"colors": [
|
|
298313
|
-
"#383838",
|
|
298314
|
-
"#a95551",
|
|
298315
|
-
"#666666",
|
|
298316
|
-
"#a98051",
|
|
298317
|
-
"#657d3e",
|
|
298318
|
-
"#767676",
|
|
298319
|
-
"#c9c9c9",
|
|
298320
|
-
"#d0b8a3",
|
|
298321
|
-
"#474747",
|
|
298322
|
-
"#a97775",
|
|
298323
|
-
"#8c8c8c",
|
|
298324
|
-
"#a99175",
|
|
298325
|
-
"#98bd5e",
|
|
298326
|
-
"#a3a3a3",
|
|
298327
|
-
"#dcdcdc",
|
|
298328
|
-
"#d8c8bb"
|
|
298329
|
-
]
|
|
298330
|
-
},
|
|
298331
|
-
{
|
|
298332
|
-
"name": "Neopolitan",
|
|
298333
|
-
"foreground": "#ffffff",
|
|
298334
|
-
"background": "#271f19",
|
|
298335
|
-
"cursor": "#ffffff",
|
|
298336
|
-
"colors": [
|
|
298337
|
-
"#000000",
|
|
298338
|
-
"#800000",
|
|
298339
|
-
"#61ce3c",
|
|
298340
|
-
"#fbde2d",
|
|
298341
|
-
"#253b76",
|
|
298342
|
-
"#ff0080",
|
|
298343
|
-
"#8da6ce",
|
|
298344
|
-
"#f8f8f8",
|
|
298345
|
-
"#000000",
|
|
298346
|
-
"#800000",
|
|
298347
|
-
"#61ce3c",
|
|
298348
|
-
"#fbde2d",
|
|
298349
|
-
"#253b76",
|
|
298350
|
-
"#ff0080",
|
|
298351
|
-
"#8da6ce",
|
|
298352
|
-
"#f8f8f8"
|
|
298353
|
-
]
|
|
298354
|
-
},
|
|
298355
|
-
{
|
|
298356
|
-
"name": "Neutron",
|
|
298357
|
-
"foreground": "#e6e8ef",
|
|
298358
|
-
"background": "#1c1e22",
|
|
298359
|
-
"cursor": "#f6f7ec",
|
|
298360
|
-
"colors": [
|
|
298361
|
-
"#23252b",
|
|
298362
|
-
"#b54036",
|
|
298363
|
-
"#5ab977",
|
|
298364
|
-
"#deb566",
|
|
298365
|
-
"#6a7c93",
|
|
298366
|
-
"#a4799d",
|
|
298367
|
-
"#3f94a8",
|
|
298368
|
-
"#e6e8ef",
|
|
298369
|
-
"#23252b",
|
|
298370
|
-
"#b54036",
|
|
298371
|
-
"#5ab977",
|
|
298372
|
-
"#deb566",
|
|
298373
|
-
"#6a7c93",
|
|
298374
|
-
"#a4799d",
|
|
298375
|
-
"#3f94a8",
|
|
298376
|
-
"#ebedf2"
|
|
298377
|
-
]
|
|
298378
|
-
},
|
|
298379
|
-
{
|
|
298380
|
-
"name": "Night Owl",
|
|
298381
|
-
"foreground": "#d6deeb",
|
|
298382
|
-
"background": "#011627",
|
|
298383
|
-
"cursor": "#80a4c2",
|
|
298384
|
-
"colors": [
|
|
298385
|
-
"#011627",
|
|
298386
|
-
"#ef5350",
|
|
298387
|
-
"#22da6e",
|
|
298388
|
-
"#addb67",
|
|
298389
|
-
"#82aaff",
|
|
298390
|
-
"#c792ea",
|
|
298391
|
-
"#21c7a8",
|
|
298392
|
-
"#ffffff",
|
|
298393
|
-
"#969696",
|
|
298394
|
-
"#ef5350",
|
|
298395
|
-
"#22da6e",
|
|
298396
|
-
"#ffeb95",
|
|
298397
|
-
"#82aaff",
|
|
298398
|
-
"#c792ea",
|
|
298399
|
-
"#7fdbca",
|
|
298400
|
-
"#ffffff"
|
|
298401
|
-
]
|
|
298402
|
-
},
|
|
298403
|
-
{
|
|
298404
|
-
"name": "NightLion v1",
|
|
298405
|
-
"foreground": "#bbbbbb",
|
|
298406
|
-
"background": "#000000",
|
|
298407
|
-
"cursor": "#bbbbbb",
|
|
298408
|
-
"colors": [
|
|
298409
|
-
"#4c4c4c",
|
|
298410
|
-
"#bb0000",
|
|
298411
|
-
"#5fde8f",
|
|
298412
|
-
"#f3f167",
|
|
298413
|
-
"#276bd8",
|
|
298414
|
-
"#bb00bb",
|
|
298415
|
-
"#00dadf",
|
|
298416
|
-
"#bbbbbb",
|
|
298417
|
-
"#555555",
|
|
298418
|
-
"#ff5555",
|
|
298419
|
-
"#55ff55",
|
|
298420
|
-
"#ffff55",
|
|
298421
|
-
"#5555ff",
|
|
298422
|
-
"#ff55ff",
|
|
298423
|
-
"#55ffff",
|
|
298424
|
-
"#ffffff"
|
|
298425
|
-
]
|
|
298426
|
-
},
|
|
298427
|
-
{
|
|
298428
|
-
"name": "NightLion v2",
|
|
298429
|
-
"foreground": "#bbbbbb",
|
|
298430
|
-
"background": "#171717",
|
|
298431
|
-
"cursor": "#bbbbbb",
|
|
298432
|
-
"colors": [
|
|
298433
|
-
"#4c4c4c",
|
|
298434
|
-
"#bb0000",
|
|
298435
|
-
"#04f623",
|
|
298436
|
-
"#f3f167",
|
|
298437
|
-
"#64d0f0",
|
|
298438
|
-
"#ce6fdb",
|
|
298439
|
-
"#00dadf",
|
|
298440
|
-
"#bbbbbb",
|
|
298441
|
-
"#555555",
|
|
298442
|
-
"#ff5555",
|
|
298443
|
-
"#7df71d",
|
|
298444
|
-
"#ffff55",
|
|
298445
|
-
"#62cbe8",
|
|
298446
|
-
"#ff9bf5",
|
|
298447
|
-
"#00ccd8",
|
|
298448
|
-
"#ffffff"
|
|
298449
|
-
]
|
|
298450
|
-
},
|
|
298451
|
-
{
|
|
298452
|
-
"name": "Nord",
|
|
298453
|
-
"foreground": "#d8dee9",
|
|
298454
|
-
"background": "#2e3440",
|
|
298455
|
-
"cursor": "#d8dee9",
|
|
298456
|
-
"colors": [
|
|
298457
|
-
"#3b4252",
|
|
298458
|
-
"#bf616a",
|
|
298459
|
-
"#a3be8c",
|
|
298460
|
-
"#ebcb8b",
|
|
298461
|
-
"#81a1c1",
|
|
298462
|
-
"#b48ead",
|
|
298463
|
-
"#88c0d0",
|
|
298464
|
-
"#e5e9f0",
|
|
298465
|
-
"#373e4d",
|
|
298466
|
-
"#94545d",
|
|
298467
|
-
"#809575",
|
|
298468
|
-
"#b29e75",
|
|
298469
|
-
"#68809a",
|
|
298470
|
-
"#8c738c",
|
|
298471
|
-
"#6d96a5",
|
|
298472
|
-
"#aeb3bb"
|
|
298473
|
-
]
|
|
298474
|
-
},
|
|
298475
|
-
{
|
|
298476
|
-
"name": "Novel",
|
|
298477
|
-
"foreground": "#3b2322",
|
|
298478
|
-
"background": "#dfdbc3",
|
|
298479
|
-
"cursor": "#73635a",
|
|
298480
|
-
"colors": [
|
|
298481
|
-
"#000000",
|
|
298482
|
-
"#cc0000",
|
|
298483
|
-
"#009600",
|
|
298484
|
-
"#d06b00",
|
|
298485
|
-
"#0000cc",
|
|
298486
|
-
"#cc00cc",
|
|
298487
|
-
"#0087cc",
|
|
298488
|
-
"#cccccc",
|
|
298489
|
-
"#808080",
|
|
298490
|
-
"#cc0000",
|
|
298491
|
-
"#009600",
|
|
298492
|
-
"#d06b00",
|
|
298493
|
-
"#0000cc",
|
|
298494
|
-
"#cc00cc",
|
|
298495
|
-
"#0087cc",
|
|
298496
|
-
"#ffffff"
|
|
298497
|
-
]
|
|
298498
|
-
},
|
|
298499
|
-
{
|
|
298500
|
-
"name": "Obsidian",
|
|
298501
|
-
"foreground": "#cdcdcd",
|
|
298502
|
-
"background": "#283033",
|
|
298503
|
-
"cursor": "#c0cad0",
|
|
298504
|
-
"colors": [
|
|
298505
|
-
"#000000",
|
|
298506
|
-
"#a60001",
|
|
298507
|
-
"#00bb00",
|
|
298508
|
-
"#fecd22",
|
|
298509
|
-
"#3a9bdb",
|
|
298510
|
-
"#bb00bb",
|
|
298511
|
-
"#00bbbb",
|
|
298512
|
-
"#bbbbbb",
|
|
298513
|
-
"#555555",
|
|
298514
|
-
"#ff0003",
|
|
298515
|
-
"#93c863",
|
|
298516
|
-
"#fef874",
|
|
298517
|
-
"#a1d7ff",
|
|
298518
|
-
"#ff55ff",
|
|
298519
|
-
"#55ffff",
|
|
298520
|
-
"#ffffff"
|
|
298521
|
-
]
|
|
298522
|
-
},
|
|
298523
|
-
{
|
|
298524
|
-
"name": "Ocean",
|
|
298525
|
-
"foreground": "#ffffff",
|
|
298526
|
-
"background": "#224fbc",
|
|
298527
|
-
"cursor": "#7f7f7f",
|
|
298528
|
-
"colors": [
|
|
298529
|
-
"#000000",
|
|
298530
|
-
"#990000",
|
|
298531
|
-
"#00a600",
|
|
298532
|
-
"#999900",
|
|
298533
|
-
"#0000b2",
|
|
298534
|
-
"#b200b2",
|
|
298535
|
-
"#00a6b2",
|
|
298536
|
-
"#bfbfbf",
|
|
298537
|
-
"#666666",
|
|
298538
|
-
"#e50000",
|
|
298539
|
-
"#00d900",
|
|
298540
|
-
"#e5e500",
|
|
298541
|
-
"#0000ff",
|
|
298542
|
-
"#e500e5",
|
|
298543
|
-
"#00e5e5",
|
|
298544
|
-
"#e5e5e5"
|
|
298545
|
-
]
|
|
298546
|
-
},
|
|
298547
|
-
{
|
|
298548
|
-
"name": "OceanicMaterial",
|
|
298549
|
-
"foreground": "#c2c8d7",
|
|
298550
|
-
"background": "#1c262b",
|
|
298551
|
-
"cursor": "#b3b8c3",
|
|
298552
|
-
"colors": [
|
|
298553
|
-
"#000000",
|
|
298554
|
-
"#ee2b2a",
|
|
298555
|
-
"#40a33f",
|
|
298556
|
-
"#ffea2e",
|
|
298557
|
-
"#1e80f0",
|
|
298558
|
-
"#8800a0",
|
|
298559
|
-
"#16afca",
|
|
298560
|
-
"#a4a4a4",
|
|
298561
|
-
"#777777",
|
|
298562
|
-
"#dc5c60",
|
|
298563
|
-
"#70be71",
|
|
298564
|
-
"#fff163",
|
|
298565
|
-
"#54a4f3",
|
|
298566
|
-
"#aa4dbc",
|
|
298567
|
-
"#42c7da",
|
|
298568
|
-
"#ffffff"
|
|
298569
|
-
]
|
|
298570
|
-
},
|
|
298571
|
-
{
|
|
298572
|
-
"name": "Ollie",
|
|
298573
|
-
"foreground": "#8a8dae",
|
|
298574
|
-
"background": "#222125",
|
|
298575
|
-
"cursor": "#5b6ea7",
|
|
298576
|
-
"colors": [
|
|
298577
|
-
"#000000",
|
|
298578
|
-
"#ac2e31",
|
|
298579
|
-
"#31ac61",
|
|
298580
|
-
"#ac4300",
|
|
298581
|
-
"#2d57ac",
|
|
298582
|
-
"#b08528",
|
|
298583
|
-
"#1fa6ac",
|
|
298584
|
-
"#8a8eac",
|
|
298585
|
-
"#5b3725",
|
|
298586
|
-
"#ff3d48",
|
|
298587
|
-
"#3bff99",
|
|
298588
|
-
"#ff5e1e",
|
|
298589
|
-
"#4488ff",
|
|
298590
|
-
"#ffc21d",
|
|
298591
|
-
"#1ffaff",
|
|
298592
|
-
"#5b6ea7"
|
|
298593
|
-
]
|
|
298594
|
-
},
|
|
298595
|
-
{
|
|
298596
|
-
"name": "OneHalfDark",
|
|
298597
|
-
"foreground": "#dcdfe4",
|
|
298598
|
-
"background": "#282c34",
|
|
298599
|
-
"cursor": "#a3b3cc",
|
|
298600
|
-
"colors": [
|
|
298601
|
-
"#282c34",
|
|
298602
|
-
"#e06c75",
|
|
298603
|
-
"#98c379",
|
|
298604
|
-
"#e5c07b",
|
|
298605
|
-
"#61afef",
|
|
298606
|
-
"#c678dd",
|
|
298607
|
-
"#56b6c2",
|
|
298608
|
-
"#dcdfe4",
|
|
298609
|
-
"#282c34",
|
|
298610
|
-
"#e06c75",
|
|
298611
|
-
"#98c379",
|
|
298612
|
-
"#e5c07b",
|
|
298613
|
-
"#61afef",
|
|
298614
|
-
"#c678dd",
|
|
298615
|
-
"#56b6c2",
|
|
298616
|
-
"#dcdfe4"
|
|
298617
|
-
]
|
|
298618
|
-
},
|
|
298619
|
-
{
|
|
298620
|
-
"name": "OneHalfLight",
|
|
298621
|
-
"foreground": "#383a42",
|
|
298622
|
-
"background": "#fafafa",
|
|
298623
|
-
"cursor": "#bfceff",
|
|
298624
|
-
"colors": [
|
|
298625
|
-
"#383a42",
|
|
298626
|
-
"#e45649",
|
|
298627
|
-
"#50a14f",
|
|
298628
|
-
"#c18401",
|
|
298629
|
-
"#0184bc",
|
|
298630
|
-
"#a626a4",
|
|
298631
|
-
"#0997b3",
|
|
298632
|
-
"#fafafa",
|
|
298633
|
-
"#4f525e",
|
|
298634
|
-
"#e06c75",
|
|
298635
|
-
"#98c379",
|
|
298636
|
-
"#e5c07b",
|
|
298637
|
-
"#61afef",
|
|
298638
|
-
"#c678dd",
|
|
298639
|
-
"#56b6c2",
|
|
298640
|
-
"#ffffff"
|
|
298641
|
-
]
|
|
298642
|
-
},
|
|
298643
|
-
{
|
|
298644
|
-
"name": "Pandora",
|
|
298645
|
-
"foreground": "#e1e1e1",
|
|
298646
|
-
"background": "#141e43",
|
|
298647
|
-
"cursor": "#43d58e",
|
|
298648
|
-
"colors": [
|
|
298649
|
-
"#000000",
|
|
298650
|
-
"#ff4242",
|
|
298651
|
-
"#74af68",
|
|
298652
|
-
"#ffad29",
|
|
298653
|
-
"#338f86",
|
|
298654
|
-
"#9414e6",
|
|
298655
|
-
"#23d7d7",
|
|
298656
|
-
"#e2e2e2",
|
|
298657
|
-
"#3f5648",
|
|
298658
|
-
"#ff3242",
|
|
298659
|
-
"#74cd68",
|
|
298660
|
-
"#ffb929",
|
|
298661
|
-
"#23d7d7",
|
|
298662
|
-
"#ff37ff",
|
|
298663
|
-
"#00ede1",
|
|
298664
|
-
"#ffffff"
|
|
298665
|
-
]
|
|
298666
|
-
},
|
|
298667
|
-
{
|
|
298668
|
-
"name": "Paraiso Dark",
|
|
298669
|
-
"foreground": "#a39e9b",
|
|
298670
|
-
"background": "#2f1e2e",
|
|
298671
|
-
"cursor": "#a39e9b",
|
|
298672
|
-
"colors": [
|
|
298673
|
-
"#2f1e2e",
|
|
298674
|
-
"#ef6155",
|
|
298675
|
-
"#48b685",
|
|
298676
|
-
"#fec418",
|
|
298677
|
-
"#06b6ef",
|
|
298678
|
-
"#815ba4",
|
|
298679
|
-
"#5bc4bf",
|
|
298680
|
-
"#a39e9b",
|
|
298681
|
-
"#776e71",
|
|
298682
|
-
"#ef6155",
|
|
298683
|
-
"#48b685",
|
|
298684
|
-
"#fec418",
|
|
298685
|
-
"#06b6ef",
|
|
298686
|
-
"#815ba4",
|
|
298687
|
-
"#5bc4bf",
|
|
298688
|
-
"#e7e9db"
|
|
298689
|
-
]
|
|
298690
|
-
},
|
|
298691
|
-
{
|
|
298692
|
-
"name": "Parasio Dark",
|
|
298693
|
-
"foreground": "#a39e9b",
|
|
298694
|
-
"background": "#2f1e2e",
|
|
298695
|
-
"cursor": "#a39e9b",
|
|
298696
|
-
"colors": [
|
|
298697
|
-
"#2f1e2e",
|
|
298698
|
-
"#ef6155",
|
|
298699
|
-
"#48b685",
|
|
298700
|
-
"#fec418",
|
|
298701
|
-
"#06b6ef",
|
|
298702
|
-
"#815ba4",
|
|
298703
|
-
"#5bc4bf",
|
|
298704
|
-
"#a39e9b",
|
|
298705
|
-
"#776e71",
|
|
298706
|
-
"#ef6155",
|
|
298707
|
-
"#48b685",
|
|
298708
|
-
"#fec418",
|
|
298709
|
-
"#06b6ef",
|
|
298710
|
-
"#815ba4",
|
|
298711
|
-
"#5bc4bf",
|
|
298712
|
-
"#e7e9db"
|
|
298713
|
-
]
|
|
298714
|
-
},
|
|
298715
|
-
{
|
|
298716
|
-
"name": "PaulMillr",
|
|
298717
|
-
"foreground": "#f2f2f2",
|
|
298718
|
-
"background": "#000000",
|
|
298719
|
-
"cursor": "#4d4d4d",
|
|
298720
|
-
"colors": [
|
|
298721
|
-
"#2a2a2a",
|
|
298722
|
-
"#ff0000",
|
|
298723
|
-
"#79ff0f",
|
|
298724
|
-
"#e7bf00",
|
|
298725
|
-
"#396bd7",
|
|
298726
|
-
"#b449be",
|
|
298727
|
-
"#66ccff",
|
|
298728
|
-
"#bbbbbb",
|
|
298729
|
-
"#666666",
|
|
298730
|
-
"#ff0080",
|
|
298731
|
-
"#66ff66",
|
|
298732
|
-
"#f3d64e",
|
|
298733
|
-
"#709aed",
|
|
298734
|
-
"#db67e6",
|
|
298735
|
-
"#7adff2",
|
|
298736
|
-
"#ffffff"
|
|
298737
|
-
]
|
|
298738
|
-
},
|
|
298739
|
-
{
|
|
298740
|
-
"name": "PencilDark",
|
|
298741
|
-
"foreground": "#f1f1f1",
|
|
298742
|
-
"background": "#212121",
|
|
298743
|
-
"cursor": "#20bbfc",
|
|
298744
|
-
"colors": [
|
|
298745
|
-
"#212121",
|
|
298746
|
-
"#c30771",
|
|
298747
|
-
"#10a778",
|
|
298748
|
-
"#a89c14",
|
|
298749
|
-
"#008ec4",
|
|
298750
|
-
"#523c79",
|
|
298751
|
-
"#20a5ba",
|
|
298752
|
-
"#d9d9d9",
|
|
298753
|
-
"#424242",
|
|
298754
|
-
"#fb007a",
|
|
298755
|
-
"#5fd7af",
|
|
298756
|
-
"#f3e430",
|
|
298757
|
-
"#20bbfc",
|
|
298758
|
-
"#6855de",
|
|
298759
|
-
"#4fb8cc",
|
|
298760
|
-
"#f1f1f1"
|
|
298761
|
-
]
|
|
298762
|
-
},
|
|
298763
|
-
{
|
|
298764
|
-
"name": "PencilLight",
|
|
298765
|
-
"foreground": "#424242",
|
|
298766
|
-
"background": "#f1f1f1",
|
|
298767
|
-
"cursor": "#20bbfc",
|
|
298768
|
-
"colors": [
|
|
298769
|
-
"#212121",
|
|
298770
|
-
"#c30771",
|
|
298771
|
-
"#10a778",
|
|
298772
|
-
"#a89c14",
|
|
298773
|
-
"#008ec4",
|
|
298774
|
-
"#523c79",
|
|
298775
|
-
"#20a5ba",
|
|
298776
|
-
"#d9d9d9",
|
|
298777
|
-
"#424242",
|
|
298778
|
-
"#fb007a",
|
|
298779
|
-
"#5fd7af",
|
|
298780
|
-
"#f3e430",
|
|
298781
|
-
"#20bbfc",
|
|
298782
|
-
"#6855de",
|
|
298783
|
-
"#4fb8cc",
|
|
298784
|
-
"#f1f1f1"
|
|
298785
|
-
]
|
|
298786
|
-
},
|
|
298787
|
-
{
|
|
298788
|
-
"name": "Piatto Light",
|
|
298789
|
-
"foreground": "#414141",
|
|
298790
|
-
"background": "#ffffff",
|
|
298791
|
-
"cursor": "#5e77c8",
|
|
298792
|
-
"colors": [
|
|
298793
|
-
"#414141",
|
|
298794
|
-
"#b23771",
|
|
298795
|
-
"#66781e",
|
|
298796
|
-
"#cd6f34",
|
|
298797
|
-
"#3c5ea8",
|
|
298798
|
-
"#a454b2",
|
|
298799
|
-
"#66781e",
|
|
298800
|
-
"#ffffff",
|
|
298801
|
-
"#3f3f3f",
|
|
298802
|
-
"#db3365",
|
|
298803
|
-
"#829429",
|
|
298804
|
-
"#cd6f34",
|
|
298805
|
-
"#3c5ea8",
|
|
298806
|
-
"#a454b2",
|
|
298807
|
-
"#829429",
|
|
298808
|
-
"#f2f2f2"
|
|
298809
|
-
]
|
|
298810
|
-
},
|
|
298811
|
-
{
|
|
298812
|
-
"name": "Pnevma",
|
|
298813
|
-
"foreground": "#d0d0d0",
|
|
298814
|
-
"background": "#1c1c1c",
|
|
298815
|
-
"cursor": "#e4c9af",
|
|
298816
|
-
"colors": [
|
|
298817
|
-
"#2f2e2d",
|
|
298818
|
-
"#a36666",
|
|
298819
|
-
"#90a57d",
|
|
298820
|
-
"#d7af87",
|
|
298821
|
-
"#7fa5bd",
|
|
298822
|
-
"#c79ec4",
|
|
298823
|
-
"#8adbb4",
|
|
298824
|
-
"#d0d0d0",
|
|
298825
|
-
"#4a4845",
|
|
298826
|
-
"#d78787",
|
|
298827
|
-
"#afbea2",
|
|
298828
|
-
"#e4c9af",
|
|
298829
|
-
"#a1bdce",
|
|
298830
|
-
"#d7beda",
|
|
298831
|
-
"#b1e7dd",
|
|
298832
|
-
"#efefef"
|
|
298833
|
-
]
|
|
298834
|
-
},
|
|
298835
|
-
{
|
|
298836
|
-
"name": "Pro",
|
|
298837
|
-
"foreground": "#f2f2f2",
|
|
298838
|
-
"background": "#000000",
|
|
298839
|
-
"cursor": "#4d4d4d",
|
|
298840
|
-
"colors": [
|
|
298841
|
-
"#000000",
|
|
298842
|
-
"#990000",
|
|
298843
|
-
"#00a600",
|
|
298844
|
-
"#999900",
|
|
298845
|
-
"#2009db",
|
|
298846
|
-
"#b200b2",
|
|
298847
|
-
"#00a6b2",
|
|
298848
|
-
"#bfbfbf",
|
|
298849
|
-
"#666666",
|
|
298850
|
-
"#e50000",
|
|
298851
|
-
"#00d900",
|
|
298852
|
-
"#e5e500",
|
|
298853
|
-
"#0000ff",
|
|
298854
|
-
"#e500e5",
|
|
298855
|
-
"#00e5e5",
|
|
298856
|
-
"#e5e5e5"
|
|
298857
|
-
]
|
|
298858
|
-
},
|
|
298859
|
-
{
|
|
298860
|
-
"name": "Red Alert",
|
|
298861
|
-
"foreground": "#ffffff",
|
|
298862
|
-
"background": "#762423",
|
|
298863
|
-
"cursor": "#ffffff",
|
|
298864
|
-
"colors": [
|
|
298865
|
-
"#000000",
|
|
298866
|
-
"#d62e4e",
|
|
298867
|
-
"#71be6b",
|
|
298868
|
-
"#beb86b",
|
|
298869
|
-
"#489bee",
|
|
298870
|
-
"#e979d7",
|
|
298871
|
-
"#6bbeb8",
|
|
298872
|
-
"#d6d6d6",
|
|
298873
|
-
"#262626",
|
|
298874
|
-
"#e02553",
|
|
298875
|
-
"#aff08c",
|
|
298876
|
-
"#dfddb7",
|
|
298877
|
-
"#65aaf1",
|
|
298878
|
-
"#ddb7df",
|
|
298879
|
-
"#b7dfdd",
|
|
298880
|
-
"#ffffff"
|
|
298881
|
-
]
|
|
298882
|
-
},
|
|
298883
|
-
{
|
|
298884
|
-
"name": "Red Sands",
|
|
298885
|
-
"foreground": "#d7c9a7",
|
|
298886
|
-
"background": "#7a251e",
|
|
298887
|
-
"cursor": "#ffffff",
|
|
298888
|
-
"colors": [
|
|
298889
|
-
"#000000",
|
|
298890
|
-
"#ff3f00",
|
|
298891
|
-
"#00bb00",
|
|
298892
|
-
"#e7b000",
|
|
298893
|
-
"#0072ff",
|
|
298894
|
-
"#bb00bb",
|
|
298895
|
-
"#00bbbb",
|
|
298896
|
-
"#bbbbbb",
|
|
298897
|
-
"#555555",
|
|
298898
|
-
"#bb0000",
|
|
298899
|
-
"#00bb00",
|
|
298900
|
-
"#e7b000",
|
|
298901
|
-
"#0072ae",
|
|
298902
|
-
"#ff55ff",
|
|
298903
|
-
"#55ffff",
|
|
298904
|
-
"#ffffff"
|
|
298905
|
-
]
|
|
298906
|
-
},
|
|
298907
|
-
{
|
|
298908
|
-
"name": "Relaxed",
|
|
298909
|
-
"foreground": "#d8d8d8",
|
|
298910
|
-
"background": "#343a43",
|
|
298911
|
-
"cursor": "#d8d8d8",
|
|
298912
|
-
"colors": [
|
|
298913
|
-
"#2c3037",
|
|
298914
|
-
"#bb5653",
|
|
298915
|
-
"#909d62",
|
|
298916
|
-
"#eac179",
|
|
298917
|
-
"#698698",
|
|
298918
|
-
"#b06597",
|
|
298919
|
-
"#c9dfff",
|
|
298920
|
-
"#d8d8d8",
|
|
298921
|
-
"#626262",
|
|
298922
|
-
"#c35956",
|
|
298923
|
-
"#9fab76",
|
|
298924
|
-
"#ecc179",
|
|
298925
|
-
"#7da9c7",
|
|
298926
|
-
"#ba6ca0",
|
|
298927
|
-
"#abbacf",
|
|
298928
|
-
"#f7f7f7"
|
|
298929
|
-
]
|
|
298930
|
-
},
|
|
298931
|
-
{
|
|
298932
|
-
"name": "Rippedcasts",
|
|
298933
|
-
"foreground": "#ffffff",
|
|
298934
|
-
"background": "#2b2b2b",
|
|
298935
|
-
"cursor": "#7f7f7f",
|
|
298936
|
-
"colors": [
|
|
298937
|
-
"#000000",
|
|
298938
|
-
"#cdaf95",
|
|
298939
|
-
"#a8ff60",
|
|
298940
|
-
"#bfbb1f",
|
|
298941
|
-
"#75a5b0",
|
|
298942
|
-
"#ff73fd",
|
|
298943
|
-
"#5a647e",
|
|
298944
|
-
"#bfbfbf",
|
|
298945
|
-
"#666666",
|
|
298946
|
-
"#eecbad",
|
|
298947
|
-
"#bcee68",
|
|
298948
|
-
"#e5e500",
|
|
298949
|
-
"#86bdc9",
|
|
298950
|
-
"#e500e5",
|
|
298951
|
-
"#8c9bc4",
|
|
298952
|
-
"#e5e5e5"
|
|
298953
|
-
]
|
|
298954
|
-
},
|
|
298955
|
-
{
|
|
298956
|
-
"name": "Rose Pine",
|
|
298957
|
-
"foreground": "#e0def4",
|
|
298958
|
-
"background": "#191724",
|
|
298959
|
-
"cursor": "#555169",
|
|
298960
|
-
"colors": [
|
|
298961
|
-
"#26233a",
|
|
298962
|
-
"#eb6f92",
|
|
298963
|
-
"#31748f",
|
|
298964
|
-
"#f6c177",
|
|
298965
|
-
"#9ccfd8",
|
|
298966
|
-
"#c4a7e7",
|
|
298967
|
-
"#ebbcba",
|
|
298968
|
-
"#e0def4",
|
|
298969
|
-
"#6e6a86",
|
|
298970
|
-
"#eb6f92",
|
|
298971
|
-
"#31748f",
|
|
298972
|
-
"#f6c177",
|
|
298973
|
-
"#9ccfd8",
|
|
298974
|
-
"#c4a7e7",
|
|
298975
|
-
"#ebbcba",
|
|
298976
|
-
"#e0def4"
|
|
298977
|
-
]
|
|
298978
|
-
},
|
|
298979
|
-
{
|
|
298980
|
-
"name": "Rose Pine Dawn",
|
|
298981
|
-
"foreground": "#575279",
|
|
298982
|
-
"background": "#faf4ed",
|
|
298983
|
-
"cursor": "#9893a5",
|
|
298984
|
-
"colors": [
|
|
298985
|
-
"#f2e9de",
|
|
298986
|
-
"#b4637a",
|
|
298987
|
-
"#286983",
|
|
298988
|
-
"#ea9d34",
|
|
298989
|
-
"#56949f",
|
|
298990
|
-
"#907aa9",
|
|
298991
|
-
"#d7827e",
|
|
298992
|
-
"#575279",
|
|
298993
|
-
"#6e6a86",
|
|
298994
|
-
"#b4637a",
|
|
298995
|
-
"#286983",
|
|
298996
|
-
"#ea9d34",
|
|
298997
|
-
"#56949f",
|
|
298998
|
-
"#907aa9",
|
|
298999
|
-
"#d7827e",
|
|
299000
|
-
"#575279"
|
|
299001
|
-
]
|
|
299002
|
-
},
|
|
299003
|
-
{
|
|
299004
|
-
"name": "Rose Pine Moon",
|
|
299005
|
-
"foreground": "#e0def4",
|
|
299006
|
-
"background": "#232136",
|
|
299007
|
-
"cursor": "#59546d",
|
|
299008
|
-
"colors": [
|
|
299009
|
-
"#393552",
|
|
299010
|
-
"#eb6f92",
|
|
299011
|
-
"#3e8fb0",
|
|
299012
|
-
"#f6c177",
|
|
299013
|
-
"#9ccfd8",
|
|
299014
|
-
"#c4a7e7",
|
|
299015
|
-
"#ea9a97",
|
|
299016
|
-
"#e0def4",
|
|
299017
|
-
"#817c9c",
|
|
299018
|
-
"#eb6f92",
|
|
299019
|
-
"#3e8fb0",
|
|
299020
|
-
"#f6c177",
|
|
299021
|
-
"#9ccfd8",
|
|
299022
|
-
"#c4a7e7",
|
|
299023
|
-
"#ea9a97",
|
|
299024
|
-
"#e0def4"
|
|
299025
|
-
]
|
|
299026
|
-
},
|
|
299027
|
-
{
|
|
299028
|
-
"name": "Royal",
|
|
299029
|
-
"foreground": "#514968",
|
|
299030
|
-
"background": "#100815",
|
|
299031
|
-
"cursor": "#524966",
|
|
299032
|
-
"colors": [
|
|
299033
|
-
"#241f2b",
|
|
299034
|
-
"#91284c",
|
|
299035
|
-
"#23801c",
|
|
299036
|
-
"#b49d27",
|
|
299037
|
-
"#6580b0",
|
|
299038
|
-
"#674d96",
|
|
299039
|
-
"#8aaabe",
|
|
299040
|
-
"#524966",
|
|
299041
|
-
"#312d3d",
|
|
299042
|
-
"#d5356c",
|
|
299043
|
-
"#2cd946",
|
|
299044
|
-
"#fde83b",
|
|
299045
|
-
"#90baf9",
|
|
299046
|
-
"#a479e3",
|
|
299047
|
-
"#acd4eb",
|
|
299048
|
-
"#9e8cbd"
|
|
299049
|
-
]
|
|
299050
|
-
},
|
|
299051
|
-
{
|
|
299052
|
-
"name": "Ryuuko",
|
|
299053
|
-
"foreground": "#ececec",
|
|
299054
|
-
"background": "#2c3941",
|
|
299055
|
-
"cursor": "#ececec",
|
|
299056
|
-
"colors": [
|
|
299057
|
-
"#2c3941",
|
|
299058
|
-
"#865f5b",
|
|
299059
|
-
"#66907d",
|
|
299060
|
-
"#b1a990",
|
|
299061
|
-
"#6a8e95",
|
|
299062
|
-
"#b18a73",
|
|
299063
|
-
"#88b2ac",
|
|
299064
|
-
"#ececec",
|
|
299065
|
-
"#5d7079",
|
|
299066
|
-
"#865f5b",
|
|
299067
|
-
"#66907d",
|
|
299068
|
-
"#b1a990",
|
|
299069
|
-
"#6a8e95",
|
|
299070
|
-
"#b18a73",
|
|
299071
|
-
"#88b2ac",
|
|
299072
|
-
"#ececec"
|
|
299073
|
-
]
|
|
299074
|
-
},
|
|
299075
|
-
{
|
|
299076
|
-
"name": "SeaShells",
|
|
299077
|
-
"foreground": "#deb88d",
|
|
299078
|
-
"background": "#09141b",
|
|
299079
|
-
"cursor": "#fca02f",
|
|
299080
|
-
"colors": [
|
|
299081
|
-
"#17384c",
|
|
299082
|
-
"#d15123",
|
|
299083
|
-
"#027c9b",
|
|
299084
|
-
"#fca02f",
|
|
299085
|
-
"#1e4950",
|
|
299086
|
-
"#68d4f1",
|
|
299087
|
-
"#50a3b5",
|
|
299088
|
-
"#deb88d",
|
|
299089
|
-
"#434b53",
|
|
299090
|
-
"#d48678",
|
|
299091
|
-
"#628d98",
|
|
299092
|
-
"#fdd39f",
|
|
299093
|
-
"#1bbcdd",
|
|
299094
|
-
"#bbe3ee",
|
|
299095
|
-
"#87acb4",
|
|
299096
|
-
"#fee4ce"
|
|
299097
|
-
]
|
|
299098
|
-
},
|
|
299099
|
-
{
|
|
299100
|
-
"name": "Seafoam Pastel",
|
|
299101
|
-
"foreground": "#d4e7d4",
|
|
299102
|
-
"background": "#243435",
|
|
299103
|
-
"cursor": "#57647a",
|
|
299104
|
-
"colors": [
|
|
299105
|
-
"#757575",
|
|
299106
|
-
"#825d4d",
|
|
299107
|
-
"#728c62",
|
|
299108
|
-
"#ada16d",
|
|
299109
|
-
"#4d7b82",
|
|
299110
|
-
"#8a7267",
|
|
299111
|
-
"#729494",
|
|
299112
|
-
"#e0e0e0",
|
|
299113
|
-
"#8a8a8a",
|
|
299114
|
-
"#cf937a",
|
|
299115
|
-
"#98d9aa",
|
|
299116
|
-
"#fae79d",
|
|
299117
|
-
"#7ac3cf",
|
|
299118
|
-
"#d6b2a1",
|
|
299119
|
-
"#ade0e0",
|
|
299120
|
-
"#e0e0e0"
|
|
299121
|
-
]
|
|
299122
|
-
},
|
|
299123
|
-
{
|
|
299124
|
-
"name": "Seti",
|
|
299125
|
-
"foreground": "#cacecd",
|
|
299126
|
-
"background": "#111213",
|
|
299127
|
-
"cursor": "#e3bf21",
|
|
299128
|
-
"colors": [
|
|
299129
|
-
"#323232",
|
|
299130
|
-
"#c22832",
|
|
299131
|
-
"#8ec43d",
|
|
299132
|
-
"#e0c64f",
|
|
299133
|
-
"#43a5d5",
|
|
299134
|
-
"#8b57b5",
|
|
299135
|
-
"#8ec43d",
|
|
299136
|
-
"#eeeeee",
|
|
299137
|
-
"#323232",
|
|
299138
|
-
"#c22832",
|
|
299139
|
-
"#8ec43d",
|
|
299140
|
-
"#e0c64f",
|
|
299141
|
-
"#43a5d5",
|
|
299142
|
-
"#8b57b5",
|
|
299143
|
-
"#8ec43d",
|
|
299144
|
-
"#ffffff"
|
|
299145
|
-
]
|
|
299146
|
-
},
|
|
299147
|
-
{
|
|
299148
|
-
"name": "Shaman",
|
|
299149
|
-
"foreground": "#405555",
|
|
299150
|
-
"background": "#001015",
|
|
299151
|
-
"cursor": "#4afcd6",
|
|
299152
|
-
"colors": [
|
|
299153
|
-
"#012026",
|
|
299154
|
-
"#b2302d",
|
|
299155
|
-
"#00a941",
|
|
299156
|
-
"#5e8baa",
|
|
299157
|
-
"#449a86",
|
|
299158
|
-
"#00599d",
|
|
299159
|
-
"#5d7e19",
|
|
299160
|
-
"#405555",
|
|
299161
|
-
"#384451",
|
|
299162
|
-
"#ff4242",
|
|
299163
|
-
"#2aea5e",
|
|
299164
|
-
"#8ed4fd",
|
|
299165
|
-
"#61d5ba",
|
|
299166
|
-
"#1298ff",
|
|
299167
|
-
"#98d028",
|
|
299168
|
-
"#58fbd6"
|
|
299169
|
-
]
|
|
299170
|
-
},
|
|
299171
|
-
{
|
|
299172
|
-
"name": "Slate",
|
|
299173
|
-
"foreground": "#35b1d2",
|
|
299174
|
-
"background": "#222222",
|
|
299175
|
-
"cursor": "#87d3c4",
|
|
299176
|
-
"colors": [
|
|
299177
|
-
"#222222",
|
|
299178
|
-
"#e2a8bf",
|
|
299179
|
-
"#81d778",
|
|
299180
|
-
"#c4c9c0",
|
|
299181
|
-
"#264b49",
|
|
299182
|
-
"#a481d3",
|
|
299183
|
-
"#15ab9c",
|
|
299184
|
-
"#02c5e0",
|
|
299185
|
-
"#ffffff",
|
|
299186
|
-
"#ffcdd9",
|
|
299187
|
-
"#beffa8",
|
|
299188
|
-
"#d0ccca",
|
|
299189
|
-
"#7ab0d2",
|
|
299190
|
-
"#c5a7d9",
|
|
299191
|
-
"#8cdfe0",
|
|
299192
|
-
"#e0e0e0"
|
|
299193
|
-
]
|
|
299194
|
-
},
|
|
299195
|
-
{
|
|
299196
|
-
"name": "Smyck",
|
|
299197
|
-
"foreground": "#f7f7f7",
|
|
299198
|
-
"background": "#1b1b1b",
|
|
299199
|
-
"cursor": "#bbbbbb",
|
|
299200
|
-
"colors": [
|
|
299201
|
-
"#000000",
|
|
299202
|
-
"#b84131",
|
|
299203
|
-
"#7da900",
|
|
299204
|
-
"#c4a500",
|
|
299205
|
-
"#62a3c4",
|
|
299206
|
-
"#ba8acc",
|
|
299207
|
-
"#207383",
|
|
299208
|
-
"#a1a1a1",
|
|
299209
|
-
"#7a7a7a",
|
|
299210
|
-
"#d6837c",
|
|
299211
|
-
"#c4f137",
|
|
299212
|
-
"#fee14d",
|
|
299213
|
-
"#8dcff0",
|
|
299214
|
-
"#f79aff",
|
|
299215
|
-
"#6ad9cf",
|
|
299216
|
-
"#f7f7f7"
|
|
299217
|
-
]
|
|
299218
|
-
},
|
|
299219
|
-
{
|
|
299220
|
-
"name": "SoftServer",
|
|
299221
|
-
"foreground": "#99a3a2",
|
|
299222
|
-
"background": "#242626",
|
|
299223
|
-
"cursor": "#d2e0de",
|
|
299224
|
-
"colors": [
|
|
299225
|
-
"#000000",
|
|
299226
|
-
"#a2686a",
|
|
299227
|
-
"#9aa56a",
|
|
299228
|
-
"#a3906a",
|
|
299229
|
-
"#6b8fa3",
|
|
299230
|
-
"#6a71a3",
|
|
299231
|
-
"#6ba58f",
|
|
299232
|
-
"#99a3a2",
|
|
299233
|
-
"#666c6c",
|
|
299234
|
-
"#dd5c60",
|
|
299235
|
-
"#bfdf55",
|
|
299236
|
-
"#deb360",
|
|
299237
|
-
"#62b1df",
|
|
299238
|
-
"#606edf",
|
|
299239
|
-
"#64e39c",
|
|
299240
|
-
"#d2e0de"
|
|
299241
|
-
]
|
|
299242
|
-
},
|
|
299243
|
-
{
|
|
299244
|
-
"name": "Solarized Darcula",
|
|
299245
|
-
"foreground": "#d2d8d9",
|
|
299246
|
-
"background": "#3d3f41",
|
|
299247
|
-
"cursor": "#708284",
|
|
299248
|
-
"colors": [
|
|
299249
|
-
"#25292a",
|
|
299250
|
-
"#f24840",
|
|
299251
|
-
"#629655",
|
|
299252
|
-
"#b68800",
|
|
299253
|
-
"#2075c7",
|
|
299254
|
-
"#797fd4",
|
|
299255
|
-
"#15968d",
|
|
299256
|
-
"#d2d8d9",
|
|
299257
|
-
"#25292a",
|
|
299258
|
-
"#f24840",
|
|
299259
|
-
"#629655",
|
|
299260
|
-
"#b68800",
|
|
299261
|
-
"#2075c7",
|
|
299262
|
-
"#797fd4",
|
|
299263
|
-
"#15968d",
|
|
299264
|
-
"#d2d8d9"
|
|
299265
|
-
]
|
|
299266
|
-
},
|
|
299267
|
-
{
|
|
299268
|
-
"name": "Solarized Dark",
|
|
299269
|
-
"foreground": "#708284",
|
|
299270
|
-
"background": "#001e27",
|
|
299271
|
-
"cursor": "#708284",
|
|
299272
|
-
"colors": [
|
|
299273
|
-
"#002831",
|
|
299274
|
-
"#d11c24",
|
|
299275
|
-
"#738a05",
|
|
299276
|
-
"#a57706",
|
|
299277
|
-
"#2176c7",
|
|
299278
|
-
"#c61c6f",
|
|
299279
|
-
"#259286",
|
|
299280
|
-
"#eae3cb",
|
|
299281
|
-
"#001e27",
|
|
299282
|
-
"#bd3613",
|
|
299283
|
-
"#475b62",
|
|
299284
|
-
"#536870",
|
|
299285
|
-
"#708284",
|
|
299286
|
-
"#5956ba",
|
|
299287
|
-
"#819090",
|
|
299288
|
-
"#fcf4dc"
|
|
299289
|
-
]
|
|
299290
|
-
},
|
|
299291
|
-
{
|
|
299292
|
-
"name": "Solarized Dark - Patched",
|
|
299293
|
-
"foreground": "#708284",
|
|
299294
|
-
"background": "#001e27",
|
|
299295
|
-
"cursor": "#708284",
|
|
299296
|
-
"colors": [
|
|
299297
|
-
"#002831",
|
|
299298
|
-
"#d11c24",
|
|
299299
|
-
"#738a05",
|
|
299300
|
-
"#a57706",
|
|
299301
|
-
"#2176c7",
|
|
299302
|
-
"#c61c6f",
|
|
299303
|
-
"#259286",
|
|
299304
|
-
"#eae3cb",
|
|
299305
|
-
"#475b62",
|
|
299306
|
-
"#bd3613",
|
|
299307
|
-
"#475b62",
|
|
299308
|
-
"#536870",
|
|
299309
|
-
"#708284",
|
|
299310
|
-
"#5956ba",
|
|
299311
|
-
"#819090",
|
|
299312
|
-
"#fcf4dc"
|
|
299313
|
-
]
|
|
299314
|
-
},
|
|
299315
|
-
{
|
|
299316
|
-
"name": "Solarized Dark Higher Contrast",
|
|
299317
|
-
"foreground": "#9cc2c3",
|
|
299318
|
-
"background": "#001e27",
|
|
299319
|
-
"cursor": "#f34b00",
|
|
299320
|
-
"colors": [
|
|
299321
|
-
"#002831",
|
|
299322
|
-
"#d11c24",
|
|
299323
|
-
"#6cbe6c",
|
|
299324
|
-
"#a57706",
|
|
299325
|
-
"#2176c7",
|
|
299326
|
-
"#c61c6f",
|
|
299327
|
-
"#259286",
|
|
299328
|
-
"#eae3cb",
|
|
299329
|
-
"#006488",
|
|
299330
|
-
"#f5163b",
|
|
299331
|
-
"#51ef84",
|
|
299332
|
-
"#b27e28",
|
|
299333
|
-
"#178ec8",
|
|
299334
|
-
"#e24d8e",
|
|
299335
|
-
"#00b39e",
|
|
299336
|
-
"#fcf4dc"
|
|
299337
|
-
]
|
|
299338
|
-
},
|
|
299339
|
-
{
|
|
299340
|
-
"name": "Solarized Light",
|
|
299341
|
-
"foreground": "#536870",
|
|
299342
|
-
"background": "#fcf4dc",
|
|
299343
|
-
"cursor": "#536870",
|
|
299344
|
-
"colors": [
|
|
299345
|
-
"#002831",
|
|
299346
|
-
"#d11c24",
|
|
299347
|
-
"#738a05",
|
|
299348
|
-
"#a57706",
|
|
299349
|
-
"#2176c7",
|
|
299350
|
-
"#c61c6f",
|
|
299351
|
-
"#259286",
|
|
299352
|
-
"#eae3cb",
|
|
299353
|
-
"#001e27",
|
|
299354
|
-
"#bd3613",
|
|
299355
|
-
"#475b62",
|
|
299356
|
-
"#536870",
|
|
299357
|
-
"#708284",
|
|
299358
|
-
"#5956ba",
|
|
299359
|
-
"#819090",
|
|
299360
|
-
"#fcf4dc"
|
|
299361
|
-
]
|
|
299362
|
-
},
|
|
299363
|
-
{
|
|
299364
|
-
"name": "SpaceGray",
|
|
299365
|
-
"foreground": "#b3b8c3",
|
|
299366
|
-
"background": "#20242d",
|
|
299367
|
-
"cursor": "#b3b8c3",
|
|
299368
|
-
"colors": [
|
|
299369
|
-
"#000000",
|
|
299370
|
-
"#b04b57",
|
|
299371
|
-
"#87b379",
|
|
299372
|
-
"#e5c179",
|
|
299373
|
-
"#7d8fa4",
|
|
299374
|
-
"#a47996",
|
|
299375
|
-
"#85a7a5",
|
|
299376
|
-
"#b3b8c3",
|
|
299377
|
-
"#000000",
|
|
299378
|
-
"#b04b57",
|
|
299379
|
-
"#87b379",
|
|
299380
|
-
"#e5c179",
|
|
299381
|
-
"#7d8fa4",
|
|
299382
|
-
"#a47996",
|
|
299383
|
-
"#85a7a5",
|
|
299384
|
-
"#ffffff"
|
|
299385
|
-
]
|
|
299386
|
-
},
|
|
299387
|
-
{
|
|
299388
|
-
"name": "SpaceGray Eighties",
|
|
299389
|
-
"foreground": "#bdbaae",
|
|
299390
|
-
"background": "#222222",
|
|
299391
|
-
"cursor": "#bbbbbb",
|
|
299392
|
-
"colors": [
|
|
299393
|
-
"#15171c",
|
|
299394
|
-
"#ec5f67",
|
|
299395
|
-
"#81a764",
|
|
299396
|
-
"#fec254",
|
|
299397
|
-
"#5486c0",
|
|
299398
|
-
"#bf83c1",
|
|
299399
|
-
"#57c2c1",
|
|
299400
|
-
"#efece7",
|
|
299401
|
-
"#555555",
|
|
299402
|
-
"#ff6973",
|
|
299403
|
-
"#93d493",
|
|
299404
|
-
"#ffd256",
|
|
299405
|
-
"#4d84d1",
|
|
299406
|
-
"#ff55ff",
|
|
299407
|
-
"#83e9e4",
|
|
299408
|
-
"#ffffff"
|
|
299409
|
-
]
|
|
299410
|
-
},
|
|
299411
|
-
{
|
|
299412
|
-
"name": "SpaceGray Eighties Dull",
|
|
299413
|
-
"foreground": "#c9c6bc",
|
|
299414
|
-
"background": "#222222",
|
|
299415
|
-
"cursor": "#bbbbbb",
|
|
299416
|
-
"colors": [
|
|
299417
|
-
"#15171c",
|
|
299418
|
-
"#b24a56",
|
|
299419
|
-
"#92b477",
|
|
299420
|
-
"#c6735a",
|
|
299421
|
-
"#7c8fa5",
|
|
299422
|
-
"#a5789e",
|
|
299423
|
-
"#80cdcb",
|
|
299424
|
-
"#b3b8c3",
|
|
299425
|
-
"#555555",
|
|
299426
|
-
"#ec5f67",
|
|
299427
|
-
"#89e986",
|
|
299428
|
-
"#fec254",
|
|
299429
|
-
"#5486c0",
|
|
299430
|
-
"#bf83c1",
|
|
299431
|
-
"#58c2c1",
|
|
299432
|
-
"#ffffff"
|
|
299433
|
-
]
|
|
299434
|
-
},
|
|
299435
|
-
{
|
|
299436
|
-
"name": "Spacedust",
|
|
299437
|
-
"foreground": "#ecf0c1",
|
|
299438
|
-
"background": "#0a1e24",
|
|
299439
|
-
"cursor": "#708284",
|
|
299440
|
-
"colors": [
|
|
299441
|
-
"#6e5346",
|
|
299442
|
-
"#e35b00",
|
|
299443
|
-
"#5cab96",
|
|
299444
|
-
"#e3cd7b",
|
|
299445
|
-
"#0f548b",
|
|
299446
|
-
"#e35b00",
|
|
299447
|
-
"#06afc7",
|
|
299448
|
-
"#f0f1ce",
|
|
299449
|
-
"#684c31",
|
|
299450
|
-
"#ff8a3a",
|
|
299451
|
-
"#aecab8",
|
|
299452
|
-
"#ffc878",
|
|
299453
|
-
"#67a0ce",
|
|
299454
|
-
"#ff8a3a",
|
|
299455
|
-
"#83a7b4",
|
|
299456
|
-
"#fefff1"
|
|
299457
|
-
]
|
|
299458
|
-
},
|
|
299459
|
-
{
|
|
299460
|
-
"name": "Spiderman",
|
|
299461
|
-
"foreground": "#e3e3e3",
|
|
299462
|
-
"background": "#1b1d1e",
|
|
299463
|
-
"cursor": "#2c3fff",
|
|
299464
|
-
"colors": [
|
|
299465
|
-
"#1b1d1e",
|
|
299466
|
-
"#e60813",
|
|
299467
|
-
"#e22928",
|
|
299468
|
-
"#e24756",
|
|
299469
|
-
"#2c3fff",
|
|
299470
|
-
"#2435db",
|
|
299471
|
-
"#3256ff",
|
|
299472
|
-
"#fffef6",
|
|
299473
|
-
"#505354",
|
|
299474
|
-
"#ff0325",
|
|
299475
|
-
"#ff3338",
|
|
299476
|
-
"#fe3a35",
|
|
299477
|
-
"#1d50ff",
|
|
299478
|
-
"#747cff",
|
|
299479
|
-
"#6184ff",
|
|
299480
|
-
"#fffff9"
|
|
299481
|
-
]
|
|
299482
|
-
},
|
|
299483
|
-
{
|
|
299484
|
-
"name": "Spring",
|
|
299485
|
-
"foreground": "#4d4d4c",
|
|
299486
|
-
"background": "#ffffff",
|
|
299487
|
-
"cursor": "#4d4d4c",
|
|
299488
|
-
"colors": [
|
|
299489
|
-
"#000000",
|
|
299490
|
-
"#ff4d83",
|
|
299491
|
-
"#1f8c3b",
|
|
299492
|
-
"#1fc95b",
|
|
299493
|
-
"#1dd3ee",
|
|
299494
|
-
"#8959a8",
|
|
299495
|
-
"#3e999f",
|
|
299496
|
-
"#ffffff",
|
|
299497
|
-
"#000000",
|
|
299498
|
-
"#ff0021",
|
|
299499
|
-
"#1fc231",
|
|
299500
|
-
"#d5b807",
|
|
299501
|
-
"#15a9fd",
|
|
299502
|
-
"#8959a8",
|
|
299503
|
-
"#3e999f",
|
|
299504
|
-
"#ffffff"
|
|
299505
|
-
]
|
|
299506
|
-
},
|
|
299507
|
-
{
|
|
299508
|
-
"name": "Square",
|
|
299509
|
-
"foreground": "#acacab",
|
|
299510
|
-
"background": "#1a1a1a",
|
|
299511
|
-
"cursor": "#fcfbcc",
|
|
299512
|
-
"colors": [
|
|
299513
|
-
"#050505",
|
|
299514
|
-
"#e9897c",
|
|
299515
|
-
"#b6377d",
|
|
299516
|
-
"#ecebbe",
|
|
299517
|
-
"#a9cdeb",
|
|
299518
|
-
"#75507b",
|
|
299519
|
-
"#c9caec",
|
|
299520
|
-
"#f2f2f2",
|
|
299521
|
-
"#141414",
|
|
299522
|
-
"#f99286",
|
|
299523
|
-
"#c3f786",
|
|
299524
|
-
"#fcfbcc",
|
|
299525
|
-
"#b6defb",
|
|
299526
|
-
"#ad7fa8",
|
|
299527
|
-
"#d7d9fc",
|
|
299528
|
-
"#e2e2e2"
|
|
299529
|
-
]
|
|
299530
|
-
},
|
|
299531
|
-
{
|
|
299532
|
-
"name": "Sundried",
|
|
299533
|
-
"foreground": "#c9c9c9",
|
|
299534
|
-
"background": "#1a1818",
|
|
299535
|
-
"cursor": "#ffffff",
|
|
299536
|
-
"colors": [
|
|
299537
|
-
"#302b2a",
|
|
299538
|
-
"#a7463d",
|
|
299539
|
-
"#587744",
|
|
299540
|
-
"#9d602a",
|
|
299541
|
-
"#485b98",
|
|
299542
|
-
"#864651",
|
|
299543
|
-
"#9c814f",
|
|
299544
|
-
"#c9c9c9",
|
|
299545
|
-
"#4d4e48",
|
|
299546
|
-
"#aa000c",
|
|
299547
|
-
"#128c21",
|
|
299548
|
-
"#fc6a21",
|
|
299549
|
-
"#7999f7",
|
|
299550
|
-
"#fd8aa1",
|
|
299551
|
-
"#fad484",
|
|
299552
|
-
"#ffffff"
|
|
299553
|
-
]
|
|
299554
|
-
},
|
|
299555
|
-
{
|
|
299556
|
-
"name": "Symfonic",
|
|
299557
|
-
"foreground": "#ffffff",
|
|
299558
|
-
"background": "#000000",
|
|
299559
|
-
"cursor": "#dc322f",
|
|
299560
|
-
"colors": [
|
|
299561
|
-
"#000000",
|
|
299562
|
-
"#dc322f",
|
|
299563
|
-
"#56db3a",
|
|
299564
|
-
"#ff8400",
|
|
299565
|
-
"#0084d4",
|
|
299566
|
-
"#b729d9",
|
|
299567
|
-
"#ccccff",
|
|
299568
|
-
"#ffffff",
|
|
299569
|
-
"#1b1d21",
|
|
299570
|
-
"#dc322f",
|
|
299571
|
-
"#56db3a",
|
|
299572
|
-
"#ff8400",
|
|
299573
|
-
"#0084d4",
|
|
299574
|
-
"#b729d9",
|
|
299575
|
-
"#ccccff",
|
|
299576
|
-
"#ffffff"
|
|
299577
|
-
]
|
|
299578
|
-
},
|
|
299579
|
-
{
|
|
299580
|
-
"name": "Tango",
|
|
299581
|
-
"foreground": "#babdb6",
|
|
299582
|
-
"background": "#000000",
|
|
299583
|
-
"cursor": "#babdb6",
|
|
299584
|
-
"colors": [
|
|
299585
|
-
"#2e3436",
|
|
299586
|
-
"#cc0000",
|
|
299587
|
-
"#4e9a06",
|
|
299588
|
-
"#c4a000",
|
|
299589
|
-
"#3465a4",
|
|
299590
|
-
"#75507b",
|
|
299591
|
-
"#06989a",
|
|
299592
|
-
"#d3d7cf",
|
|
299593
|
-
"#555753",
|
|
299594
|
-
"#ef2929",
|
|
299595
|
-
"#8ae234",
|
|
299596
|
-
"#fce94f",
|
|
299597
|
-
"#729fcf",
|
|
299598
|
-
"#ad7fa8",
|
|
299599
|
-
"#34e2e2",
|
|
299600
|
-
"#eeeeec"
|
|
299601
|
-
]
|
|
299602
|
-
},
|
|
299603
|
-
{
|
|
299604
|
-
"name": "Teerb",
|
|
299605
|
-
"foreground": "#d0d0d0",
|
|
299606
|
-
"background": "#262626",
|
|
299607
|
-
"cursor": "#e4c9af",
|
|
299608
|
-
"colors": [
|
|
299609
|
-
"#1c1c1c",
|
|
299610
|
-
"#d68686",
|
|
299611
|
-
"#aed686",
|
|
299612
|
-
"#d7af87",
|
|
299613
|
-
"#86aed6",
|
|
299614
|
-
"#d6aed6",
|
|
299615
|
-
"#8adbb4",
|
|
299616
|
-
"#d0d0d0",
|
|
299617
|
-
"#1c1c1c",
|
|
299618
|
-
"#d68686",
|
|
299619
|
-
"#aed686",
|
|
299620
|
-
"#e4c9af",
|
|
299621
|
-
"#86aed6",
|
|
299622
|
-
"#d6aed6",
|
|
299623
|
-
"#b1e7dd",
|
|
299624
|
-
"#efefef"
|
|
299625
|
-
]
|
|
299626
|
-
},
|
|
299627
|
-
{
|
|
299628
|
-
"name": "Terminal Basic",
|
|
299629
|
-
"foreground": "#000000",
|
|
299630
|
-
"background": "#ffffff",
|
|
299631
|
-
"cursor": "#7f7f7f",
|
|
299632
|
-
"colors": [
|
|
299633
|
-
"#000000",
|
|
299634
|
-
"#990000",
|
|
299635
|
-
"#00a600",
|
|
299636
|
-
"#999900",
|
|
299637
|
-
"#0000b2",
|
|
299638
|
-
"#b200b2",
|
|
299639
|
-
"#00a6b2",
|
|
299640
|
-
"#bfbfbf",
|
|
299641
|
-
"#666666",
|
|
299642
|
-
"#e50000",
|
|
299643
|
-
"#00d900",
|
|
299644
|
-
"#e5e500",
|
|
299645
|
-
"#0000ff",
|
|
299646
|
-
"#e500e5",
|
|
299647
|
-
"#00e5e5",
|
|
299648
|
-
"#e5e5e5"
|
|
299649
|
-
]
|
|
299650
|
-
},
|
|
299651
|
-
{
|
|
299652
|
-
"name": "Thayer Bright",
|
|
299653
|
-
"foreground": "#f8f8f8",
|
|
299654
|
-
"background": "#1b1d1e",
|
|
299655
|
-
"cursor": "#fc971f",
|
|
299656
|
-
"colors": [
|
|
299657
|
-
"#1b1d1e",
|
|
299658
|
-
"#f92672",
|
|
299659
|
-
"#4df840",
|
|
299660
|
-
"#f4fd22",
|
|
299661
|
-
"#2757d6",
|
|
299662
|
-
"#8c54fe",
|
|
299663
|
-
"#38c8b5",
|
|
299664
|
-
"#ccccc6",
|
|
299665
|
-
"#505354",
|
|
299666
|
-
"#ff5995",
|
|
299667
|
-
"#b6e354",
|
|
299668
|
-
"#feed6c",
|
|
299669
|
-
"#3f78ff",
|
|
299670
|
-
"#9e6ffe",
|
|
299671
|
-
"#23cfd5",
|
|
299672
|
-
"#f8f8f2"
|
|
299673
|
-
]
|
|
299674
|
-
},
|
|
299675
|
-
{
|
|
299676
|
-
"name": "The Hulk",
|
|
299677
|
-
"foreground": "#b5b5b5",
|
|
299678
|
-
"background": "#1b1d1e",
|
|
299679
|
-
"cursor": "#16b61b",
|
|
299680
|
-
"colors": [
|
|
299681
|
-
"#1b1d1e",
|
|
299682
|
-
"#269d1b",
|
|
299683
|
-
"#13ce30",
|
|
299684
|
-
"#63e457",
|
|
299685
|
-
"#2525f5",
|
|
299686
|
-
"#641f74",
|
|
299687
|
-
"#378ca9",
|
|
299688
|
-
"#d9d8d1",
|
|
299689
|
-
"#505354",
|
|
299690
|
-
"#8dff2a",
|
|
299691
|
-
"#48ff77",
|
|
299692
|
-
"#3afe16",
|
|
299693
|
-
"#506b95",
|
|
299694
|
-
"#72589d",
|
|
299695
|
-
"#4085a6",
|
|
299696
|
-
"#e5e6e1"
|
|
299697
|
-
]
|
|
299698
|
-
},
|
|
299699
|
-
{
|
|
299700
|
-
"name": "TokyoNight",
|
|
299701
|
-
"foreground": "#c0caf5",
|
|
299702
|
-
"background": "#1a1b26",
|
|
299703
|
-
"cursor": "#c0caf5",
|
|
299704
|
-
"colors": [
|
|
299705
|
-
"#15161e",
|
|
299706
|
-
"#f7768e",
|
|
299707
|
-
"#9ece6a",
|
|
299708
|
-
"#e0af68",
|
|
299709
|
-
"#7aa2f7",
|
|
299710
|
-
"#bb9af7",
|
|
299711
|
-
"#7dcfff",
|
|
299712
|
-
"#a9b1d6",
|
|
299713
|
-
"#414868",
|
|
299714
|
-
"#f7768e",
|
|
299715
|
-
"#9ece6a",
|
|
299716
|
-
"#e0af68",
|
|
299717
|
-
"#7aa2f7",
|
|
299718
|
-
"#bb9af7",
|
|
299719
|
-
"#7dcfff",
|
|
299720
|
-
"#c0caf5"
|
|
299721
|
-
]
|
|
299722
|
-
},
|
|
299723
|
-
{
|
|
299724
|
-
"name": "TokyoNight Day",
|
|
299725
|
-
"foreground": "#3760bf",
|
|
299726
|
-
"background": "#e1e2e7",
|
|
299727
|
-
"cursor": "#3760bf",
|
|
299728
|
-
"colors": [
|
|
299729
|
-
"#e9e9ed",
|
|
299730
|
-
"#f52a65",
|
|
299731
|
-
"#587539",
|
|
299732
|
-
"#8c6c3e",
|
|
299733
|
-
"#2e7de9",
|
|
299734
|
-
"#9854f1",
|
|
299735
|
-
"#007197",
|
|
299736
|
-
"#6172b0",
|
|
299737
|
-
"#a1a6c5",
|
|
299738
|
-
"#f52a65",
|
|
299739
|
-
"#587539",
|
|
299740
|
-
"#8c6c3e",
|
|
299741
|
-
"#2e7de9",
|
|
299742
|
-
"#9854f1",
|
|
299743
|
-
"#007197",
|
|
299744
|
-
"#3760bf"
|
|
299745
|
-
]
|
|
299746
|
-
},
|
|
299747
|
-
{
|
|
299748
|
-
"name": "TokyoNight Storm",
|
|
299749
|
-
"foreground": "#c0caf5",
|
|
299750
|
-
"background": "#24283b",
|
|
299751
|
-
"cursor": "#c0caf5",
|
|
299752
|
-
"colors": [
|
|
299753
|
-
"#1d202f",
|
|
299754
|
-
"#f7768e",
|
|
299755
|
-
"#9ece6a",
|
|
299756
|
-
"#e0af68",
|
|
299757
|
-
"#7aa2f7",
|
|
299758
|
-
"#bb9af7",
|
|
299759
|
-
"#7dcfff",
|
|
299760
|
-
"#a9b1d6",
|
|
299761
|
-
"#414868",
|
|
299762
|
-
"#f7768e",
|
|
299763
|
-
"#9ece6a",
|
|
299764
|
-
"#e0af68",
|
|
299765
|
-
"#7aa2f7",
|
|
299766
|
-
"#bb9af7",
|
|
299767
|
-
"#7dcfff",
|
|
299768
|
-
"#c0caf5"
|
|
299769
|
-
]
|
|
299770
|
-
},
|
|
299771
|
-
{
|
|
299772
|
-
"name": "Tomorrow",
|
|
299773
|
-
"foreground": "#4d4d4c",
|
|
299774
|
-
"background": "#ffffff",
|
|
299775
|
-
"cursor": "#4d4d4c",
|
|
299776
|
-
"colors": [
|
|
299777
|
-
"#000000",
|
|
299778
|
-
"#c82829",
|
|
299779
|
-
"#718c00",
|
|
299780
|
-
"#eab700",
|
|
299781
|
-
"#4271ae",
|
|
299782
|
-
"#8959a8",
|
|
299783
|
-
"#3e999f",
|
|
299784
|
-
"#ffffff",
|
|
299785
|
-
"#000000",
|
|
299786
|
-
"#c82829",
|
|
299787
|
-
"#718c00",
|
|
299788
|
-
"#eab700",
|
|
299789
|
-
"#4271ae",
|
|
299790
|
-
"#8959a8",
|
|
299791
|
-
"#3e999f",
|
|
299792
|
-
"#ffffff"
|
|
299793
|
-
]
|
|
299794
|
-
},
|
|
299795
|
-
{
|
|
299796
|
-
"name": "Tomorrow Night",
|
|
299797
|
-
"foreground": "#c5c8c6",
|
|
299798
|
-
"background": "#1d1f21",
|
|
299799
|
-
"cursor": "#c5c8c6",
|
|
299800
|
-
"colors": [
|
|
299801
|
-
"#000000",
|
|
299802
|
-
"#cc6666",
|
|
299803
|
-
"#b5bd68",
|
|
299804
|
-
"#f0c674",
|
|
299805
|
-
"#81a2be",
|
|
299806
|
-
"#b294bb",
|
|
299807
|
-
"#8abeb7",
|
|
299808
|
-
"#ffffff",
|
|
299809
|
-
"#000000",
|
|
299810
|
-
"#cc6666",
|
|
299811
|
-
"#b5bd68",
|
|
299812
|
-
"#f0c674",
|
|
299813
|
-
"#81a2be",
|
|
299814
|
-
"#b294bb",
|
|
299815
|
-
"#8abeb7",
|
|
299816
|
-
"#ffffff"
|
|
299817
|
-
]
|
|
299818
|
-
},
|
|
299819
|
-
{
|
|
299820
|
-
"name": "Tomorrow Night Blue",
|
|
299821
|
-
"foreground": "#ffffff",
|
|
299822
|
-
"background": "#002451",
|
|
299823
|
-
"cursor": "#ffffff",
|
|
299824
|
-
"colors": [
|
|
299825
|
-
"#000000",
|
|
299826
|
-
"#ff9da4",
|
|
299827
|
-
"#d1f1a9",
|
|
299828
|
-
"#ffeead",
|
|
299829
|
-
"#bbdaff",
|
|
299830
|
-
"#ebbbff",
|
|
299831
|
-
"#99ffff",
|
|
299832
|
-
"#ffffff",
|
|
299833
|
-
"#000000",
|
|
299834
|
-
"#ff9da4",
|
|
299835
|
-
"#d1f1a9",
|
|
299836
|
-
"#ffeead",
|
|
299837
|
-
"#bbdaff",
|
|
299838
|
-
"#ebbbff",
|
|
299839
|
-
"#99ffff",
|
|
299840
|
-
"#ffffff"
|
|
299841
|
-
]
|
|
299842
|
-
},
|
|
299843
|
-
{
|
|
299844
|
-
"name": "Tomorrow Night Bright",
|
|
299845
|
-
"foreground": "#eaeaea",
|
|
299846
|
-
"background": "#000000",
|
|
299847
|
-
"cursor": "#eaeaea",
|
|
299848
|
-
"colors": [
|
|
299849
|
-
"#000000",
|
|
299850
|
-
"#d54e53",
|
|
299851
|
-
"#b9ca4a",
|
|
299852
|
-
"#e7c547",
|
|
299853
|
-
"#7aa6da",
|
|
299854
|
-
"#c397d8",
|
|
299855
|
-
"#70c0b1",
|
|
299856
|
-
"#ffffff",
|
|
299857
|
-
"#000000",
|
|
299858
|
-
"#d54e53",
|
|
299859
|
-
"#b9ca4a",
|
|
299860
|
-
"#e7c547",
|
|
299861
|
-
"#7aa6da",
|
|
299862
|
-
"#c397d8",
|
|
299863
|
-
"#70c0b1",
|
|
299864
|
-
"#ffffff"
|
|
299865
|
-
]
|
|
299866
|
-
},
|
|
299867
|
-
{
|
|
299868
|
-
"name": "Tomorrow Night Eighties",
|
|
299869
|
-
"foreground": "#cccccc",
|
|
299870
|
-
"background": "#2d2d2d",
|
|
299871
|
-
"cursor": "#cccccc",
|
|
299872
|
-
"colors": [
|
|
299873
|
-
"#000000",
|
|
299874
|
-
"#f2777a",
|
|
299875
|
-
"#99cc99",
|
|
299876
|
-
"#ffcc66",
|
|
299877
|
-
"#6699cc",
|
|
299878
|
-
"#cc99cc",
|
|
299879
|
-
"#66cccc",
|
|
299880
|
-
"#ffffff",
|
|
299881
|
-
"#000000",
|
|
299882
|
-
"#f2777a",
|
|
299883
|
-
"#99cc99",
|
|
299884
|
-
"#ffcc66",
|
|
299885
|
-
"#6699cc",
|
|
299886
|
-
"#cc99cc",
|
|
299887
|
-
"#66cccc",
|
|
299888
|
-
"#ffffff"
|
|
299889
|
-
]
|
|
299890
|
-
},
|
|
299891
|
-
{
|
|
299892
|
-
"name": "ToyChest",
|
|
299893
|
-
"foreground": "#31d07b",
|
|
299894
|
-
"background": "#24364b",
|
|
299895
|
-
"cursor": "#d5d5d5",
|
|
299896
|
-
"colors": [
|
|
299897
|
-
"#2c3f58",
|
|
299898
|
-
"#be2d26",
|
|
299899
|
-
"#1a9172",
|
|
299900
|
-
"#db8e27",
|
|
299901
|
-
"#325d96",
|
|
299902
|
-
"#8a5edc",
|
|
299903
|
-
"#35a08f",
|
|
299904
|
-
"#23d183",
|
|
299905
|
-
"#336889",
|
|
299906
|
-
"#dd5944",
|
|
299907
|
-
"#31d07b",
|
|
299908
|
-
"#e7d84b",
|
|
299909
|
-
"#34a6da",
|
|
299910
|
-
"#ae6bdc",
|
|
299911
|
-
"#42c3ae",
|
|
299912
|
-
"#d5d5d5"
|
|
299913
|
-
]
|
|
299914
|
-
},
|
|
299915
|
-
{
|
|
299916
|
-
"name": "Treehouse",
|
|
299917
|
-
"foreground": "#786b53",
|
|
299918
|
-
"background": "#191919",
|
|
299919
|
-
"cursor": "#fac814",
|
|
299920
|
-
"colors": [
|
|
299921
|
-
"#321300",
|
|
299922
|
-
"#b2270e",
|
|
299923
|
-
"#44a900",
|
|
299924
|
-
"#aa820c",
|
|
299925
|
-
"#58859a",
|
|
299926
|
-
"#97363d",
|
|
299927
|
-
"#b25a1e",
|
|
299928
|
-
"#786b53",
|
|
299929
|
-
"#433626",
|
|
299930
|
-
"#ed5d20",
|
|
299931
|
-
"#55f238",
|
|
299932
|
-
"#f2b732",
|
|
299933
|
-
"#85cfed",
|
|
299934
|
-
"#e14c5a",
|
|
299935
|
-
"#f07d14",
|
|
299936
|
-
"#ffc800"
|
|
299937
|
-
]
|
|
299938
|
-
},
|
|
299939
|
-
{
|
|
299940
|
-
"name": "Twilight",
|
|
299941
|
-
"foreground": "#ffffd4",
|
|
299942
|
-
"background": "#141414",
|
|
299943
|
-
"cursor": "#ffffff",
|
|
299944
|
-
"colors": [
|
|
299945
|
-
"#141414",
|
|
299946
|
-
"#c06d44",
|
|
299947
|
-
"#afb97a",
|
|
299948
|
-
"#c2a86c",
|
|
299949
|
-
"#44474a",
|
|
299950
|
-
"#b4be7c",
|
|
299951
|
-
"#778385",
|
|
299952
|
-
"#ffffd4",
|
|
299953
|
-
"#262626",
|
|
299954
|
-
"#de7c4c",
|
|
299955
|
-
"#ccd88c",
|
|
299956
|
-
"#e2c47e",
|
|
299957
|
-
"#5a5e62",
|
|
299958
|
-
"#d0dc8e",
|
|
299959
|
-
"#8a989b",
|
|
299960
|
-
"#ffffd4"
|
|
299961
|
-
]
|
|
299962
|
-
},
|
|
299963
|
-
{
|
|
299964
|
-
"name": "Ubuntu",
|
|
299965
|
-
"foreground": "#eeeeec",
|
|
299966
|
-
"background": "#300a24",
|
|
299967
|
-
"cursor": "#bbbbbb",
|
|
299968
|
-
"colors": [
|
|
299969
|
-
"#2e3436",
|
|
299970
|
-
"#cc0000",
|
|
299971
|
-
"#4e9a06",
|
|
299972
|
-
"#c4a000",
|
|
299973
|
-
"#3465a4",
|
|
299974
|
-
"#75507b",
|
|
299975
|
-
"#06989a",
|
|
299976
|
-
"#d3d7cf",
|
|
299977
|
-
"#555753",
|
|
299978
|
-
"#ef2929",
|
|
299979
|
-
"#8ae234",
|
|
299980
|
-
"#fce94f",
|
|
299981
|
-
"#729fcf",
|
|
299982
|
-
"#ad7fa8",
|
|
299983
|
-
"#34e2e2",
|
|
299984
|
-
"#eeeeec"
|
|
299985
|
-
]
|
|
299986
|
-
},
|
|
299987
|
-
{
|
|
299988
|
-
"name": "UnderTheSea",
|
|
299989
|
-
"foreground": "#ffffff",
|
|
299990
|
-
"background": "#011116",
|
|
299991
|
-
"cursor": "#4afcd6",
|
|
299992
|
-
"colors": [
|
|
299993
|
-
"#022026",
|
|
299994
|
-
"#b2302d",
|
|
299995
|
-
"#00a941",
|
|
299996
|
-
"#59819c",
|
|
299997
|
-
"#459a86",
|
|
299998
|
-
"#00599d",
|
|
299999
|
-
"#5d7e19",
|
|
300000
|
-
"#405555",
|
|
300001
|
-
"#384451",
|
|
300002
|
-
"#ff4242",
|
|
300003
|
-
"#2aea5e",
|
|
300004
|
-
"#8ed4fd",
|
|
300005
|
-
"#61d5ba",
|
|
300006
|
-
"#1298ff",
|
|
300007
|
-
"#98d028",
|
|
300008
|
-
"#58fbd6"
|
|
300009
|
-
]
|
|
300010
|
-
},
|
|
300011
|
-
{
|
|
300012
|
-
"name": "Urple",
|
|
300013
|
-
"foreground": "#877a9b",
|
|
300014
|
-
"background": "#1b1b23",
|
|
300015
|
-
"cursor": "#a063eb",
|
|
300016
|
-
"colors": [
|
|
300017
|
-
"#000000",
|
|
300018
|
-
"#b0425b",
|
|
300019
|
-
"#37a415",
|
|
300020
|
-
"#ad5c42",
|
|
300021
|
-
"#564d9b",
|
|
300022
|
-
"#6c3ca1",
|
|
300023
|
-
"#808080",
|
|
300024
|
-
"#87799c",
|
|
300025
|
-
"#5d3225",
|
|
300026
|
-
"#ff6388",
|
|
300027
|
-
"#29e620",
|
|
300028
|
-
"#f08161",
|
|
300029
|
-
"#867aed",
|
|
300030
|
-
"#a05eee",
|
|
300031
|
-
"#eaeaea",
|
|
300032
|
-
"#bfa3ff"
|
|
300033
|
-
]
|
|
300034
|
-
},
|
|
300035
|
-
{
|
|
300036
|
-
"name": "Vaughn",
|
|
300037
|
-
"foreground": "#dcdccc",
|
|
300038
|
-
"background": "#25234f",
|
|
300039
|
-
"cursor": "#ff5555",
|
|
300040
|
-
"colors": [
|
|
300041
|
-
"#25234f",
|
|
300042
|
-
"#705050",
|
|
300043
|
-
"#60b48a",
|
|
300044
|
-
"#dfaf8f",
|
|
300045
|
-
"#5555ff",
|
|
300046
|
-
"#f08cc3",
|
|
300047
|
-
"#8cd0d3",
|
|
300048
|
-
"#709080",
|
|
300049
|
-
"#709080",
|
|
300050
|
-
"#dca3a3",
|
|
300051
|
-
"#60b48a",
|
|
300052
|
-
"#f0dfaf",
|
|
300053
|
-
"#5555ff",
|
|
300054
|
-
"#ec93d3",
|
|
300055
|
-
"#93e0e3",
|
|
300056
|
-
"#ffffff"
|
|
300057
|
-
]
|
|
300058
|
-
},
|
|
300059
|
-
{
|
|
300060
|
-
"name": "VibrantInk",
|
|
300061
|
-
"foreground": "#ffffff",
|
|
300062
|
-
"background": "#000000",
|
|
300063
|
-
"cursor": "#ffffff",
|
|
300064
|
-
"colors": [
|
|
300065
|
-
"#878787",
|
|
300066
|
-
"#ff6600",
|
|
300067
|
-
"#ccff04",
|
|
300068
|
-
"#ffcc00",
|
|
300069
|
-
"#44b4cc",
|
|
300070
|
-
"#9933cc",
|
|
300071
|
-
"#44b4cc",
|
|
300072
|
-
"#f5f5f5",
|
|
300073
|
-
"#555555",
|
|
300074
|
-
"#ff0000",
|
|
300075
|
-
"#00ff00",
|
|
300076
|
-
"#ffff00",
|
|
300077
|
-
"#0000ff",
|
|
300078
|
-
"#ff00ff",
|
|
300079
|
-
"#00ffff",
|
|
300080
|
-
"#e5e5e5"
|
|
300081
|
-
]
|
|
300082
|
-
},
|
|
300083
|
-
{
|
|
300084
|
-
"name": "Violet Dark",
|
|
300085
|
-
"foreground": "#708284",
|
|
300086
|
-
"background": "#1c1d1f",
|
|
300087
|
-
"cursor": "#708284",
|
|
300088
|
-
"colors": [
|
|
300089
|
-
"#56595c",
|
|
300090
|
-
"#c94c22",
|
|
300091
|
-
"#85981c",
|
|
300092
|
-
"#b4881d",
|
|
300093
|
-
"#2e8bce",
|
|
300094
|
-
"#d13a82",
|
|
300095
|
-
"#32a198",
|
|
300096
|
-
"#c9c6bd",
|
|
300097
|
-
"#45484b",
|
|
300098
|
-
"#bd3613",
|
|
300099
|
-
"#738a04",
|
|
300100
|
-
"#a57705",
|
|
300101
|
-
"#2176c7",
|
|
300102
|
-
"#c61c6f",
|
|
300103
|
-
"#259286",
|
|
300104
|
-
"#c9c6bd"
|
|
300105
|
-
]
|
|
300106
|
-
},
|
|
300107
|
-
{
|
|
300108
|
-
"name": "Violet Light",
|
|
300109
|
-
"foreground": "#536870",
|
|
300110
|
-
"background": "#fcf4dc",
|
|
300111
|
-
"cursor": "#536870",
|
|
300112
|
-
"colors": [
|
|
300113
|
-
"#56595c",
|
|
300114
|
-
"#c94c22",
|
|
300115
|
-
"#85981c",
|
|
300116
|
-
"#b4881d",
|
|
300117
|
-
"#2e8bce",
|
|
300118
|
-
"#d13a82",
|
|
300119
|
-
"#32a198",
|
|
300120
|
-
"#d3d0c9",
|
|
300121
|
-
"#45484b",
|
|
300122
|
-
"#bd3613",
|
|
300123
|
-
"#738a04",
|
|
300124
|
-
"#a57705",
|
|
300125
|
-
"#2176c7",
|
|
300126
|
-
"#c61c6f",
|
|
300127
|
-
"#259286",
|
|
300128
|
-
"#c9c6bd"
|
|
300129
|
-
]
|
|
300130
|
-
},
|
|
300131
|
-
{
|
|
300132
|
-
"name": "WarmNeon",
|
|
300133
|
-
"foreground": "#afdab6",
|
|
300134
|
-
"background": "#404040",
|
|
300135
|
-
"cursor": "#30ff24",
|
|
300136
|
-
"colors": [
|
|
300137
|
-
"#000000",
|
|
300138
|
-
"#e24346",
|
|
300139
|
-
"#39b13a",
|
|
300140
|
-
"#dae145",
|
|
300141
|
-
"#4261c5",
|
|
300142
|
-
"#f920fb",
|
|
300143
|
-
"#2abbd4",
|
|
300144
|
-
"#d0b8a3",
|
|
300145
|
-
"#fefcfc",
|
|
300146
|
-
"#e97071",
|
|
300147
|
-
"#9cc090",
|
|
300148
|
-
"#ddda7a",
|
|
300149
|
-
"#7b91d6",
|
|
300150
|
-
"#f674ba",
|
|
300151
|
-
"#5ed1e5",
|
|
300152
|
-
"#d8c8bb"
|
|
300153
|
-
]
|
|
300154
|
-
},
|
|
300155
|
-
{
|
|
300156
|
-
"name": "Wez",
|
|
300157
|
-
"foreground": "#b3b3b3",
|
|
300158
|
-
"background": "#000000",
|
|
300159
|
-
"cursor": "#53ae71",
|
|
300160
|
-
"colors": [
|
|
300161
|
-
"#000000",
|
|
300162
|
-
"#cc5555",
|
|
300163
|
-
"#55cc55",
|
|
300164
|
-
"#cdcd55",
|
|
300165
|
-
"#5555cc",
|
|
300166
|
-
"#cc55cc",
|
|
300167
|
-
"#7acaca",
|
|
300168
|
-
"#cccccc",
|
|
300169
|
-
"#555555",
|
|
300170
|
-
"#ff5555",
|
|
300171
|
-
"#55ff55",
|
|
300172
|
-
"#ffff55",
|
|
300173
|
-
"#5555ff",
|
|
300174
|
-
"#ff55ff",
|
|
300175
|
-
"#55ffff",
|
|
300176
|
-
"#ffffff"
|
|
300177
|
-
]
|
|
300178
|
-
},
|
|
300179
|
-
{
|
|
300180
|
-
"name": "WildCherry",
|
|
300181
|
-
"foreground": "#dafaff",
|
|
300182
|
-
"background": "#1f1726",
|
|
300183
|
-
"cursor": "#dd00ff",
|
|
300184
|
-
"colors": [
|
|
300185
|
-
"#000507",
|
|
300186
|
-
"#d94085",
|
|
300187
|
-
"#2ab250",
|
|
300188
|
-
"#ffd16f",
|
|
300189
|
-
"#883cdc",
|
|
300190
|
-
"#ececec",
|
|
300191
|
-
"#c1b8b7",
|
|
300192
|
-
"#fff8de",
|
|
300193
|
-
"#009cc9",
|
|
300194
|
-
"#da6bac",
|
|
300195
|
-
"#f4dca5",
|
|
300196
|
-
"#eac066",
|
|
300197
|
-
"#308cba",
|
|
300198
|
-
"#ae636b",
|
|
300199
|
-
"#ff919d",
|
|
300200
|
-
"#e4838d"
|
|
300201
|
-
]
|
|
300202
|
-
},
|
|
300203
|
-
{
|
|
300204
|
-
"name": "Wombat",
|
|
300205
|
-
"foreground": "#dedacf",
|
|
300206
|
-
"background": "#171717",
|
|
300207
|
-
"cursor": "#bbbbbb",
|
|
300208
|
-
"colors": [
|
|
300209
|
-
"#000000",
|
|
300210
|
-
"#ff615a",
|
|
300211
|
-
"#b1e969",
|
|
300212
|
-
"#ebd99c",
|
|
300213
|
-
"#5da9f6",
|
|
300214
|
-
"#e86aff",
|
|
300215
|
-
"#82fff7",
|
|
300216
|
-
"#dedacf",
|
|
300217
|
-
"#313131",
|
|
300218
|
-
"#f58c80",
|
|
300219
|
-
"#ddf88f",
|
|
300220
|
-
"#eee5b2",
|
|
300221
|
-
"#a5c7ff",
|
|
300222
|
-
"#ddaaff",
|
|
300223
|
-
"#b7fff9",
|
|
300224
|
-
"#ffffff"
|
|
300225
|
-
]
|
|
300226
|
-
},
|
|
300227
|
-
{
|
|
300228
|
-
"name": "Wryan",
|
|
300229
|
-
"foreground": "#999993",
|
|
300230
|
-
"background": "#101010",
|
|
300231
|
-
"cursor": "#9e9ecb",
|
|
300232
|
-
"colors": [
|
|
300233
|
-
"#333333",
|
|
300234
|
-
"#8c4665",
|
|
300235
|
-
"#287373",
|
|
300236
|
-
"#7c7c99",
|
|
300237
|
-
"#395573",
|
|
300238
|
-
"#5e468c",
|
|
300239
|
-
"#31658c",
|
|
300240
|
-
"#899ca1",
|
|
300241
|
-
"#3d3d3d",
|
|
300242
|
-
"#bf4d80",
|
|
300243
|
-
"#53a6a6",
|
|
300244
|
-
"#9e9ecb",
|
|
300245
|
-
"#477ab3",
|
|
300246
|
-
"#7e62b3",
|
|
300247
|
-
"#6096bf",
|
|
300248
|
-
"#c0c0c0"
|
|
300249
|
-
]
|
|
300250
|
-
},
|
|
300251
|
-
{
|
|
300252
|
-
"name": "Zenburn",
|
|
300253
|
-
"foreground": "#dcdccc",
|
|
300254
|
-
"background": "#3f3f3f",
|
|
300255
|
-
"cursor": "#73635a",
|
|
300256
|
-
"colors": [
|
|
300257
|
-
"#4d4d4d",
|
|
300258
|
-
"#705050",
|
|
300259
|
-
"#60b48a",
|
|
300260
|
-
"#f0dfaf",
|
|
300261
|
-
"#506070",
|
|
300262
|
-
"#dc8cc3",
|
|
300263
|
-
"#8cd0d3",
|
|
300264
|
-
"#dcdccc",
|
|
300265
|
-
"#709080",
|
|
300266
|
-
"#dca3a3",
|
|
300267
|
-
"#c3bf9f",
|
|
300268
|
-
"#e0cf9f",
|
|
300269
|
-
"#94bff3",
|
|
300270
|
-
"#ec93d3",
|
|
300271
|
-
"#93e0e3",
|
|
300272
|
-
"#ffffff"
|
|
300273
|
-
]
|
|
300274
|
-
},
|
|
300275
|
-
{
|
|
300276
|
-
"name": "ayu",
|
|
300277
|
-
"foreground": "#e6e1cf",
|
|
300278
|
-
"background": "#0f1419",
|
|
300279
|
-
"cursor": "#f29718",
|
|
300280
|
-
"colors": [
|
|
300281
|
-
"#000000",
|
|
300282
|
-
"#ff3333",
|
|
300283
|
-
"#b8cc52",
|
|
300284
|
-
"#e7c547",
|
|
300285
|
-
"#36a3d9",
|
|
300286
|
-
"#f07178",
|
|
300287
|
-
"#95e6cb",
|
|
300288
|
-
"#ffffff",
|
|
300289
|
-
"#323232",
|
|
300290
|
-
"#ff6565",
|
|
300291
|
-
"#eafe84",
|
|
300292
|
-
"#fff779",
|
|
300293
|
-
"#68d5ff",
|
|
300294
|
-
"#ffa3aa",
|
|
300295
|
-
"#c7fffd",
|
|
300296
|
-
"#ffffff"
|
|
300297
|
-
]
|
|
300298
|
-
},
|
|
300299
|
-
{
|
|
300300
|
-
"name": "ayu_light",
|
|
300301
|
-
"foreground": "#5c6773",
|
|
300302
|
-
"background": "#fafafa",
|
|
300303
|
-
"cursor": "#ff6a00",
|
|
300304
|
-
"colors": [
|
|
300305
|
-
"#000000",
|
|
300306
|
-
"#ff3333",
|
|
300307
|
-
"#86b300",
|
|
300308
|
-
"#f29718",
|
|
300309
|
-
"#41a6d9",
|
|
300310
|
-
"#f07178",
|
|
300311
|
-
"#4dbf99",
|
|
300312
|
-
"#ffffff",
|
|
300313
|
-
"#323232",
|
|
300314
|
-
"#ff6565",
|
|
300315
|
-
"#b8e532",
|
|
300316
|
-
"#ffc94a",
|
|
300317
|
-
"#73d8ff",
|
|
300318
|
-
"#ffa3aa",
|
|
300319
|
-
"#7ff1cb",
|
|
300320
|
-
"#ffffff"
|
|
300321
|
-
]
|
|
300322
|
-
},
|
|
300323
|
-
{
|
|
300324
|
-
"name": "base2tone-cave-dark",
|
|
300325
|
-
"foreground": "#9f999b",
|
|
300326
|
-
"background": "#222021",
|
|
300327
|
-
"cursor": "#996e00",
|
|
300328
|
-
"colors": [
|
|
300329
|
-
"#222021",
|
|
300330
|
-
"#936c7a",
|
|
300331
|
-
"#cca133",
|
|
300332
|
-
"#ffcc4d",
|
|
300333
|
-
"#9c818b",
|
|
300334
|
-
"#cca133",
|
|
300335
|
-
"#d27998",
|
|
300336
|
-
"#9f999b",
|
|
300337
|
-
"#635f60",
|
|
300338
|
-
"#ddaf3c",
|
|
300339
|
-
"#2f2d2e",
|
|
300340
|
-
"#565254",
|
|
300341
|
-
"#706b6d",
|
|
300342
|
-
"#f0a8c1",
|
|
300343
|
-
"#c39622",
|
|
300344
|
-
"#ffebf2"
|
|
300345
|
-
]
|
|
300346
|
-
},
|
|
300347
|
-
{
|
|
300348
|
-
"name": "base2tone-desert-dark",
|
|
300349
|
-
"foreground": "#ada594",
|
|
300350
|
-
"background": "#292724",
|
|
300351
|
-
"cursor": "#bc672f",
|
|
300352
|
-
"colors": [
|
|
300353
|
-
"#292724",
|
|
300354
|
-
"#816f4b",
|
|
300355
|
-
"#ec9255",
|
|
300356
|
-
"#ffb380",
|
|
300357
|
-
"#957e50",
|
|
300358
|
-
"#ec9255",
|
|
300359
|
-
"#ac8e53",
|
|
300360
|
-
"#ada594",
|
|
300361
|
-
"#7e7767",
|
|
300362
|
-
"#f29d63",
|
|
300363
|
-
"#3d3a34",
|
|
300364
|
-
"#615c51",
|
|
300365
|
-
"#908774",
|
|
300366
|
-
"#ddcba6",
|
|
300367
|
-
"#e58748",
|
|
300368
|
-
"#f2ead9"
|
|
300369
|
-
]
|
|
300370
|
-
},
|
|
300371
|
-
{
|
|
300372
|
-
"name": "base2tone-drawbridge-dark",
|
|
300373
|
-
"foreground": "#9094a7",
|
|
300374
|
-
"background": "#1b1f32",
|
|
300375
|
-
"cursor": "#289dbd",
|
|
300376
|
-
"colors": [
|
|
300377
|
-
"#1b1f32",
|
|
300378
|
-
"#627af4",
|
|
300379
|
-
"#67c9e4",
|
|
300380
|
-
"#99e9ff",
|
|
300381
|
-
"#7289fd",
|
|
300382
|
-
"#67c9e4",
|
|
300383
|
-
"#8b9efd",
|
|
300384
|
-
"#9094a7",
|
|
300385
|
-
"#51587b",
|
|
300386
|
-
"#75d5f0",
|
|
300387
|
-
"#252a41",
|
|
300388
|
-
"#444b6f",
|
|
300389
|
-
"#5e6587",
|
|
300390
|
-
"#c3cdfe",
|
|
300391
|
-
"#5cbcd6",
|
|
300392
|
-
"#e1e6ff"
|
|
300393
|
-
]
|
|
300394
|
-
},
|
|
300395
|
-
{
|
|
300396
|
-
"name": "base2tone-evening-dark",
|
|
300397
|
-
"foreground": "#a4a1b5",
|
|
300398
|
-
"background": "#2a2734",
|
|
300399
|
-
"cursor": "#b37537",
|
|
300400
|
-
"colors": [
|
|
300401
|
-
"#2a2734",
|
|
300402
|
-
"#8a75f5",
|
|
300403
|
-
"#ffad5c",
|
|
300404
|
-
"#ffcc99",
|
|
300405
|
-
"#9a86fd",
|
|
300406
|
-
"#ffad5c",
|
|
300407
|
-
"#afa0fe",
|
|
300408
|
-
"#a4a1b5",
|
|
300409
|
-
"#6c6783",
|
|
300410
|
-
"#ffb870",
|
|
300411
|
-
"#363342",
|
|
300412
|
-
"#545167",
|
|
300413
|
-
"#787391",
|
|
300414
|
-
"#d9d2fe",
|
|
300415
|
-
"#ffa142",
|
|
300416
|
-
"#eeebff"
|
|
300417
|
-
]
|
|
300418
|
-
},
|
|
300419
|
-
{
|
|
300420
|
-
"name": "base2tone-forest-dark",
|
|
300421
|
-
"foreground": "#a1b5a1",
|
|
300422
|
-
"background": "#2a2d2a",
|
|
300423
|
-
"cursor": "#656b47",
|
|
300424
|
-
"colors": [
|
|
300425
|
-
"#2a2d2a",
|
|
300426
|
-
"#5c705c",
|
|
300427
|
-
"#bfd454",
|
|
300428
|
-
"#e5fb79",
|
|
300429
|
-
"#687d68",
|
|
300430
|
-
"#bfd454",
|
|
300431
|
-
"#8fae8f",
|
|
300432
|
-
"#a1b5a1",
|
|
300433
|
-
"#535f53",
|
|
300434
|
-
"#cbe25a",
|
|
300435
|
-
"#353b35",
|
|
300436
|
-
"#485148",
|
|
300437
|
-
"#5e6e5e",
|
|
300438
|
-
"#c8e4c8",
|
|
300439
|
-
"#b1c44f",
|
|
300440
|
-
"#f0fff0"
|
|
300441
|
-
]
|
|
300442
|
-
},
|
|
300443
|
-
{
|
|
300444
|
-
"name": "base2tone-heath-dark",
|
|
300445
|
-
"foreground": "#9e999f",
|
|
300446
|
-
"background": "#222022",
|
|
300447
|
-
"cursor": "#995900",
|
|
300448
|
-
"colors": [
|
|
300449
|
-
"#222022",
|
|
300450
|
-
"#8f6c93",
|
|
300451
|
-
"#cc8c33",
|
|
300452
|
-
"#ffd599",
|
|
300453
|
-
"#9a819c",
|
|
300454
|
-
"#cc8c33",
|
|
300455
|
-
"#cb79d2",
|
|
300456
|
-
"#9e999f",
|
|
300457
|
-
"#635f63",
|
|
300458
|
-
"#d9b98c",
|
|
300459
|
-
"#2f2d2f",
|
|
300460
|
-
"#575158",
|
|
300461
|
-
"#6f6b70",
|
|
300462
|
-
"#eaa8f0",
|
|
300463
|
-
"#c38022",
|
|
300464
|
-
"#fdebff"
|
|
300465
|
-
]
|
|
300466
|
-
},
|
|
300467
|
-
{
|
|
300468
|
-
"name": "base2tone-heath-light",
|
|
300469
|
-
"foreground": "#575158",
|
|
300470
|
-
"background": "#fbfaf9",
|
|
300471
|
-
"cursor": "#eaa8f0",
|
|
300472
|
-
"colors": [
|
|
300473
|
-
"#222022",
|
|
300474
|
-
"#8f6c93",
|
|
300475
|
-
"#cc8c33",
|
|
300476
|
-
"#ffd599",
|
|
300477
|
-
"#9a819c",
|
|
300478
|
-
"#b87414",
|
|
300479
|
-
"#cb79d2",
|
|
300480
|
-
"#9e999f",
|
|
300481
|
-
"#635f63",
|
|
300482
|
-
"#d9b98c",
|
|
300483
|
-
"#2f2d2f",
|
|
300484
|
-
"#575158",
|
|
300485
|
-
"#6f6b70",
|
|
300486
|
-
"#eaa8f0",
|
|
300487
|
-
"#c38022",
|
|
300488
|
-
"#fbfaf9"
|
|
300489
|
-
]
|
|
300490
|
-
},
|
|
300491
|
-
{
|
|
300492
|
-
"name": "base2tone-lake-dark",
|
|
300493
|
-
"foreground": "#7ba8b7",
|
|
300494
|
-
"background": "#192d34",
|
|
300495
|
-
"cursor": "#84740b",
|
|
300496
|
-
"colors": [
|
|
300497
|
-
"#192d34",
|
|
300498
|
-
"#3e91ac",
|
|
300499
|
-
"#cbbb4d",
|
|
300500
|
-
"#ffeb66",
|
|
300501
|
-
"#499fbc",
|
|
300502
|
-
"#cbbb4d",
|
|
300503
|
-
"#62b1cb",
|
|
300504
|
-
"#7ba8b7",
|
|
300505
|
-
"#3d6876",
|
|
300506
|
-
"#d6c65c",
|
|
300507
|
-
"#223c44",
|
|
300508
|
-
"#335966",
|
|
300509
|
-
"#467686",
|
|
300510
|
-
"#a5d8e9",
|
|
300511
|
-
"#c4b031",
|
|
300512
|
-
"#e1f7ff"
|
|
300513
|
-
]
|
|
300514
|
-
},
|
|
300515
|
-
{
|
|
300516
|
-
"name": "base2tone-meadow-dark",
|
|
300517
|
-
"foreground": "#7b9eb7",
|
|
300518
|
-
"background": "#192834",
|
|
300519
|
-
"cursor": "#4d8217",
|
|
300520
|
-
"colors": [
|
|
300521
|
-
"#192834",
|
|
300522
|
-
"#277fbe",
|
|
300523
|
-
"#80bf40",
|
|
300524
|
-
"#a6f655",
|
|
300525
|
-
"#4299d7",
|
|
300526
|
-
"#80bf40",
|
|
300527
|
-
"#47adf5",
|
|
300528
|
-
"#7b9eb7",
|
|
300529
|
-
"#3d5e76",
|
|
300530
|
-
"#8cdd3c",
|
|
300531
|
-
"#223644",
|
|
300532
|
-
"#335166",
|
|
300533
|
-
"#466b86",
|
|
300534
|
-
"#afddfe",
|
|
300535
|
-
"#73b234",
|
|
300536
|
-
"#d1ecff"
|
|
300537
|
-
]
|
|
300538
|
-
},
|
|
300539
|
-
{
|
|
300540
|
-
"name": "base2tone-morning-light",
|
|
300541
|
-
"foreground": "#4f5664",
|
|
300542
|
-
"background": "#faf8f5",
|
|
300543
|
-
"cursor": "#b7c9eb",
|
|
300544
|
-
"colors": [
|
|
300545
|
-
"#232834",
|
|
300546
|
-
"#1659df",
|
|
300547
|
-
"#b29762",
|
|
300548
|
-
"#e5ddcd",
|
|
300549
|
-
"#3d75e6",
|
|
300550
|
-
"#896724",
|
|
300551
|
-
"#728fcb",
|
|
300552
|
-
"#8d95a5",
|
|
300553
|
-
"#656e81",
|
|
300554
|
-
"#c6b28b",
|
|
300555
|
-
"#31363f",
|
|
300556
|
-
"#4f5664",
|
|
300557
|
-
"#707a8f",
|
|
300558
|
-
"#b7c9eb",
|
|
300559
|
-
"#9a7c42",
|
|
300560
|
-
"#faf8f5"
|
|
300561
|
-
]
|
|
300562
|
-
},
|
|
300563
|
-
{
|
|
300564
|
-
"name": "base2tone-pool-dark",
|
|
300565
|
-
"foreground": "#9a90a7",
|
|
300566
|
-
"background": "#2a2433",
|
|
300567
|
-
"cursor": "#cf504a",
|
|
300568
|
-
"colors": [
|
|
300569
|
-
"#2a2433",
|
|
300570
|
-
"#aa75f5",
|
|
300571
|
-
"#f87972",
|
|
300572
|
-
"#ffb6b3",
|
|
300573
|
-
"#b886fd",
|
|
300574
|
-
"#f87972",
|
|
300575
|
-
"#c7a0fe",
|
|
300576
|
-
"#9a90a7",
|
|
300577
|
-
"#635775",
|
|
300578
|
-
"#fc8983",
|
|
300579
|
-
"#372f42",
|
|
300580
|
-
"#574b68",
|
|
300581
|
-
"#706383",
|
|
300582
|
-
"#e4d2fe",
|
|
300583
|
-
"#f36f68",
|
|
300584
|
-
"#f3ebff"
|
|
300585
|
-
]
|
|
300586
|
-
},
|
|
300587
|
-
{
|
|
300588
|
-
"name": "base2tone-sea-dark",
|
|
300589
|
-
"foreground": "#a1aab5",
|
|
300590
|
-
"background": "#1d262f",
|
|
300591
|
-
"cursor": "#067953",
|
|
300592
|
-
"colors": [
|
|
300593
|
-
"#1d262f",
|
|
300594
|
-
"#34659d",
|
|
300595
|
-
"#0fc78a",
|
|
300596
|
-
"#47ebb4",
|
|
300597
|
-
"#57718e",
|
|
300598
|
-
"#0fc78a",
|
|
300599
|
-
"#6e9bcf",
|
|
300600
|
-
"#a1aab5",
|
|
300601
|
-
"#4a5f78",
|
|
300602
|
-
"#14e19d",
|
|
300603
|
-
"#27323f",
|
|
300604
|
-
"#405368",
|
|
300605
|
-
"#738191",
|
|
300606
|
-
"#afd4fe",
|
|
300607
|
-
"#0db57d",
|
|
300608
|
-
"#ebf4ff"
|
|
300609
|
-
]
|
|
300610
|
-
},
|
|
300611
|
-
{
|
|
300612
|
-
"name": "base2tone-space-dark",
|
|
300613
|
-
"foreground": "#a1a1b5",
|
|
300614
|
-
"background": "#24242e",
|
|
300615
|
-
"cursor": "#b25424",
|
|
300616
|
-
"colors": [
|
|
300617
|
-
"#24242e",
|
|
300618
|
-
"#7676f4",
|
|
300619
|
-
"#ec7336",
|
|
300620
|
-
"#fe8c52",
|
|
300621
|
-
"#767693",
|
|
300622
|
-
"#ec7336",
|
|
300623
|
-
"#8a8aad",
|
|
300624
|
-
"#a1a1b5",
|
|
300625
|
-
"#5b5b76",
|
|
300626
|
-
"#f37b3f",
|
|
300627
|
-
"#333342",
|
|
300628
|
-
"#515167",
|
|
300629
|
-
"#737391",
|
|
300630
|
-
"#cecee3",
|
|
300631
|
-
"#e66e33",
|
|
300632
|
-
"#ebebff"
|
|
300633
|
-
]
|
|
300634
|
-
},
|
|
300635
|
-
{
|
|
300636
|
-
"name": "deep",
|
|
300637
|
-
"foreground": "#cdcdcd",
|
|
300638
|
-
"background": "#000000",
|
|
300639
|
-
"cursor": "#d0d0d0",
|
|
300640
|
-
"colors": [
|
|
300641
|
-
"#000000",
|
|
300642
|
-
"#d11600",
|
|
300643
|
-
"#37c32c",
|
|
300644
|
-
"#e3c421",
|
|
300645
|
-
"#5c6bfd",
|
|
300646
|
-
"#dd5be5",
|
|
300647
|
-
"#6eb4f2",
|
|
300648
|
-
"#e0e0e0",
|
|
300649
|
-
"#535353",
|
|
300650
|
-
"#f4152c",
|
|
300651
|
-
"#01ea10",
|
|
300652
|
-
"#ffee1d",
|
|
300653
|
-
"#8cb0f8",
|
|
300654
|
-
"#e056f5",
|
|
300655
|
-
"#67ecff",
|
|
300656
|
-
"#f4f4f4"
|
|
300657
|
-
]
|
|
300658
|
-
},
|
|
300659
|
-
{
|
|
300660
|
-
"name": "idleToes",
|
|
300661
|
-
"foreground": "#ffffff",
|
|
300662
|
-
"background": "#323232",
|
|
300663
|
-
"cursor": "#d6d6d6",
|
|
300664
|
-
"colors": [
|
|
300665
|
-
"#323232",
|
|
300666
|
-
"#d25252",
|
|
300667
|
-
"#7fe173",
|
|
300668
|
-
"#ffc66d",
|
|
300669
|
-
"#4099ff",
|
|
300670
|
-
"#f680ff",
|
|
300671
|
-
"#bed6ff",
|
|
300672
|
-
"#eeeeec",
|
|
300673
|
-
"#535353",
|
|
300674
|
-
"#f07070",
|
|
300675
|
-
"#9dff91",
|
|
300676
|
-
"#ffe48b",
|
|
300677
|
-
"#5eb7f7",
|
|
300678
|
-
"#ff9dff",
|
|
300679
|
-
"#dcf4ff",
|
|
300680
|
-
"#ffffff"
|
|
300681
|
-
]
|
|
300682
|
-
}
|
|
300683
|
-
];
|
|
300684
|
-
|
|
300685
|
-
// ../../packages/shared/src/theme/themes.ts
|
|
300686
|
-
var BUILTIN_THEMES = [
|
|
300687
|
-
{ id: "gyshell-dark", name: "Default Dark", terminal: TABBY_DEFAULT_DARK },
|
|
300688
|
-
{ id: "gyshell-light", name: "Default Light", terminal: TABBY_DEFAULT_LIGHT },
|
|
300689
|
-
...builtInSchemes.map((s) => ({
|
|
300690
|
-
id: s.name,
|
|
300691
|
-
name: s.name,
|
|
300692
|
-
terminal: s
|
|
300693
|
-
}))
|
|
300694
|
-
];
|
|
300695
|
-
|
|
300696
296067
|
// ../../packages/backend/src/services/terminal/terminalConnectionSupport.ts
|
|
300697
296068
|
var asPositiveInt = (value, fallback) => {
|
|
300698
296069
|
if (typeof value !== "number" || !Number.isFinite(value) || value <= 0) {
|
|
@@ -350923,6 +346294,16 @@ var BUILTIN_TOOL_INFO = [
|
|
|
350923
346294
|
description: RUN_FLEET_COMMAND_DESCRIPTION,
|
|
350924
346295
|
shortDescription: "Run a command on multiple terminals"
|
|
350925
346296
|
},
|
|
346297
|
+
{
|
|
346298
|
+
name: "plan_graph",
|
|
346299
|
+
description: "Plan a graph of tool calls (nodes + dependsOn edges) and validate it WITHOUT executing. Returns the parallel batches, roots, and fan-in joins. Use when a task has independent branches that should run at the same time and a join point that needs all of them \u2014 e.g. 'check 5 servers in parallel, then patch the ones that failed'. Always plan_graph first, review the batches, then run_graph with the same nodes.",
|
|
346300
|
+
shortDescription: "Plan + validate a tool-call graph"
|
|
346301
|
+
},
|
|
346302
|
+
{
|
|
346303
|
+
name: "run_graph",
|
|
346304
|
+
description: "Execute a planned graph of tool calls: nodes run in parallel batches (bounded), each node's result is available to its dependents as {{nodeId}} in string args, and a node with multiple dependsOn is a JOIN that waits for all of them. A failed node skips its dependents; a critical:true failed node aborts the whole graph. Every node is a real tool call \u2014 the same command policy and guardrails apply. Plan with plan_graph first.",
|
|
346305
|
+
shortDescription: "Execute a tool-call graph (parallel + joins)"
|
|
346306
|
+
},
|
|
350926
346307
|
{
|
|
350927
346308
|
name: "collect_facts",
|
|
350928
346309
|
description: COLLECT_FACTS_DESCRIPTION,
|
|
@@ -354117,6 +349498,198 @@ ${truncateForFleet(banner, 1500)}
|
|
|
354117
349498
|
);
|
|
354118
349499
|
}
|
|
354119
349500
|
|
|
349501
|
+
// ../../packages/backend/src/services/AgentHelper/tools/graph_tools.ts
|
|
349502
|
+
init_zod();
|
|
349503
|
+
init_dagScheduler();
|
|
349504
|
+
var MAX_GRAPH_NODES = 25;
|
|
349505
|
+
var MAX_GRAPH_PARALLEL = 5;
|
|
349506
|
+
var GRAPH_NODE_TIMEOUT_MS = 12e4;
|
|
349507
|
+
var graphNodeSchema = external_exports.object({
|
|
349508
|
+
id: external_exports.string().min(1).max(64).describe('Unique node id, e.g. "check-ws1".'),
|
|
349509
|
+
tool: external_exports.string().min(1).describe(
|
|
349510
|
+
'The tool to call for this node, e.g. "exec_command", "read_file", "run_fleet_command", "get_metrics".'
|
|
349511
|
+
),
|
|
349512
|
+
args: external_exports.record(external_exports.string(), external_exports.unknown()).describe(
|
|
349513
|
+
"The tool arguments for this node. {{nodeId}} placeholders inside string values are replaced with that node's result text before the call."
|
|
349514
|
+
),
|
|
349515
|
+
dependsOn: external_exports.array(external_exports.string().min(1)).optional().describe(
|
|
349516
|
+
"Node ids this node waits for. Omit (or empty) for a root node that runs immediately. A node with multiple dependencies is a JOIN \u2014 it waits for ALL of them."
|
|
349517
|
+
),
|
|
349518
|
+
critical: external_exports.boolean().optional().describe(
|
|
349519
|
+
"If true (default false), a failure of this node aborts the whole graph. Non-critical failures only stop their dependents."
|
|
349520
|
+
)
|
|
349521
|
+
});
|
|
349522
|
+
var planGraphSchema = external_exports.object({
|
|
349523
|
+
nodes: external_exports.array(graphNodeSchema).min(1).max(MAX_GRAPH_NODES),
|
|
349524
|
+
maxParallel: external_exports.number().int().min(1).max(MAX_GRAPH_PARALLEL).optional().describe(
|
|
349525
|
+
`Max nodes running at once (default ${MAX_GRAPH_PARALLEL}).`
|
|
349526
|
+
),
|
|
349527
|
+
dryRun: external_exports.boolean().optional().describe(
|
|
349528
|
+
"If true (default), only validate and return the plan WITHOUT executing. Always review the plan before running."
|
|
349529
|
+
)
|
|
349530
|
+
});
|
|
349531
|
+
var runGraphSchema = planGraphSchema.extend({
|
|
349532
|
+
dryRun: external_exports.boolean().optional().describe(
|
|
349533
|
+
"If true, validate and return the plan without executing. Default false \u2014 run_graph executes."
|
|
349534
|
+
)
|
|
349535
|
+
});
|
|
349536
|
+
function planGraph(nodes, maxParallel) {
|
|
349537
|
+
const steps = nodes.map(
|
|
349538
|
+
(n2) => ({
|
|
349539
|
+
id: n2.id,
|
|
349540
|
+
name: n2.id,
|
|
349541
|
+
kind: "command",
|
|
349542
|
+
dependsOn: n2.dependsOn ?? []
|
|
349543
|
+
})
|
|
349544
|
+
);
|
|
349545
|
+
const { batches } = planDag(steps);
|
|
349546
|
+
const named = batches.map(
|
|
349547
|
+
(b) => b.map((i) => nodes[i].id)
|
|
349548
|
+
);
|
|
349549
|
+
return {
|
|
349550
|
+
batches: named,
|
|
349551
|
+
totalNodes: nodes.length,
|
|
349552
|
+
maxParallel: Math.min(maxParallel ?? MAX_GRAPH_PARALLEL, MAX_GRAPH_PARALLEL),
|
|
349553
|
+
joins: nodes.filter((n2) => (n2.dependsOn?.length ?? 0) > 1).map((n2) => n2.id),
|
|
349554
|
+
roots: nodes.filter((n2) => (n2.dependsOn?.length ?? 0) === 0).map((n2) => n2.id)
|
|
349555
|
+
};
|
|
349556
|
+
}
|
|
349557
|
+
function findDuplicateNodeIds(nodes) {
|
|
349558
|
+
const seen = /* @__PURE__ */ new Set();
|
|
349559
|
+
for (const n2 of nodes) {
|
|
349560
|
+
if (seen.has(n2.id)) return n2.id;
|
|
349561
|
+
seen.add(n2.id);
|
|
349562
|
+
}
|
|
349563
|
+
return null;
|
|
349564
|
+
}
|
|
349565
|
+
function resolveNodeArgs(args, results) {
|
|
349566
|
+
const out = {};
|
|
349567
|
+
for (const [k, v] of Object.entries(args ?? {})) {
|
|
349568
|
+
if (typeof v === "string") {
|
|
349569
|
+
out[k] = v.replace(/\{\{([a-zA-Z0-9_-]+)\}\}/g, (whole, id) => {
|
|
349570
|
+
const r = results.get(id);
|
|
349571
|
+
return r === void 0 ? whole : r;
|
|
349572
|
+
});
|
|
349573
|
+
} else {
|
|
349574
|
+
out[k] = v;
|
|
349575
|
+
}
|
|
349576
|
+
}
|
|
349577
|
+
return out;
|
|
349578
|
+
}
|
|
349579
|
+
function truncate(s, max = 1500) {
|
|
349580
|
+
if (s.length <= max) return s;
|
|
349581
|
+
return `${s.slice(0, max)}\u2026[truncated ${s.length - max} chars]`;
|
|
349582
|
+
}
|
|
349583
|
+
async function runGraph(args, context2, toolImplementations2) {
|
|
349584
|
+
const { nodes } = args;
|
|
349585
|
+
const dup = findDuplicateNodeIds(nodes);
|
|
349586
|
+
if (dup) return `Graph rejected: duplicate node id "${dup}".`;
|
|
349587
|
+
let plan;
|
|
349588
|
+
try {
|
|
349589
|
+
plan = planGraph(nodes, args.maxParallel);
|
|
349590
|
+
} catch (e) {
|
|
349591
|
+
return `Graph invalid: ${e.message.replace(/^Step "/, 'Node "')}
|
|
349592
|
+
Nothing was executed.`;
|
|
349593
|
+
}
|
|
349594
|
+
const results = /* @__PURE__ */ new Map();
|
|
349595
|
+
const outcomes = [];
|
|
349596
|
+
const failedCritical = /* @__PURE__ */ new Set();
|
|
349597
|
+
const failedAny = /* @__PURE__ */ new Set();
|
|
349598
|
+
const skipped = /* @__PURE__ */ new Set();
|
|
349599
|
+
const isBlocked = (n2) => (n2.dependsOn ?? []).some((d) => failedAny.has(d) || skipped.has(d));
|
|
349600
|
+
for (const batch of plan.batches) {
|
|
349601
|
+
if (failedCritical.size > 0) break;
|
|
349602
|
+
const runnable = batch.map((id) => nodes.find((n2) => n2.id === id)).filter((n2) => {
|
|
349603
|
+
if (isBlocked(n2)) {
|
|
349604
|
+
skipped.add(n2.id);
|
|
349605
|
+
outcomes.push({ id: n2.id, status: "skipped", output: "A dependency failed or was skipped." });
|
|
349606
|
+
return false;
|
|
349607
|
+
}
|
|
349608
|
+
return true;
|
|
349609
|
+
});
|
|
349610
|
+
if (runnable.length === 0) continue;
|
|
349611
|
+
const chunks = chunk(runnable, plan.maxParallel);
|
|
349612
|
+
for (const group of chunks) {
|
|
349613
|
+
const settled = await Promise.allSettled(
|
|
349614
|
+
group.map(async (n2) => {
|
|
349615
|
+
const resolved = resolveNodeArgs(n2.args ?? {}, results);
|
|
349616
|
+
const tc = { name: n2.tool, args: resolved };
|
|
349617
|
+
const timer = new Promise(
|
|
349618
|
+
(_, rej) => setTimeout(() => rej(new Error(`node timeout ${GRAPH_NODE_TIMEOUT_MS}ms`)), GRAPH_NODE_TIMEOUT_MS).unref()
|
|
349619
|
+
);
|
|
349620
|
+
const output = await Promise.race([
|
|
349621
|
+
toolImplementations2.executeToolByName(tc, context2),
|
|
349622
|
+
timer
|
|
349623
|
+
]);
|
|
349624
|
+
return { id: n2.id, output: String(output ?? "") };
|
|
349625
|
+
})
|
|
349626
|
+
);
|
|
349627
|
+
settled.forEach((s, i) => {
|
|
349628
|
+
const n2 = group[i];
|
|
349629
|
+
if (s.status === "fulfilled") {
|
|
349630
|
+
results.set(n2.id, s.value.output);
|
|
349631
|
+
outcomes.push({ id: n2.id, status: "ok", output: truncate(s.value.output) });
|
|
349632
|
+
} else {
|
|
349633
|
+
const msg = s.reason instanceof Error ? s.reason.message : String(s.reason);
|
|
349634
|
+
outcomes.push({ id: n2.id, status: "failed", output: truncate(msg) });
|
|
349635
|
+
failedAny.add(n2.id);
|
|
349636
|
+
if (n2.critical) failedCritical.add(n2.id);
|
|
349637
|
+
}
|
|
349638
|
+
});
|
|
349639
|
+
}
|
|
349640
|
+
}
|
|
349641
|
+
const okCount = outcomes.filter((o) => o.status === "ok").length;
|
|
349642
|
+
const failCount = outcomes.filter((o) => o.status === "failed").length;
|
|
349643
|
+
const skipCount = outcomes.filter((o) => o.status === "skipped").length;
|
|
349644
|
+
const aborted2 = failedCritical.size > 0;
|
|
349645
|
+
const lines = outcomes.map(
|
|
349646
|
+
(o) => `### ${o.id} [${o.status.toUpperCase()}]
|
|
349647
|
+
${o.output || "(no output)"}`
|
|
349648
|
+
);
|
|
349649
|
+
return `<graph_results nodes="${outcomes.length}" ok="${okCount}" failed="${failCount}" skipped="${skipCount}"${aborted2 ? ' aborted="critical-node-failed"' : ""}>
|
|
349650
|
+
${lines.join("\n\n")}
|
|
349651
|
+
</graph_results>
|
|
349652
|
+
|
|
349653
|
+
Graph finished: ${okCount} ok, ${failCount} failed, ${skipCount} skipped${aborted2 ? " \u2014 ABORTED because a critical node failed; remaining nodes were not run." : "."}` + (aborted2 ? "" : " Node results are addressable as {{nodeId}} in subsequent calls.");
|
|
349654
|
+
}
|
|
349655
|
+
async function planGraphTool(args, _context) {
|
|
349656
|
+
const dup = findDuplicateNodeIds(args.nodes);
|
|
349657
|
+
if (dup) return `Graph rejected: duplicate node id "${dup}".`;
|
|
349658
|
+
let plan;
|
|
349659
|
+
try {
|
|
349660
|
+
plan = planGraph(args.nodes, args.maxParallel);
|
|
349661
|
+
} catch (e) {
|
|
349662
|
+
return `Graph invalid: ${e.message}
|
|
349663
|
+
Fix the nodes/dependsOn and re-plan.`;
|
|
349664
|
+
}
|
|
349665
|
+
const batchLines = plan.batches.map((b, i) => ` batch ${i}: ${b.join(", ")}`).join("\n");
|
|
349666
|
+
return `Graph plan (validated, ${plan.totalNodes} nodes):
|
|
349667
|
+
${batchLines}
|
|
349668
|
+
roots: ${plan.roots.join(", ") || "(none)"}
|
|
349669
|
+
joins (fan-in): ${plan.joins.join(", ") || "(none)"}
|
|
349670
|
+
max parallel: ${plan.maxParallel}
|
|
349671
|
+
|
|
349672
|
+
The plan is valid \u2014 no cycles, all dependsOn references resolve. Batches run in order; nodes within a batch run in parallel. Run it with run_graph (the same nodes), or adjust and re-plan.`;
|
|
349673
|
+
}
|
|
349674
|
+
async function runGraphTool(args, context2) {
|
|
349675
|
+
if (args.dryRun) {
|
|
349676
|
+
return planGraphTool(args, context2);
|
|
349677
|
+
}
|
|
349678
|
+
const dup = findDuplicateNodeIds(args.nodes);
|
|
349679
|
+
if (dup) return `Graph rejected: duplicate node id "${dup}".`;
|
|
349680
|
+
try {
|
|
349681
|
+
planGraph(args.nodes, args.maxParallel);
|
|
349682
|
+
} catch (e) {
|
|
349683
|
+
return `Graph invalid: ${e.message.replace(/^Step "/, 'Node "')}
|
|
349684
|
+
Nothing was executed.`;
|
|
349685
|
+
}
|
|
349686
|
+
const impl = context2.__graphToolExecutor;
|
|
349687
|
+
if (!impl) {
|
|
349688
|
+
return "Graph executor is not wired in this runtime. Use plan_graph to validate, and report this as a bug.";
|
|
349689
|
+
}
|
|
349690
|
+
return runGraph(args, context2, impl);
|
|
349691
|
+
}
|
|
349692
|
+
|
|
354120
349693
|
// ../../packages/backend/src/services/AgentHelper/tools/automation_tools.ts
|
|
354121
349694
|
init_zod();
|
|
354122
349695
|
init_templateEngine();
|
|
@@ -356240,6 +351813,16 @@ function buildToolsForModel(readFileSupport) {
|
|
|
356240
351813
|
description: BUILTIN_TOOL_INFO.find((t) => t.name === "run_fleet_command")?.description ?? "",
|
|
356241
351814
|
schema: runFleetCommandSchema
|
|
356242
351815
|
},
|
|
351816
|
+
{
|
|
351817
|
+
name: "plan_graph",
|
|
351818
|
+
description: BUILTIN_TOOL_INFO.find((t) => t.name === "plan_graph")?.description ?? "",
|
|
351819
|
+
schema: planGraphSchema
|
|
351820
|
+
},
|
|
351821
|
+
{
|
|
351822
|
+
name: "run_graph",
|
|
351823
|
+
description: BUILTIN_TOOL_INFO.find((t) => t.name === "run_graph")?.description ?? "",
|
|
351824
|
+
schema: runGraphSchema
|
|
351825
|
+
},
|
|
356243
351826
|
{
|
|
356244
351827
|
name: "collect_facts",
|
|
356245
351828
|
description: BUILTIN_TOOL_INFO.find((t) => t.name === "collect_facts")?.description ?? "",
|
|
@@ -356412,6 +351995,8 @@ var toolImplementations = {
|
|
|
356412
351995
|
runFleetCommand,
|
|
356413
351996
|
collectFacts,
|
|
356414
351997
|
probeConnectivity,
|
|
351998
|
+
planGraphTool,
|
|
351999
|
+
runGraphTool,
|
|
356415
352000
|
manageDeviceMemory,
|
|
356416
352001
|
manageScript,
|
|
356417
352002
|
manageGroup,
|
|
@@ -371535,6 +367120,27 @@ Actually, your intention might be different. Please re-read the description of t
|
|
|
371535
367120
|
}
|
|
371536
367121
|
break;
|
|
371537
367122
|
}
|
|
367123
|
+
case "plan_graph": {
|
|
367124
|
+
try {
|
|
367125
|
+
const validatedArgs = planGraphSchema.parse(toolCall.args || {});
|
|
367126
|
+
result = await toolImplementations.planGraphTool(validatedArgs, executionContext);
|
|
367127
|
+
} catch (err) {
|
|
367128
|
+
result = `Parameter validation error for plan_graph: ${err.message}`;
|
|
367129
|
+
}
|
|
367130
|
+
break;
|
|
367131
|
+
}
|
|
367132
|
+
case "run_graph": {
|
|
367133
|
+
try {
|
|
367134
|
+
const validatedArgs = runGraphSchema.parse(toolCall.args || {});
|
|
367135
|
+
executionContext.__graphToolExecutor = {
|
|
367136
|
+
executeToolByName: async (tc, ec) => this.executeToolByName(tc, ec)
|
|
367137
|
+
};
|
|
367138
|
+
result = await toolImplementations.runGraphTool(validatedArgs, executionContext);
|
|
367139
|
+
} catch (err) {
|
|
367140
|
+
result = `Parameter validation error for run_graph: ${err.message}`;
|
|
367141
|
+
}
|
|
367142
|
+
break;
|
|
367143
|
+
}
|
|
371538
367144
|
case "collect_facts": {
|
|
371539
367145
|
try {
|
|
371540
367146
|
const validatedArgs = collectFactsSchema.parse(
|
|
@@ -371887,6 +367493,14 @@ Actually, your intention might be different. Please re-read the description of t
|
|
|
371887
367493
|
return ti.collectFacts(args, executionContext);
|
|
371888
367494
|
case "run_fleet_command":
|
|
371889
367495
|
return ti.runFleetCommand(args, executionContext);
|
|
367496
|
+
case "plan_graph":
|
|
367497
|
+
return ti.planGraphTool(args, executionContext);
|
|
367498
|
+
case "run_graph": {
|
|
367499
|
+
executionContext.__graphToolExecutor = {
|
|
367500
|
+
executeToolByName: async (tc, ec) => this.executeToolByName(tc, ec)
|
|
367501
|
+
};
|
|
367502
|
+
return ti.runGraphTool(args, executionContext);
|
|
367503
|
+
}
|
|
371890
367504
|
case "manage_secret":
|
|
371891
367505
|
return ti.manageSecret(args, executionContext);
|
|
371892
367506
|
case "manage_oncall":
|