@autumnsgrove/groveengine 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/dist/ui/components/content/RoadmapPreview.svelte +91 -0
  2. package/dist/ui/components/content/RoadmapPreview.svelte.d.ts +36 -0
  3. package/dist/ui/components/content/index.d.ts +1 -0
  4. package/dist/ui/components/content/index.js +1 -0
  5. package/dist/ui/components/nature/Logo.svelte +224 -0
  6. package/dist/ui/components/nature/Logo.svelte.d.ts +14 -0
  7. package/dist/ui/components/nature/botanical/Acorn.svelte +48 -0
  8. package/dist/ui/components/nature/botanical/Acorn.svelte.d.ts +8 -0
  9. package/dist/ui/components/nature/botanical/Berry.svelte +67 -0
  10. package/dist/ui/components/nature/botanical/Berry.svelte.d.ts +8 -0
  11. package/dist/ui/components/nature/botanical/DandelionPuff.svelte +98 -0
  12. package/dist/ui/components/nature/botanical/DandelionPuff.svelte.d.ts +8 -0
  13. package/dist/ui/components/nature/botanical/FallingLeavesLayer.svelte +170 -0
  14. package/dist/ui/components/nature/botanical/FallingLeavesLayer.svelte.d.ts +35 -0
  15. package/dist/ui/components/nature/botanical/FallingPetalsLayer.svelte +174 -0
  16. package/dist/ui/components/nature/botanical/FallingPetalsLayer.svelte.d.ts +25 -0
  17. package/dist/ui/components/nature/botanical/Leaf.svelte +77 -0
  18. package/dist/ui/components/nature/botanical/Leaf.svelte.d.ts +10 -0
  19. package/dist/ui/components/nature/botanical/LeafFalling.svelte +186 -0
  20. package/dist/ui/components/nature/botanical/LeafFalling.svelte.d.ts +22 -0
  21. package/dist/ui/components/nature/botanical/PetalFalling.svelte +266 -0
  22. package/dist/ui/components/nature/botanical/PetalFalling.svelte.d.ts +25 -0
  23. package/dist/ui/components/nature/botanical/PineCone.svelte +61 -0
  24. package/dist/ui/components/nature/botanical/PineCone.svelte.d.ts +7 -0
  25. package/dist/ui/components/nature/botanical/Vine.svelte +102 -0
  26. package/dist/ui/components/nature/botanical/Vine.svelte.d.ts +11 -0
  27. package/dist/ui/components/nature/botanical/index.d.ts +10 -0
  28. package/dist/ui/components/nature/botanical/index.js +11 -0
  29. package/dist/ui/components/nature/creatures/Bee.svelte +78 -0
  30. package/dist/ui/components/nature/creatures/Bee.svelte.d.ts +9 -0
  31. package/dist/ui/components/nature/creatures/Bird.svelte +94 -0
  32. package/dist/ui/components/nature/creatures/Bird.svelte.d.ts +11 -0
  33. package/dist/ui/components/nature/creatures/BirdFlying.svelte +83 -0
  34. package/dist/ui/components/nature/creatures/BirdFlying.svelte.d.ts +9 -0
  35. package/dist/ui/components/nature/creatures/Bluebird.svelte +95 -0
  36. package/dist/ui/components/nature/creatures/Bluebird.svelte.d.ts +12 -0
  37. package/dist/ui/components/nature/creatures/Butterfly.svelte +87 -0
  38. package/dist/ui/components/nature/creatures/Butterfly.svelte.d.ts +9 -0
  39. package/dist/ui/components/nature/creatures/Cardinal.svelte +95 -0
  40. package/dist/ui/components/nature/creatures/Cardinal.svelte.d.ts +12 -0
  41. package/dist/ui/components/nature/creatures/Chickadee.svelte +97 -0
  42. package/dist/ui/components/nature/creatures/Chickadee.svelte.d.ts +12 -0
  43. package/dist/ui/components/nature/creatures/Deer.svelte +95 -0
  44. package/dist/ui/components/nature/creatures/Deer.svelte.d.ts +9 -0
  45. package/dist/ui/components/nature/creatures/Firefly.svelte +111 -0
  46. package/dist/ui/components/nature/creatures/Firefly.svelte.d.ts +10 -0
  47. package/dist/ui/components/nature/creatures/Owl.svelte +91 -0
  48. package/dist/ui/components/nature/creatures/Owl.svelte.d.ts +9 -0
  49. package/dist/ui/components/nature/creatures/Rabbit.svelte +90 -0
  50. package/dist/ui/components/nature/creatures/Rabbit.svelte.d.ts +9 -0
  51. package/dist/ui/components/nature/creatures/Robin.svelte +98 -0
  52. package/dist/ui/components/nature/creatures/Robin.svelte.d.ts +12 -0
  53. package/dist/ui/components/nature/creatures/Squirrel.svelte +97 -0
  54. package/dist/ui/components/nature/creatures/Squirrel.svelte.d.ts +9 -0
  55. package/dist/ui/components/nature/creatures/index.d.ts +13 -0
  56. package/dist/ui/components/nature/creatures/index.js +14 -0
  57. package/dist/ui/components/nature/ground/Bush.svelte +57 -0
  58. package/dist/ui/components/nature/ground/Bush.svelte.d.ts +10 -0
  59. package/dist/ui/components/nature/ground/Crocus.svelte +83 -0
  60. package/dist/ui/components/nature/ground/Crocus.svelte.d.ts +12 -0
  61. package/dist/ui/components/nature/ground/Daffodil.svelte +75 -0
  62. package/dist/ui/components/nature/ground/Daffodil.svelte.d.ts +11 -0
  63. package/dist/ui/components/nature/ground/Fern.svelte +72 -0
  64. package/dist/ui/components/nature/ground/Fern.svelte.d.ts +10 -0
  65. package/dist/ui/components/nature/ground/FlowerWild.svelte +60 -0
  66. package/dist/ui/components/nature/ground/FlowerWild.svelte.d.ts +10 -0
  67. package/dist/ui/components/nature/ground/GrassTuft.svelte +49 -0
  68. package/dist/ui/components/nature/ground/GrassTuft.svelte.d.ts +10 -0
  69. package/dist/ui/components/nature/ground/Log.svelte +42 -0
  70. package/dist/ui/components/nature/ground/Log.svelte.d.ts +7 -0
  71. package/dist/ui/components/nature/ground/Mushroom.svelte +48 -0
  72. package/dist/ui/components/nature/ground/Mushroom.svelte.d.ts +9 -0
  73. package/dist/ui/components/nature/ground/MushroomCluster.svelte +41 -0
  74. package/dist/ui/components/nature/ground/MushroomCluster.svelte.d.ts +8 -0
  75. package/dist/ui/components/nature/ground/Rock.svelte +59 -0
  76. package/dist/ui/components/nature/ground/Rock.svelte.d.ts +8 -0
  77. package/dist/ui/components/nature/ground/Stump.svelte +44 -0
  78. package/dist/ui/components/nature/ground/Stump.svelte.d.ts +8 -0
  79. package/dist/ui/components/nature/ground/Tulip.svelte +79 -0
  80. package/dist/ui/components/nature/ground/Tulip.svelte.d.ts +11 -0
  81. package/dist/ui/components/nature/ground/index.d.ts +12 -0
  82. package/dist/ui/components/nature/ground/index.js +13 -0
  83. package/dist/ui/components/nature/index.d.ts +28 -0
  84. package/dist/ui/components/nature/index.js +38 -0
  85. package/dist/ui/components/nature/palette.d.ts +491 -0
  86. package/dist/ui/components/nature/palette.js +384 -0
  87. package/dist/ui/components/nature/sky/Cloud.svelte +122 -0
  88. package/dist/ui/components/nature/sky/Cloud.svelte.d.ts +11 -0
  89. package/dist/ui/components/nature/sky/CloudWispy.svelte +79 -0
  90. package/dist/ui/components/nature/sky/CloudWispy.svelte.d.ts +9 -0
  91. package/dist/ui/components/nature/sky/Moon.svelte +60 -0
  92. package/dist/ui/components/nature/sky/Moon.svelte.d.ts +9 -0
  93. package/dist/ui/components/nature/sky/Rainbow.svelte +101 -0
  94. package/dist/ui/components/nature/sky/Rainbow.svelte.d.ts +8 -0
  95. package/dist/ui/components/nature/sky/Star.svelte +84 -0
  96. package/dist/ui/components/nature/sky/Star.svelte.d.ts +10 -0
  97. package/dist/ui/components/nature/sky/StarCluster.svelte +85 -0
  98. package/dist/ui/components/nature/sky/StarCluster.svelte.d.ts +9 -0
  99. package/dist/ui/components/nature/sky/StarShooting.svelte +90 -0
  100. package/dist/ui/components/nature/sky/StarShooting.svelte.d.ts +9 -0
  101. package/dist/ui/components/nature/sky/Sun.svelte +70 -0
  102. package/dist/ui/components/nature/sky/Sun.svelte.d.ts +9 -0
  103. package/dist/ui/components/nature/sky/index.d.ts +8 -0
  104. package/dist/ui/components/nature/sky/index.js +9 -0
  105. package/dist/ui/components/nature/structural/Birdhouse.svelte +53 -0
  106. package/dist/ui/components/nature/structural/Birdhouse.svelte.d.ts +8 -0
  107. package/dist/ui/components/nature/structural/Bridge.svelte +65 -0
  108. package/dist/ui/components/nature/structural/Bridge.svelte.d.ts +7 -0
  109. package/dist/ui/components/nature/structural/FencePost.svelte +54 -0
  110. package/dist/ui/components/nature/structural/FencePost.svelte.d.ts +8 -0
  111. package/dist/ui/components/nature/structural/GardenGate.svelte +70 -0
  112. package/dist/ui/components/nature/structural/GardenGate.svelte.d.ts +8 -0
  113. package/dist/ui/components/nature/structural/Lantern.svelte +113 -0
  114. package/dist/ui/components/nature/structural/Lantern.svelte.d.ts +10 -0
  115. package/dist/ui/components/nature/structural/Lattice.svelte +89 -0
  116. package/dist/ui/components/nature/structural/Lattice.svelte.d.ts +8 -0
  117. package/dist/ui/components/nature/structural/LatticeWithVine.svelte +89 -0
  118. package/dist/ui/components/nature/structural/LatticeWithVine.svelte.d.ts +11 -0
  119. package/dist/ui/components/nature/structural/StonePath.svelte +48 -0
  120. package/dist/ui/components/nature/structural/StonePath.svelte.d.ts +7 -0
  121. package/dist/ui/components/nature/structural/index.d.ts +8 -0
  122. package/dist/ui/components/nature/structural/index.js +9 -0
  123. package/dist/ui/components/nature/trees/TreeAspen.svelte +163 -0
  124. package/dist/ui/components/nature/trees/TreeAspen.svelte.d.ts +11 -0
  125. package/dist/ui/components/nature/trees/TreeBirch.svelte +186 -0
  126. package/dist/ui/components/nature/trees/TreeBirch.svelte.d.ts +11 -0
  127. package/dist/ui/components/nature/trees/TreeCherry.svelte +108 -0
  128. package/dist/ui/components/nature/trees/TreeCherry.svelte.d.ts +11 -0
  129. package/dist/ui/components/nature/trees/TreePine.svelte +79 -0
  130. package/dist/ui/components/nature/trees/TreePine.svelte.d.ts +11 -0
  131. package/dist/ui/components/nature/trees/index.d.ts +4 -0
  132. package/dist/ui/components/nature/trees/index.js +5 -0
  133. package/dist/ui/components/nature/water/LilyPad.svelte +99 -0
  134. package/dist/ui/components/nature/water/LilyPad.svelte.d.ts +10 -0
  135. package/dist/ui/components/nature/water/Pond.svelte +104 -0
  136. package/dist/ui/components/nature/water/Pond.svelte.d.ts +8 -0
  137. package/dist/ui/components/nature/water/Reeds.svelte +85 -0
  138. package/dist/ui/components/nature/water/Reeds.svelte.d.ts +11 -0
  139. package/dist/ui/components/nature/water/Stream.svelte +98 -0
  140. package/dist/ui/components/nature/water/Stream.svelte.d.ts +8 -0
  141. package/dist/ui/components/nature/water/index.d.ts +4 -0
  142. package/dist/ui/components/nature/water/index.js +5 -0
  143. package/dist/ui/components/nature/weather/SnowfallLayer.svelte +175 -0
  144. package/dist/ui/components/nature/weather/SnowfallLayer.svelte.d.ts +25 -0
  145. package/dist/ui/components/nature/weather/Snowflake.svelte +99 -0
  146. package/dist/ui/components/nature/weather/Snowflake.svelte.d.ts +11 -0
  147. package/dist/ui/components/nature/weather/SnowflakeFalling.svelte +162 -0
  148. package/dist/ui/components/nature/weather/SnowflakeFalling.svelte.d.ts +23 -0
  149. package/dist/ui/components/nature/weather/index.d.ts +3 -0
  150. package/dist/ui/components/nature/weather/index.js +4 -0
  151. package/dist/ui/components/ui/GlassLogo.svelte +422 -0
  152. package/dist/ui/components/ui/GlassLogo.svelte.d.ts +23 -0
  153. package/dist/ui/components/ui/GlassNavbar.svelte +120 -0
  154. package/dist/ui/components/ui/GlassNavbar.svelte.d.ts +42 -0
  155. package/dist/ui/components/ui/Logo.svelte +47 -52
  156. package/dist/ui/components/ui/Logo.svelte.d.ts +4 -3
  157. package/dist/ui/components/ui/index.d.ts +2 -0
  158. package/dist/ui/components/ui/index.js +2 -0
  159. package/dist/ui/styles/grove.css +15 -1
  160. package/package.json +11 -1
