Skip to content

Commit 8c30149

Browse files
committed
2 parents 7c3ece1 + 33061a2 commit 8c30149

File tree

4 files changed

+227
-40
lines changed

4 files changed

+227
-40
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,24 @@ Here are the themes spread in a table. The card title is the name of the theme.
207207
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=christmas&title=christmas&lineCount=1&line1=node.js,node.js,auto;typescript,typescript,auto;express,express.js,auto">
208208
</td>
209209
</tr>
210+
211+
<tr>
212+
<td>
213+
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=catppuccin_latte&title=catppuccin_latte&lineCount=1&line1=node.js,node.js,auto;typescript,typescript,auto;express,express.js,auto">
214+
</td>
215+
<td>
216+
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=catppuccin_frappe&title=catppuccin_frappe&lineCount=1&line1=node.js,node.js,auto;typescript,typescript,auto;express,express.js,auto">
217+
</td>
218+
</tr>
219+
220+
<tr>
221+
<td>
222+
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=catppuccin_macchiato&title=catppuccin_macchiato&lineCount=1&line1=node.js,node.js,auto;typescript,typescript,auto;express,express.js,auto">
223+
</td>
224+
<td>
225+
<img src="https://github-readme-tech-stack.vercel.app/api/cards?theme=catppuccin_mocha&title=catppuccin_mocha&lineCount=1&line1=node.js,node.js,auto;typescript,typescript,auto;express,express.js,auto">
226+
</td>
227+
</tr>
210228
</table>
211229

212230
### 📚 Adding a new theme

package-lock.json

Lines changed: 181 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"express": "^4.18.2"
2424
},
2525
"devDependencies": {
26-
"@types/cors": "^2.8.12",
26+
"@types/cors": "^2.8.13",
2727
"@types/express": "^4.17.14",
28-
"@types/node": "^18.11.9",
28+
"@types/node": "^18.11.10",
2929
"@typescript-eslint/eslint-plugin": "^5.44.0",
30-
"@typescript-eslint/parser": "^5.44.0",
30+
"@typescript-eslint/parser": "^5.45.0",
3131
"@vercel/node": "2.6.4",
32-
"eslint": "^8.28.0",
32+
"eslint": "^8.29.0",
3333
"husky": "^8.0.2",
3434
"nodemon": "^2.0.20",
3535
"prettier": "^2.8.0",

src/cards/themes.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,30 @@ themes.set("cyberpunk", {
174174
titleColor: "#de6a8d",
175175
badgeColor: "#9a437b",
176176
});
177+
themes.set("catppuccin_latte", {
178+
backgroundColor: "#eff1f5",
179+
borderColor: "#9ca0b0",
180+
badgeColor: "#e6e9ef",
181+
titleColor: "#179299",
182+
});
183+
themes.set("catppuccin_frappe", {
184+
backgroundColor: "#303446",
185+
borderColor: "#737994",
186+
badgeColor: "#292c3c",
187+
titleColor: "#81c8be",
188+
});
189+
themes.set("catppuccin_macchiato", {
190+
backgroundColor: "#24273a",
191+
borderColor: "#6e738d",
192+
badgeColor: "#1e2030",
193+
titleColor: "#8bd5ca",
194+
});
195+
themes.set("catppuccin_mocha", {
196+
backgroundColor: "#1e1e2e",
197+
borderColor: "#6c7086",
198+
badgeColor: "#181825",
199+
titleColor: "#94e2d5",
200+
});
177201

178202
/**
179203
* Searches for the specified theme in the themes map.

0 commit comments

Comments
 (0)