Skip to content

Commit eb12133

Browse files
feat: Added shadow themes (Red, Green, Blue, Orange, Purple, Brown) (#560)
Co-authored-by: Jonah Lawrence <jonah@freshidea.com>
1 parent ebbd481 commit eb12133

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

docs/themes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ Note: Theme names provided are case-insensitive and any use of underscores will
131131
| `catppuccino-mocha` | ![image](https://user-images.githubusercontent.com/85760664/248204228-9f965d12-2013-48c9-b3a8-e9717b1c4e43.png) |
132132
| `burnt-neon` | ![image](https://user-images.githubusercontent.com/112064697/250343082-de641726-1200-4264-885a-154d539cfc3f.png) |
133133
| `humoris` | ![image](https://user-images.githubusercontent.com/20955511/263020536-793bedbd-cca6-47e5-92dc-c7b38ab05bce.png) |
134+
| `shadow-red` | ![image](https://user-images.githubusercontent.com/86386385/263407052-345edfdf-b6ee-4b53-a4c4-7dcb4948f6dc.png) |
135+
| `shadow-green` | ![image](https://user-images.githubusercontent.com/86386385/263407047-d769c2cf-e435-4d46-9a34-04c16f61d200.png) |
136+
| `shadow-blue` | ![image](https://user-images.githubusercontent.com/86386385/263407038-bdcd2ed9-4d2c-4a46-b8df-1b989ee517f5.png) |
137+
| `shadow-orange` | ![image](https://user-images.githubusercontent.com/86386385/263406777-07fd919b-7b4f-4fa9-ac47-3ebd0602a80b.png) |
138+
| `shadow-purple` | ![image](https://user-images.githubusercontent.com/86386385/263406551-46e14eac-fdbc-4b90-9df8-85c0bd1eeb41.png) |
139+
| `shadow-brown` | ![image](https://user-images.githubusercontent.com/86386385/263406156-5e17541d-4dcf-4315-b68d-d36c95d53767.png) |
134140

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

src/themes.php

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,4 +1601,82 @@
16011601
"dates" => "#444444",
16021602
"excludeDaysLabel" => "#444444",
16031603
],
1604+
"shadow-red" => [
1605+
"background" => "#FFFFFF00",
1606+
"border" => "#4F0000",
1607+
"stroke" => "#4F0000",
1608+
"ring" => "#4F0000",
1609+
"fire" => "#9A0000",
1610+
"currStreakNum" => "#B94242",
1611+
"sideNums" => "#747474",
1612+
"currStreakLabel" => "#9A0000",
1613+
"sideLabels" => "#9A0000",
1614+
"dates" => "#747474",
1615+
"excludeDaysLabel" => "#B94242",
1616+
],
1617+
"shadow-green" => [
1618+
"background" => "#FFFFFF00",
1619+
"border" => "#003D00",
1620+
"stroke" => "#003D00",
1621+
"ring" => "#003D00",
1622+
"fire" => "#007A00",
1623+
"currStreakNum" => "#4DB942",
1624+
"sideNums" => "#747474",
1625+
"currStreakLabel" => "#007A00",
1626+
"sideLabels" => "#007A00",
1627+
"dates" => "#747474",
1628+
"excludeDaysLabel" => "#4DB942",
1629+
],
1630+
"shadow-blue" => [
1631+
"background" => "#FFFFFF00",
1632+
"border" => "#004490",
1633+
"stroke" => "#004450",
1634+
"ring" => "#004450",
1635+
"fire" => "#00779A",
1636+
"currStreakNum" => "#3E6BFF",
1637+
"sideNums" => "#747474",
1638+
"currStreakLabel" => "#00779A",
1639+
"sideLabels" => "#00779A",
1640+
"dates" => "#747474",
1641+
"excludeDaysLabel" => "#3E6BFF",
1642+
],
1643+
"shadow-orange" => [
1644+
"background" => "#FFFFFF00",
1645+
"border" => "#834400",
1646+
"stroke" => "#834400",
1647+
"ring" => "#834400",
1648+
"fire" => "#BB5502",
1649+
"currStreakNum" => "#EC861A",
1650+
"sideNums" => "#747474",
1651+
"currStreakLabel" => "#BB5502",
1652+
"sideLabels" => "#BB5502",
1653+
"dates" => "#747474",
1654+
"excludeDaysLabel" => "#EC861A",
1655+
],
1656+
"shadow-purple" => [
1657+
"background" => "#FFFFFF00",
1658+
"border" => "#570182",
1659+
"stroke" => "#570182",
1660+
"ring" => "#570182",
1661+
"fire" => "#6F42C1",
1662+
"currStreakNum" => "#CA59FF",
1663+
"sideNums" => "#747474",
1664+
"currStreakLabel" => "#6F42C1",
1665+
"sideLabels" => "#6F42C1",
1666+
"dates" => "#747474",
1667+
"excludeDaysLabel" => "#CA59FF",
1668+
],
1669+
"shadow-brown" => [
1670+
"background" => "#FFFFFF00",
1671+
"border" => "#31312D",
1672+
"stroke" => "#31312D",
1673+
"ring" => "#31312D",
1674+
"fire" => "#7D6642",
1675+
"currStreakNum" => "#BB9863",
1676+
"sideNums" => "#747474",
1677+
"currStreakLabel" => "#7D6642",
1678+
"sideLabels" => "#7D6642",
1679+
"dates" => "#747474",
1680+
"excludeDaysLabel" => "#BB9863",
1681+
],
16041682
];

0 commit comments

Comments
 (0)