Skip to content

Commit 86540eb

Browse files
authored
Merge pull request #14 from sakkke/master
Add Catppuccin themes
2 parents f0eb4cc + 660052c commit 86540eb

File tree

4 files changed

+46
-4
lines changed

4 files changed

+46
-4
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

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| ------- | ------------------ |
77
| 1.2.x | :white_check_mark: |
88
| 1.1.x | :white_check_mark: |
9-
| < 1.1.0 | :x: |
9+
| < 1.1.0 | :x: |
1010

1111
## Reporting a Vulnerability
1212

client/src/index.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
}
88

99
*::-webkit-scrollbar {
10-
height: .5rem;
11-
width: .5rem;
10+
height: 0.5rem;
11+
width: 0.5rem;
1212
}
1313

1414
*::-webkit-scrollbar-track {
@@ -17,7 +17,7 @@
1717

1818
*::-webkit-scrollbar-thumb {
1919
background-color: #7b7b7b;
20-
transition: .3s ease-in-out;
20+
transition: 0.3s ease-in-out;
2121
}
2222

2323
*::-webkit-scrollbar-thumb:hover {

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)