@@ -0,0 +1,491 @@
1
+ /**
2
+ * Shared Nature Palette
3
+ *
4
+ * A unified color system for all forest/nature components.
5
+ * All components should import from here to maintain visual cohesion.
6
+ *
7
+ * Design Philosophy:
8
+ * - Colors are drawn from real forest environments (Pacific Northwest inspiration)
9
+ * - Organized by depth: darker = further away, lighter = closer (atmospheric perspective)
10
+ * - Seasonal variants allow trees to change with autumn toggle
11
+ * - Accents are intentionally limited to 1-2 unique colors per component type
12
+ */
13
+ /**
14
+ * Green foliage colors - from dark forest depths to pale spring leaves
15
+ * Organized dark-to-light for depth layering in forest scenes.
16
+ * darkForest/deepGreen: background trees (atmospheric distance)
17
+ * grove/meadow: mid-ground trees (Grove brand green at grove)
18
+ * spring/mint/pale: foreground foliage, new growth
19
+ */
20
+ export declare const greens: {
21
+ readonly darkForest: "#0d4a1c";
22
+ readonly deepGreen: "#166534";
23
+ readonly grove: "#16a34a";
24
+ readonly meadow: "#22c55e";
25
+ readonly spring: "#4ade80";
26
+ readonly mint: "#86efac";
27
+ readonly pale: "#bbf7d0";
28
+ };
29
+ /**
30
+ * Bark and wood tones
31
+ * Used for tree trunks, branches, fences, and structural elements.
32
+ * Warmer browns complement the green foliage.
33
+ */
34
+ export declare const bark: {
35
+ readonly darkBark: "#3d2817";
36
+ readonly bark: "#5d4037";
37
+ readonly warmBark: "#6B4423";
38
+ readonly lightBark: "#8b6914";
39
+ };
40
+ /**
41
+ * Earth and soil tones
42
+ * Ground elements, rocks, paths. Neutral grays for stone
43
+ * to contrast with warm browns of wood.
44
+ */
45
+ export declare const earth: {
46
+ readonly soil: "#3e2723";
47
+ readonly mud: "#5d4037";
48
+ readonly clay: "#8d6e63";
49
+ readonly sand: "#d7ccc8";
50
+ readonly stone: "#78716c";
51
+ readonly pebble: "#a8a29e";
52
+ readonly slate: "#57534e";
53
+ };
54
+ /**
55
+ * Cream and natural off-whites
56
+ * Special bark colors (aspen, birch) and neutral backgrounds.
57
+ * Birch has pure white bark with slight warmth.
58
+ * Aspen bark is cream/pale green undertone.
59
+ */
60
+ export declare const natural: {
61
+ readonly cream: "#fef9ef";
62
+ readonly aspenBark: "#e8e4d9";
63
+ readonly bone: "#e8e4dc";
64
+ readonly mushroom: "#d4c8be";
65
+ readonly birchWhite: "#f5f5f0";
66
+ };
67
+ /**
68
+ * Spring colors - fresh growth and renewal
69
+ * Bright yellow-greens of new leaves, soft pastels of early blooms.
70
+ * Organized dark-to-light for depth layering (darker = far, brighter = near).
71
+ * Spring feels lighter and more pastel than the saturated summer greens.
72
+ */
73
+ export declare const spring: {
74
+ readonly sprout: "#65a30d";
75
+ readonly newLeaf: "#84cc16";
76
+ readonly freshGreen: "#a3e635";
77
+ readonly budding: "#bef264";
78
+ readonly tender: "#d9f99d";
79
+ readonly clearSky: "#7dd3fc";
80
+ readonly softSky: "#bae6fd";
81
+ readonly buttercup: "#facc15";
82
+ readonly daffodil: "#fde047";
83
+ readonly crocus: "#a78bfa";
84
+ readonly lilac: "#c4b5fd";
85
+ readonly tulipPink: "#f9a8d4";
86
+ readonly tulipRed: "#fb7185";
87
+ readonly hillDeep: "#166534";
88
+ readonly hillMid: "#22c55e";
89
+ readonly hillNear: "#86efac";
90
+ readonly hillFront: "#bbf7d0";
91
+ };
92
+ /**
93
+ * Autumn/Fall colors
94
+ * Replaces greens for deciduous trees during autumn season.
95
+ * Organized warm-to-bright for depth layering (dark rust = far, bright gold = near).
96
+ * Aspen and birch use gold/honey for their signature golden fall color.
97
+ */
98
+ export declare const autumn: {
99
+ readonly rust: "#9a3412";
100
+ readonly ember: "#c2410c";
101
+ readonly pumpkin: "#ea580c";
102
+ readonly amber: "#d97706";
103
+ readonly gold: "#eab308";
104
+ readonly honey: "#facc15";
105
+ readonly straw: "#fde047";
106
+ };
107
+ /**
108
+ * Cherry blossom pinks (spring/summer)
109
+ * Used for cherry trees during spring bloom.
110
+ * In autumn, cherry trees switch to autumnReds to mimic real cherry leaf color change.
111
+ */
112
+ export declare const pinks: {
113
+ readonly deepPink: "#db2777";
114
+ readonly pink: "#ec4899";
115
+ readonly rose: "#f472b6";
116
+ readonly blush: "#f9a8d4";
117
+ readonly palePink: "#fbcfe8";
118
+ };
119
+ /**
120
+ * Autumn reds for cherry/maple foliage
121
+ * Cherry trees don't just lose pink - they turn red/crimson in fall.
122
+ * Also used for Japanese maple trees and other red autumn foliage.
123
+ */
124
+ export declare const autumnReds: {
125
+ readonly crimson: "#be123c";
126
+ readonly scarlet: "#e11d48";
127
+ readonly rose: "#f43f5e";
128
+ readonly coral: "#fb7185";
129
+ };
130
+ /**
131
+ * Winter colors - frost, snow, and ice
132
+ * Used for winter mode: snow-dusted evergreens, frozen landscape.
133
+ * Deciduous trees go bare, showing only branches.
134
+ */
135
+ export declare const winter: {
136
+ readonly snow: "#f8fafc";
137
+ readonly frost: "#e2e8f0";
138
+ readonly ice: "#cbd5e1";
139
+ readonly glacier: "#94a3b8";
140
+ readonly frostedPine: "#2d4a3e";
141
+ readonly winterGreen: "#3d5a4a";
142
+ readonly coldSpruce: "#4a6355";
143
+ readonly winterSky: "#e0f2fe";
144
+ readonly twilight: "#bfdbfe";
145
+ readonly overcast: "#cbd5e1";
146
+ readonly bareBranch: "#78716c";
147
+ readonly frostedBark: "#a8a29e";
148
+ readonly coldWood: "#57534e";
149
+ readonly hillDeep: "#475569";
150
+ readonly hillMid: "#7c8ca3";
151
+ readonly hillNear: "#c7d2e0";
152
+ readonly hillFront: "#f1f5f9";
153
+ };
154
+ /**
155
+ * Accent colors for specific components
156
+ * Each category gets 1-2 unique colors that don't fit the main palettes.
157
+ * These add visual interest without breaking the natural cohesion.
158
+ */
159
+ export declare const accents: {
160
+ /** Mushroom caps and details - fairy tale forest pops of color */
161
+ readonly mushroom: {
162
+ readonly redCap: "#dc2626";
163
+ readonly orangeCap: "#ea580c";
164
+ readonly brownCap: "#78350f";
165
+ readonly spots: "#fefefe";
166
+ readonly gill: "#fde8e8";
167
+ };
168
+ /** Wildflower accents - purple/violet break from green monotony */
169
+ readonly flower: {
170
+ readonly purple: "#a855f7";
171
+ readonly violet: "#8b5cf6";
172
+ readonly yellow: "#fbbf24";
173
+ readonly white: "#fefefe";
174
+ readonly lavender: "#c4b5fd";
175
+ };
176
+ /** Firefly bioluminescence - warm yellow-green glow */
177
+ readonly firefly: {
178
+ readonly glow: "#fef08a";
179
+ readonly warmGlow: "#fde047";
180
+ readonly body: "#365314";
181
+ };
182
+ /** Berry colors - rich and saturated */
183
+ readonly berry: {
184
+ readonly ripe: "#7c2d12";
185
+ readonly elderberry: "#581c87";
186
+ readonly red: "#b91c1c";
187
+ };
188
+ /** Water and pond colors - cool blue spectrum */
189
+ readonly water: {
190
+ readonly surface: "#7dd3fc";
191
+ readonly deep: "#0284c7";
192
+ readonly shallow: "#bae6fd";
193
+ readonly lily: "#bbf7d0";
194
+ };
195
+ /** Sky elements - time of day variations */
196
+ readonly sky: {
197
+ readonly dayLight: "#e0f2fe";
198
+ readonly dayMid: "#7dd3fc";
199
+ readonly sunset: "#fed7aa";
200
+ readonly night: "#1e293b";
201
+ readonly star: "#fefce8";
202
+ };
203
+ /** Bird colors - winter, spring, and year-round species */
204
+ readonly bird: {
205
+ readonly cardinalRed: "#dc2626";
206
+ readonly cardinalMask: "#1a1a1a";
207
+ readonly cardinalBeak: "#f97316";
208
+ readonly chickadeeCap: "#1a1a1a";
209
+ readonly chickadeeCheek: "#fafafa";
210
+ readonly chickadeeBody: "#6b7280";
211
+ readonly chickadeeBelly: "#fef3c7";
212
+ readonly robinBody: "#4a4a4a";
213
+ readonly robinWing: "#3a3a3a";
214
+ readonly robinWingDark: "#2a2a2a";
215
+ readonly robinBreast: "#c2410c";
216
+ readonly robinBreastLight: "#dc5015";
217
+ readonly robinBeak: "#f59e0b";
218
+ readonly bluebirdBody: "#3b82f6";
219
+ readonly bluebirdWing: "#2563eb";
220
+ readonly bluebirdBreast: "#ea580c";
221
+ };
222
+ };
223
+ /** Supported seasons for seasonal color switching */
224
+ export type Season = 'spring' | 'summer' | 'autumn' | 'winter';
225
+ /**
226
+ * Get appropriate foliage colors based on season
227
+ * Used by deciduous trees to switch from greens to seasonal palette.
228
+ * Spring uses bright yellow-greens of new growth.
229
+ * Autumn uses warm oranges and golds.
230
+ * In winter, returns frosted evergreen colors (for pines that keep needles).
231
+ * @example getSeasonalGreens('spring') // returns spring palette greens
232
+ * @example getSeasonalGreens('autumn') // returns autumn palette
233
+ */
234
+ export declare function getSeasonalGreens(season?: Season): {
235
+ readonly darkForest: "#0d4a1c";
236
+ readonly deepGreen: "#166534";
237
+ readonly grove: "#16a34a";
238
+ readonly meadow: "#22c55e";
239
+ readonly spring: "#4ade80";
240
+ readonly mint: "#86efac";
241
+ readonly pale: "#bbf7d0";
242
+ } | {
243
+ readonly rust: "#9a3412";
244
+ readonly ember: "#c2410c";
245
+ readonly pumpkin: "#ea580c";
246
+ readonly amber: "#d97706";
247
+ readonly gold: "#eab308";
248
+ readonly honey: "#facc15";
249
+ readonly straw: "#fde047";
250
+ } | {
251
+ darkForest: "#65a30d";
252
+ deepGreen: "#65a30d";
253
+ grove: "#84cc16";
254
+ meadow: "#a3e635";
255
+ spring: "#bef264";
256
+ mint: "#bef264";
257
+ pale: "#d9f99d";
258
+ } | {
259
+ darkForest: "#2d4a3e";
260
+ deepGreen: "#2d4a3e";
261
+ grove: "#3d5a4a";
262
+ meadow: "#3d5a4a";
263
+ spring: "#4a6355";
264
+ mint: "#4a6355";
265
+ pale: "#4a6355";
266
+ };
267
+ /**
268
+ * Spring cherry blossom colors - extra vibrant for peak bloom
269
+ * Spring is when cherry blossoms are at their most beautiful.
270
+ * Slightly brighter and more saturated than the standard pinks.
271
+ */
272
+ export declare const springBlossoms: {
273
+ readonly deepPink: "#ec4899";
274
+ readonly pink: "#f472b6";
275
+ readonly rose: "#f9a8d4";
276
+ readonly blush: "#fbcfe8";
277
+ readonly palePink: "#fce7f3";
278
+ };
279
+ /**
280
+ * Get cherry tree colors based on season
281
+ * Spring: Extra vibrant pink blossoms (peak bloom!)
282
+ * Summer: Standard pink blossoms
283
+ * Autumn: Turn red/crimson like real cherry leaves
284
+ * Winter: Bare (no blossoms)
285
+ * @example getCherryColors('spring') // returns springBlossoms (vibrant)
286
+ * @example getCherryColors('autumn') // returns autumnReds palette
287
+ */
288
+ export declare function getCherryColors(season?: Season): typeof pinks | typeof autumnReds | typeof springBlossoms | null;
289
+ /**
290
+ * Check if a tree should be bare (no foliage) based on season
291
+ * Deciduous trees lose leaves in winter.
292
+ */
293
+ export declare function isTreeBare(treeType: string, season: Season): boolean;
294
+ /**
295
+ * Pick a random color from a palette object
296
+ * Useful for adding natural variation to forests.
297
+ * @example pickRandom(greens) // returns random green like '#16a34a'
298
+ */
299
+ export declare function pickRandom<T extends Record<string, string>>(palette: T): string;
300
+ /**
301
+ * Pick a random color from a subset of palette keys
302
+ * More controlled randomization when you want specific options.
303
+ * @example pickFrom(greens, ['grove', 'meadow']) // only picks from those two
304
+ */
305
+ export declare function pickFrom<T extends Record<string, string>>(palette: T, keys: (keyof T)[]): string;
306
+ /**
307
+ * Midnight Bloom - the far vision
308
+ * A late-night tea café palette: deep plums, warm amber, soft golds.
309
+ * Used for the Midnight Bloom section of the roadmap and future theming.
310
+ */
311
+ export declare const midnightBloom: {
312
+ readonly deepPlum: "#581c87";
313
+ readonly purple: "#7c3aed";
314
+ readonly violet: "#8b5cf6";
315
+ readonly amber: "#f59e0b";
316
+ readonly warmCream: "#fef3c7";
317
+ readonly softGold: "#fcd34d";
318
+ };
319
+ export declare const naturePalette: {
320
+ readonly greens: {
321
+ readonly darkForest: "#0d4a1c";
322
+ readonly deepGreen: "#166534";
323
+ readonly grove: "#16a34a";
324
+ readonly meadow: "#22c55e";
325
+ readonly spring: "#4ade80";
326
+ readonly mint: "#86efac";
327
+ readonly pale: "#bbf7d0";
328
+ };
329
+ readonly bark: {
330
+ readonly darkBark: "#3d2817";
331
+ readonly bark: "#5d4037";
332
+ readonly warmBark: "#6B4423";
333
+ readonly lightBark: "#8b6914";
334
+ };
335
+ readonly earth: {
336
+ readonly soil: "#3e2723";
337
+ readonly mud: "#5d4037";
338
+ readonly clay: "#8d6e63";
339
+ readonly sand: "#d7ccc8";
340
+ readonly stone: "#78716c";
341
+ readonly pebble: "#a8a29e";
342
+ readonly slate: "#57534e";
343
+ };
344
+ readonly natural: {
345
+ readonly cream: "#fef9ef";
346
+ readonly aspenBark: "#e8e4d9";
347
+ readonly bone: "#e8e4dc";
348
+ readonly mushroom: "#d4c8be";
349
+ readonly birchWhite: "#f5f5f0";
350
+ };
351
+ readonly spring: {
352
+ readonly sprout: "#65a30d";
353
+ readonly newLeaf: "#84cc16";
354
+ readonly freshGreen: "#a3e635";
355
+ readonly budding: "#bef264";
356
+ readonly tender: "#d9f99d";
357
+ readonly clearSky: "#7dd3fc";
358
+ readonly softSky: "#bae6fd";
359
+ readonly buttercup: "#facc15";
360
+ readonly daffodil: "#fde047";
361
+ readonly crocus: "#a78bfa";
362
+ readonly lilac: "#c4b5fd";
363
+ readonly tulipPink: "#f9a8d4";
364
+ readonly tulipRed: "#fb7185";
365
+ readonly hillDeep: "#166534";
366
+ readonly hillMid: "#22c55e";
367
+ readonly hillNear: "#86efac";
368
+ readonly hillFront: "#bbf7d0";
369
+ };
370
+ readonly springBlossoms: {
371
+ readonly deepPink: "#ec4899";
372
+ readonly pink: "#f472b6";
373
+ readonly rose: "#f9a8d4";
374
+ readonly blush: "#fbcfe8";
375
+ readonly palePink: "#fce7f3";
376
+ };
377
+ readonly autumn: {
378
+ readonly rust: "#9a3412";
379
+ readonly ember: "#c2410c";
380
+ readonly pumpkin: "#ea580c";
381
+ readonly amber: "#d97706";
382
+ readonly gold: "#eab308";
383
+ readonly honey: "#facc15";
384
+ readonly straw: "#fde047";
385
+ };
386
+ readonly pinks: {
387
+ readonly deepPink: "#db2777";
388
+ readonly pink: "#ec4899";
389
+ readonly rose: "#f472b6";
390
+ readonly blush: "#f9a8d4";
391
+ readonly palePink: "#fbcfe8";
392
+ };
393
+ readonly autumnReds: {
394
+ readonly crimson: "#be123c";
395
+ readonly scarlet: "#e11d48";
396
+ readonly rose: "#f43f5e";
397
+ readonly coral: "#fb7185";
398
+ };
399
+ readonly winter: {
400
+ readonly snow: "#f8fafc";
401
+ readonly frost: "#e2e8f0";
402
+ readonly ice: "#cbd5e1";
403
+ readonly glacier: "#94a3b8";
404
+ readonly frostedPine: "#2d4a3e";
405
+ readonly winterGreen: "#3d5a4a";
406
+ readonly coldSpruce: "#4a6355";
407
+ readonly winterSky: "#e0f2fe";
408
+ readonly twilight: "#bfdbfe";
409
+ readonly overcast: "#cbd5e1";
410
+ readonly bareBranch: "#78716c";
411
+ readonly frostedBark: "#a8a29e";
412
+ readonly coldWood: "#57534e";
413
+ readonly hillDeep: "#475569";
414
+ readonly hillMid: "#7c8ca3";
415
+ readonly hillNear: "#c7d2e0";
416
+ readonly hillFront: "#f1f5f9";
417
+ };
418
+ readonly accents: {
419
+ /** Mushroom caps and details - fairy tale forest pops of color */
420
+ readonly mushroom: {
421
+ readonly redCap: "#dc2626";
422
+ readonly orangeCap: "#ea580c";
423
+ readonly brownCap: "#78350f";
424
+ readonly spots: "#fefefe";
425
+ readonly gill: "#fde8e8";
426
+ };
427
+ /** Wildflower accents - purple/violet break from green monotony */
428
+ readonly flower: {
429
+ readonly purple: "#a855f7";
430
+ readonly violet: "#8b5cf6";
431
+ readonly yellow: "#fbbf24";
432
+ readonly white: "#fefefe";
433
+ readonly lavender: "#c4b5fd";
434
+ };
435
+ /** Firefly bioluminescence - warm yellow-green glow */
436
+ readonly firefly: {
437
+ readonly glow: "#fef08a";
438
+ readonly warmGlow: "#fde047";
439
+ readonly body: "#365314";
440
+ };
441
+ /** Berry colors - rich and saturated */
442
+ readonly berry: {
443
+ readonly ripe: "#7c2d12";
444
+ readonly elderberry: "#581c87";
445
+ readonly red: "#b91c1c";
446
+ };
447
+ /** Water and pond colors - cool blue spectrum */
448
+ readonly water: {
449
+ readonly surface: "#7dd3fc";
450
+ readonly deep: "#0284c7";
451
+ readonly shallow: "#bae6fd";
452
+ readonly lily: "#bbf7d0";
453
+ };
454
+ /** Sky elements - time of day variations */
455
+ readonly sky: {
456
+ readonly dayLight: "#e0f2fe";
457
+ readonly dayMid: "#7dd3fc";
458
+ readonly sunset: "#fed7aa";
459
+ readonly night: "#1e293b";
460
+ readonly star: "#fefce8";
461
+ };
462
+ /** Bird colors - winter, spring, and year-round species */
463
+ readonly bird: {
464
+ readonly cardinalRed: "#dc2626";
465
+ readonly cardinalMask: "#1a1a1a";
466
+ readonly cardinalBeak: "#f97316";
467
+ readonly chickadeeCap: "#1a1a1a";
468
+ readonly chickadeeCheek: "#fafafa";
469
+ readonly chickadeeBody: "#6b7280";
470
+ readonly chickadeeBelly: "#fef3c7";
471
+ readonly robinBody: "#4a4a4a";
472
+ readonly robinWing: "#3a3a3a";
473
+ readonly robinWingDark: "#2a2a2a";
474
+ readonly robinBreast: "#c2410c";
475
+ readonly robinBreastLight: "#dc5015";
476
+ readonly robinBeak: "#f59e0b";
477
+ readonly bluebirdBody: "#3b82f6";
478
+ readonly bluebirdWing: "#2563eb";
479
+ readonly bluebirdBreast: "#ea580c";
480
+ };
481
+ };
482
+ readonly midnightBloom: {
483
+ readonly deepPlum: "#581c87";
484
+ readonly purple: "#7c3aed";
485
+ readonly violet: "#8b5cf6";
486
+ readonly amber: "#f59e0b";
487
+ readonly warmCream: "#fef3c7";
488
+ readonly softGold: "#fcd34d";
489
+ };
490
+ };
491
+ export default naturePalette;