Files
gitea-themes/themes/github-dark/index.ts
T
chuan 8dd9e1a71a
Release / release (push) Successful in 37s
fix: 修复缺失语法高亮的问题
2026-05-21 23:35:28 +08:00

26 lines
807 B
TypeScript

import { ansiColorTokens } from "../github-light/ansi-colors";
import { diffColorTokens } from "../github-light/diff-colors";
import { namedColorTokens } from "../github-light/named-colors";
import { semanticColorTokens } from "../github-light/semantic-colors";
import { consoleTokens } from "./console";
import { coreTokens } from "./core";
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,
],
};