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
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,24 @@ Here are the themes spread in a table. The card title is the name of the theme.
<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">
</td>
</tr>

<tr>
<td>
<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">
</td>
<td>
<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">
</td>
</tr>

<tr>
<td>
<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">
</td>
<td>
<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">
</td>
</tr>
</table>

### 📚 Adding a new theme
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
| ------- | ------------------ |
| 1.2.x | :white_check_mark: |
| 1.1.x | :white_check_mark: |
| < 1.1.0 | :x: |
| < 1.1.0 | :x: |

## Reporting a Vulnerability

Expand Down
6 changes: 3 additions & 3 deletions client/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
}

*::-webkit-scrollbar {
height: .5rem;
width: .5rem;
height: 0.5rem;
width: 0.5rem;
}

*::-webkit-scrollbar-track {
Expand All @@ -17,7 +17,7 @@

*::-webkit-scrollbar-thumb {
background-color: #7b7b7b;
transition: .3s ease-in-out;
transition: 0.3s ease-in-out;
}

*::-webkit-scrollbar-thumb:hover {
Expand Down
24 changes: 24 additions & 0 deletions src/cards/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,30 @@ themes.set("cyberpunk", {
titleColor: "#de6a8d",
badgeColor: "#9a437b",
});
themes.set("catppuccin_latte", {
backgroundColor: "#eff1f5",
borderColor: "#9ca0b0",
badgeColor: "#e6e9ef",
titleColor: "#179299",
});
themes.set("catppuccin_frappe", {
backgroundColor: "#303446",
borderColor: "#737994",
badgeColor: "#292c3c",
titleColor: "#81c8be",
});
themes.set("catppuccin_macchiato", {
backgroundColor: "#24273a",
borderColor: "#6e738d",
badgeColor: "#1e2030",
titleColor: "#8bd5ca",
});
themes.set("catppuccin_mocha", {
backgroundColor: "#1e1e2e",
borderColor: "#6c7086",
badgeColor: "#181825",
titleColor: "#94e2d5",
});

/**
* Searches for the specified theme in the themes map.
Expand Down