Skip to content

Commit 4c659e4

Browse files
feat(theme): Added apprentice theme (#145)
1 parent ddb9d7e commit 4c659e4

File tree

1 file changed

+26
-16
lines changed

1 file changed

+26
-16
lines changed

themes/index.ts

Lines changed: 26 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export type Themes = {
1313

1414
// Object containing various predefined themes for GitHub stats cards
1515
export const themes: Themes = {
16+
// Solid themes
1617
default: {
1718
title_color: "2f80ed",
1819
text_color: "434d58",
@@ -213,6 +214,31 @@ export const themes: Themes = {
213214
border_color: "31312D",
214215
bg_color: "ffffff00",
215216
},
217+
gruvbox: {
218+
title_color: "fabd2f",
219+
icon_color: "fe8019",
220+
text_color: "8ec07c",
221+
bg_color: "282828",
222+
stroke_color: "3c3836",
223+
username_color: "ebdbb2",
224+
},
225+
gruvbox_light: {
226+
title_color: "b57614",
227+
icon_color: "af3a03",
228+
text_color: "427b58",
229+
bg_color: "fbf1c7",
230+
stroke_color: "ebdbb2",
231+
username_color: "3c3836",
232+
},
233+
apprentice: {
234+
title_color: "ffffff",
235+
icon_color: "ffffaf",
236+
text_color: "bcbcbc",
237+
bg_color: "262626",
238+
username_color: "ffffaf",
239+
},
240+
241+
// Gradient themes
216242
"sunset-gradient": {
217243
title_color: "FFFFFF",
218244
text_color: "FFFFFF",
@@ -240,20 +266,4 @@ export const themes: Themes = {
240266
icon_color: "FFFFFF",
241267
bg_color: "30,E96443,904E95",
242268
},
243-
gruvbox: {
244-
title_color: "fabd2f",
245-
icon_color: "fe8019",
246-
text_color: "8ec07c",
247-
bg_color: "282828",
248-
stroke_color: "3c3836",
249-
username_color: "ebdbb2",
250-
},
251-
gruvbox_light: {
252-
title_color: "b57614",
253-
icon_color: "af3a03",
254-
text_color: "427b58",
255-
bg_color: "fbf1c7",
256-
stroke_color: "ebdbb2",
257-
username_color: "3c3836",
258-
},
259269
}

0 commit comments

Comments
 (0)