Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/THEMES.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,4 +330,11 @@ If you have a cool new theme in mind, or want to add one for yourself and others
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=jetbrains_new_dark&title=jetbrains_new_dark&lineCount=1&line1=typescript,typescript,auto;express,express.js,61DAFB">
</td>
</tr>
</table>

<tr>
<td align="center"><code>dark_minimalist</code></td>
<td>
<img src="https://github-readme-tech-stack.vercel.app/api/cards?lineCount=1&bg=%23211f27&badge=%233b3a44&border=%23b9b9c0&titleColor=%2385bef7&line1=node.js,node.js,auto;typescript,typescript,auto;express,express.js,auto">
</td>
</tr>
</table>
7 changes: 6 additions & 1 deletion src/const/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,12 @@ themes.set("jetbrains_new_dark", {
titleColor: "#cf8e6d",
badgeColor: "#1e1f22",
});

themes.set("dark_minimalist", {
backgroundColor: "#211f27",
borderColor: "#b9b9c0",
titleColor: "#85bef7",
badgeColor: "#3b3a44",
});
/**
* Searches for the specified theme in the themes map.
* If the theme is not present in the map, then
Expand Down