Files
gitea-themes/themes/github-dark/index.ts
T
2026-05-22 00:22:05 +08:00

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,
],
};