豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Commit da14f75

Browse files
authored
feat: aura theme (#286)
* add aura theme * docs: update docs for new theme
1 parent 38c8a5a commit da14f75

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ Available themes.
225225
| [dark_dimmed](#dark_dimmed) |
226226
| [dark_lover](#dark_lover) |
227227
| [kimbie_dark](#kimbie_dark) |
228+
| [aura](#aura) |
228229

229230
### flat
230231

@@ -456,6 +457,16 @@ https://github-profile-trophy.vercel.app/?username=ryo-ma&theme=kimbie_dark
456457
<img width="660" src="https://user-images.githubusercontent.com/8161064/288417332-408705a4-ae9c-47fe-af1a-9fb08555f526.png">
457458
</p>
458459

460+
### aura
461+
462+
```
463+
https://github-profile-trophy.vercel.app/?username=ryo-ma&theme=aura
464+
```
465+
466+
<p align="center">
467+
<img width="660" src="https://github.com/user-attachments/assets/18a2266c-9a88-4882-940d-162c0c4d36e0">
468+
</p>
469+
459470
## Margin Width
460471

461472
You can put a margin in the width between trophies.\

src/theme.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,30 @@ export const COLORS: { [name: string]: Theme } = {
575575
DEFAULT_RANK_SHADOW: "#719190",
576576
DEFAULT_RANK_TEXT: "#d3af86",
577577
},
578+
aura: {
579+
BACKGROUND: "#1E1D26",
580+
TITLE: "#FFFFFF",
581+
ICON_CIRCLE: "#FFFFFF",
582+
TEXT: "#dbffe6",
583+
LAUREL: "#a9fcca",
584+
SECRET_RANK_1: "#c273ff",
585+
SECRET_RANK_2: "#c273ff",
586+
SECRET_RANK_3: "#c273ff",
587+
SECRET_RANK_TEXT: "#bd93f9",
588+
NEXT_RANK_BAR: "#715df5",
589+
S_RANK_BASE: "#8e57ff",
590+
S_RANK_SHADOW: "#2361ad",
591+
S_RANK_TEXT: "#6272a4",
592+
A_RANK_BASE: "#7c71f5",
593+
A_RANK_SHADOW: "#3ae056",
594+
A_RANK_TEXT: "#6272a4",
595+
B_RANK_BASE: "#226a80",
596+
B_RANK_SHADOW: "#226a80",
597+
B_RANK_TEXT: "#6272a4",
598+
DEFAULT_RANK_BASE: "#5e8c2a",
599+
DEFAULT_RANK_SHADOW: "#5e8c2a",
600+
DEFAULT_RANK_TEXT: "#5e8c2a",
601+
}
578602
};
579603

580604
export interface Theme {

0 commit comments

Comments
 (0)