Skip to content

Commit

Permalink
feat: Added shadow themes (Red, Green, Blue, Orange, Purple, Brown) (#…
Browse files Browse the repository at this point in the history
…560)

Co-authored-by: Jonah Lawrence <[email protected]>
  • Loading branch information
FajarKim and DenverCoder1 authored Aug 28, 2023
1 parent ebbd481 commit eb12133
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@ Note: Theme names provided are case-insensitive and any use of underscores will
| `catppuccino-mocha` | ![image](https://user-images.githubusercontent.com/85760664/248204228-9f965d12-2013-48c9-b3a8-e9717b1c4e43.png) |
| `burnt-neon` | ![image](https://user-images.githubusercontent.com/112064697/250343082-de641726-1200-4264-885a-154d539cfc3f.png) |
| `humoris` | ![image](https://user-images.githubusercontent.com/20955511/263020536-793bedbd-cca6-47e5-92dc-c7b38ab05bce.png) |
| `shadow-red` | ![image](https://user-images.githubusercontent.com/86386385/263407052-345edfdf-b6ee-4b53-a4c4-7dcb4948f6dc.png) |
| `shadow-green` | ![image](https://user-images.githubusercontent.com/86386385/263407047-d769c2cf-e435-4d46-9a34-04c16f61d200.png) |
| `shadow-blue` | ![image](https://user-images.githubusercontent.com/86386385/263407038-bdcd2ed9-4d2c-4a46-b8df-1b989ee517f5.png) |
| `shadow-orange` | ![image](https://user-images.githubusercontent.com/86386385/263406777-07fd919b-7b4f-4fa9-ac47-3ebd0602a80b.png) |
| `shadow-purple` | ![image](https://user-images.githubusercontent.com/86386385/263406551-46e14eac-fdbc-4b90-9df8-85c0bd1eeb41.png) |
| `shadow-brown` | ![image](https://user-images.githubusercontent.com/86386385/263406156-5e17541d-4dcf-4315-b68d-d36c95d53767.png) |

### Can't find the theme you like?

Expand Down
78 changes: 78 additions & 0 deletions src/themes.php
Original file line number Diff line number Diff line change
Expand Up @@ -1601,4 +1601,82 @@
"dates" => "#444444",
"excludeDaysLabel" => "#444444",
],
"shadow-red" => [
"background" => "#FFFFFF00",
"border" => "#4F0000",
"stroke" => "#4F0000",
"ring" => "#4F0000",
"fire" => "#9A0000",
"currStreakNum" => "#B94242",
"sideNums" => "#747474",
"currStreakLabel" => "#9A0000",
"sideLabels" => "#9A0000",
"dates" => "#747474",
"excludeDaysLabel" => "#B94242",
],
"shadow-green" => [
"background" => "#FFFFFF00",
"border" => "#003D00",
"stroke" => "#003D00",
"ring" => "#003D00",
"fire" => "#007A00",
"currStreakNum" => "#4DB942",
"sideNums" => "#747474",
"currStreakLabel" => "#007A00",
"sideLabels" => "#007A00",
"dates" => "#747474",
"excludeDaysLabel" => "#4DB942",
],
"shadow-blue" => [
"background" => "#FFFFFF00",
"border" => "#004490",
"stroke" => "#004450",
"ring" => "#004450",
"fire" => "#00779A",
"currStreakNum" => "#3E6BFF",
"sideNums" => "#747474",
"currStreakLabel" => "#00779A",
"sideLabels" => "#00779A",
"dates" => "#747474",
"excludeDaysLabel" => "#3E6BFF",
],
"shadow-orange" => [
"background" => "#FFFFFF00",
"border" => "#834400",
"stroke" => "#834400",
"ring" => "#834400",
"fire" => "#BB5502",
"currStreakNum" => "#EC861A",
"sideNums" => "#747474",
"currStreakLabel" => "#BB5502",
"sideLabels" => "#BB5502",
"dates" => "#747474",
"excludeDaysLabel" => "#EC861A",
],
"shadow-purple" => [
"background" => "#FFFFFF00",
"border" => "#570182",
"stroke" => "#570182",
"ring" => "#570182",
"fire" => "#6F42C1",
"currStreakNum" => "#CA59FF",
"sideNums" => "#747474",
"currStreakLabel" => "#6F42C1",
"sideLabels" => "#6F42C1",
"dates" => "#747474",
"excludeDaysLabel" => "#CA59FF",
],
"shadow-brown" => [
"background" => "#FFFFFF00",
"border" => "#31312D",
"stroke" => "#31312D",
"ring" => "#31312D",
"fire" => "#7D6642",
"currStreakNum" => "#BB9863",
"sideNums" => "#747474",
"currStreakLabel" => "#7D6642",
"sideLabels" => "#7D6642",
"dates" => "#747474",
"excludeDaysLabel" => "#BB9863",
],
];

0 comments on commit eb12133

Please sign in to comment.