Skip to content

Commit 69162a6

Browse files
committed
backend(themes.md): add 3 more themes
1 parent 14ea1ac commit 69162a6

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

docs/THEMES.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,4 +288,25 @@ If you have a cool new theme in mind, or add one for yourself and others, please
288288
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=facebook&title=facebook&lineCount=1&line1=typescript,typescript,auto;express,express.js,61DAFB">
289289
</td>
290290
</tr>
291+
292+
<tr>
293+
<td align="center"><code>2077</code></td>
294+
<td>
295+
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=2077&title=2077&lineCount=1&line1=typescript,typescript,auto;express,express.js,61DAFB">
296+
</td>
297+
</tr>
298+
299+
<tr>
300+
<td align="center"><code>solarized</code></td>
301+
<td>
302+
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=solarized&title=solarized&lineCount=1&line1=typescript,typescript,auto;express,express.js,61DAFB">
303+
</td>
304+
</tr>
305+
306+
<tr>
307+
<td align="center"><code>solarized_dark</code></td>
308+
<td>
309+
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=solarized_dark&title=solarized_dark&lineCount=1&line1=typescript,typescript,auto;express,express.js,61DAFB">
310+
</td>
311+
</tr>
291312
</table>

src/cards/themes.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,24 @@ themes.set("nord", {
252252
titleColor: "#82a2c2",
253253
badgeColor: "#343C4D",
254254
});
255+
themes.set("2077", {
256+
backgroundColor: "#141321",
257+
borderColor: "#201F36",
258+
titleColor: "#FF0055",
259+
badgeColor: "#201F36",
260+
});
261+
themes.set("solarized", {
262+
backgroundColor: "#FDF6E3",
263+
borderColor: "#F0E9D7",
264+
titleColor: "#268BD2",
265+
badgeColor: "#FFFAF2",
266+
});
267+
themes.set("solarized_dark", {
268+
backgroundColor: "#073642",
269+
borderColor: "#062C36",
270+
titleColor: "#268BD2",
271+
badgeColor: "#062C36",
272+
});
255273

256274
/**
257275
* Searches for the specified theme in the themes map.

0 commit comments

Comments
 (0)