github 主题

This commit is contained in:
lutinglt
2025-07-02 13:21:12 +08:00
parent 0a353fd572
commit 1cc9b20ffd
9 changed files with 292 additions and 194 deletions

View File

@@ -1,9 +1,7 @@
import type { Console, Diff, Other } from "src";
import { defineTheme, themeVars } from "src";
import { defineGithubTheme, type GithubColor } from "src/core/github";
const isDarkTheme = true;
const github = {
const github: GithubColor = {
isDarkTheme: true,
display: {
brown: { fgColor: "#b69a6d" },
cyan: { fgColor: "#07ace4" },
@@ -53,7 +51,7 @@ const github = {
muted: "#151b23",
neutral: {
muted: "#656c7633",
}
},
},
borderColor: {
default: "#3d444d",
@@ -74,185 +72,8 @@ const github = {
},
},
shadow: {
floating: "#01040966"
}
};
const console: Console = {
fg: {
self: github.fgColor.default,
subtle: github.fgColor.muted,
},
bg: github.bgColor.inset,
border: github.borderColor.muted,
activeBg: github.control.bgColor.active,
hoverBg: github.control.transparent.bgColor.hover,
menu: {
bg: github.bgColor.inset,
border: github.borderColor.muted,
floating: "#01040966",
},
};
const diff: Diff = {
added: {
linenum: {
bg: github.diffBlob.addtionNum.bgColor,
},
row: {
bg: github.bgColor.success.muted,
border: github.bgColor.success.muted,
},
word: {
bg: github.diffBlob.addtionWord.bgColor,
},
},
removed: {
linenum: {
bg: github.diffBlob.deletionNum.bgColor,
},
row: {
bg: github.bgColor.danger.muted,
border: github.bgColor.danger.muted,
},
word: {
bg: github.diffBlob.deletionWord.bgColor,
},
},
moved: {
row: {
bg: github.bgColor.attention.muted,
border: github.bgColor.attention.muted,
},
},
inactive: github.bgColor.muted,
};
const other: Other = {
git: "#f05133",
body: github.bgColor.default,
box: {
header: github.bgColor.muted,
body: {
self: themeVars.color.body,
highlight: github.bgColor.accent.muted,
},
},
text: {
self: github.fgColor.default,
light: {
self: github.fgColor.default,
num1: github.fgColor.muted,
num2: github.fgColor.muted,
num3: github.fgColor.muted,
},
dark: github.fgColor.default,
},
footer: github.bgColor.inset,
timeline: github.borderColor.muted,
input: {
text: themeVars.color.text.self,
background: themeVars.color.body,
toggleBackgound: themeVars.color.body,
border: {
self: themeVars.color.light.border,
hover: themeVars.color.light.border,
},
},
light: {
self: themeVars.color.body,
mimicEnabled: "rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled)))",
border: github.borderColor.default,
},
hover: {
self: github.control.bgColor.hover,
opaque: themeVars.color.box.header,
},
active: github.control.transparent.bgColor.selected,
menu: github.bgColor.inset,
card: themeVars.color.body,
markup: {
tableRow: github.bgColor.muted,
code: {
block: github.bgColor.muted,
inline: github.bgColor.neutral.muted,
},
},
button: github.control.bgColor.rest,
codeBg: "unset",
shadow: {
self: github.shadow.floating,
opaque: themeVars.color.shadow.self,
},
secondaryBg: "unset",
expandButton: github.diffBlob.hunkNum.bgColor.rest,
placeholderText: themeVars.color.text.light.num3,
editorLineHighlight: themeVars.color.primary.light.num5,
projectColumnBg: github.bgColor.inset,
caret: themeVars.color.text.dark,
reaction: {
bg: "initial",
hoverBg: github.bgColor.accent.muted,
activeBg: github.bgColor.accent.muted,
},
tooltip: {
text: github.fgColor.default,
bg: github.bgColor.default,
},
nav: {
bg: github.bgColor.inset,
hoverBg: github.control.transparent.bgColor.hover,
text: themeVars.color.text.self,
},
secondaryNavBg: themeVars.color.nav.bg,
label: {
text: themeVars.color.text.self,
bg: github.bgColor.neutral.muted,
hoverBg: github.control.transparent.bgColor.active,
activeBg: themeVars.color.label.hoverBg,
},
accent: themeVars.color.primary.light.num1,
smallAccent: themeVars.color.primary.light.num5,
highlight: {
fg: github.fgColor.attention,
bg: github.bgColor.attention.muted,
},
overlayBackdrop: themeVars.color.body,
};
export default defineTheme({
isDarkTheme,
primary: github.fgColor.accent,
primaryContrast: github.fgColor.default,
secondary: github.borderColor.default,
red: github.fgColor.danger,
orange: github.fgColor.severe,
yellow: github.fgColor.attention,
olive: github.display.olive.fgColor,
green: github.fgColor.success,
cyan: github.display.cyan.fgColor,
teal: github.display.teal.fgColor,
blue: github.fgColor.accent,
violet: github.display.indigo.fgColor,
purple: github.fgColor.done,
pink: github.fgColor.sponsors,
brown: github.display.brown.fgColor,
black: github.fgColor.black,
grey: github.fgColor.neutral,
gold: github.display.lemon.fgColor,
white: github.fgColor.white,
console,
diff,
other,
github: {
fgColor: {
accent: github.fgColor.accent,
default: github.fgColor.default,
muted: github.fgColor.muted,
},
bgColor: {
accent: {
emphasis: github.bgColor.accent.emphasis,
},
},
},
});
export default defineGithubTheme(github);