diff --git a/.github/release.md b/.github/release.md index 4a40235..ad8364a 100644 --- a/.github/release.md +++ b/.github/release.md @@ -12,7 +12,7 @@ determined. ### ✨ Feature -- 支持猛男粉颜色主题 +- 支持粉色颜色主题 - 修改外观设置中显示的主题名称 #### CSS 变量 diff --git a/themes/colorblind-dark.css.ts b/themes/colorblind-dark.css.ts index 70c7700..be94d6d 100644 --- a/themes/colorblind-dark.css.ts +++ b/themes/colorblind-dark.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme, themeVars, type Chroma } from "src"; import { github2ThemeColor, type GithubColor } from "src/core/github"; import { prettylights2Chroma, type prettylightsColor } from "src/core/prettylights"; diff --git a/themes/colorblind-light.css.ts b/themes/colorblind-light.css.ts index cb7b945..c35c4f0 100644 --- a/themes/colorblind-light.css.ts +++ b/themes/colorblind-light.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme, themeVars, type Chroma } from "src"; import { github2ThemeColor, type GithubColor } from "src/core/github"; import { prettylights2Chroma, type prettylightsColor } from "src/core/prettylights"; diff --git a/themes/dark.css.ts b/themes/dark.css.ts index 310ec60..9dcf261 100644 --- a/themes/dark.css.ts +++ b/themes/dark.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme, themeVars } from "src"; import { github2ThemeColor, type GithubColor } from "src/core/github"; diff --git a/themes/light.css.ts b/themes/light.css.ts index 49f974a..7f41310 100644 --- a/themes/light.css.ts +++ b/themes/light.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme, themeVars } from "src"; import { github2ThemeColor, type GithubColor } from "src/core/github"; diff --git a/themes/pink-dark.css.ts b/themes/pink-dark.css.ts index 09f064c..18abc51 100644 --- a/themes/pink-dark.css.ts +++ b/themes/pink-dark.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme } from "src"; import { display2GithubColor, type DisplayColor } from "src/core/display"; import { github2ThemeColor } from "src/core/github"; diff --git a/themes/pink-light.css.ts b/themes/pink-light.css.ts index 2787873..58671f5 100644 --- a/themes/pink-light.css.ts +++ b/themes/pink-light.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme } from "src"; import { display2GithubColor, type DisplayColor } from "src/core/display"; import { github2ThemeColor } from "src/core/github"; diff --git a/themes/pink-soft-dark.css.ts b/themes/pink-soft-dark.css.ts index 7a8f149..c07c9a5 100644 --- a/themes/pink-soft-dark.css.ts +++ b/themes/pink-soft-dark.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme } from "src"; import { display2GithubColor } from "src/core/display"; import { github2ThemeColor } from "src/core/github"; diff --git a/themes/soft-dark.css.ts b/themes/soft-dark.css.ts index b184ddf..1770a1f 100644 --- a/themes/soft-dark.css.ts +++ b/themes/soft-dark.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme, themeVars, type Chroma } from "src"; import { github2ThemeColor, type GithubColor } from "src/core/github"; import { prettylights2Chroma, type prettylightsColor } from "src/core/prettylights"; diff --git a/themes/tritanopia-dark.css.ts b/themes/tritanopia-dark.css.ts index 0d07d7a..a0cd9f5 100644 --- a/themes/tritanopia-dark.css.ts +++ b/themes/tritanopia-dark.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme, type Chroma } from "src"; import { darkPrettylights } from "src/core/chroma"; import { github2ThemeColor, type GithubColor } from "src/core/github"; diff --git a/themes/tritanopia-light.css.ts b/themes/tritanopia-light.css.ts index 46b491a..17bea73 100644 --- a/themes/tritanopia-light.css.ts +++ b/themes/tritanopia-light.css.ts @@ -1,3 +1,7 @@ +/** + * @author lutinglt + */ + import { defineTheme, type Chroma } from "src"; import { lightPrettylights } from "src/core/chroma"; import { github2ThemeColor, type GithubColor } from "src/core/github";