26 lines
793 B
TypeScript
26 lines
793 B
TypeScript
import { ansiColorTokens } from "../github-light/ansi-colors";
|
|
import { namedColorTokens } from "../github-light/named-colors";
|
|
import { semanticColorTokens } from "../github-light/semantic-colors";
|
|
import { consoleTokens } from "./console";
|
|
import { coreTokens } from "./core";
|
|
import { diffColorTokens } from "./diff-colors";
|
|
import { githubColorTokens } from "./github-colors";
|
|
import { syntaxColorTokens } from "./syntax-colors";
|
|
import { targetColorTokens } from "./target-colors";
|
|
import { themeMeta } from "./theme-meta";
|
|
|
|
export const githubDarkTheme = {
|
|
meta: themeMeta,
|
|
root: [
|
|
coreTokens,
|
|
consoleTokens,
|
|
namedColorTokens,
|
|
ansiColorTokens,
|
|
diffColorTokens,
|
|
semanticColorTokens,
|
|
githubColorTokens,
|
|
syntaxColorTokens,
|
|
targetColorTokens,
|
|
],
|
|
};
|