Skip to content

Commit 8a2be92

Browse files
committed
refactor(themes): rename jungle theme to lush
Rename jungle theme to lush while preserving exact colors (steel blue [70, 130, 180] with golden accents [255, 215, 0]).
1 parent 013eabe commit 8a2be92

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
- Theme system with 5 built-in themes: `socket`, `sunset`, `brick`, `jungle`, `ultra`
12+
- Theme system with 5 built-in themes: `socket`, `sunset`, `brick`, `lush`, `ultra`
1313
- `setTheme()`, `getTheme()`, `withTheme()`, `withThemeSync()` for theme management
1414
- `createTheme()`, `extendTheme()`, `resolveColor()` helper functions
1515
- `onThemeChange()` event listener for theme reactivity

src/themes/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export type {
5656
// Curated themes
5757
export {
5858
BRICK_THEME,
59-
JUNGLE_THEME,
59+
LUSH_THEME,
6060
SOCKET_THEME,
6161
SUNSET_THEME,
6262
THEMES,

src/themes/themes.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ export const BRICK_THEME: Theme = {
117117
}
118118

119119
/**
120-
* Jungle — Steel elegance.
120+
* Lush — Steel elegance.
121121
* Python-inspired steel blue with golden accents.
122122
*/
123-
export const JUNGLE_THEME: Theme = {
124-
name: 'jungle',
125-
displayName: 'Jungle',
123+
export const LUSH_THEME: Theme = {
124+
name: 'lush',
125+
displayName: 'Lush',
126126
colors: {
127127
primary: [70, 130, 180],
128128
secondary: [255, 215, 0],
@@ -193,7 +193,7 @@ export const THEMES = {
193193
socket: SOCKET_THEME,
194194
sunset: SUNSET_THEME,
195195
brick: BRICK_THEME,
196-
jungle: JUNGLE_THEME,
196+
lush: LUSH_THEME,
197197
ultra: ULTRA_THEME,
198198
} as const
199199

test/themes.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('themes', () => {
2626
expect(THEMES).toHaveProperty('socket')
2727
expect(THEMES).toHaveProperty('sunset')
2828
expect(THEMES).toHaveProperty('brick')
29-
expect(THEMES).toHaveProperty('jungle')
29+
expect(THEMES).toHaveProperty('lush')
3030
expect(THEMES).toHaveProperty('ultra')
3131
})
3232

0 commit comments

Comments
 (0)