@autumnsgrove/groveengine 0.7.0 → 0.8.5
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.
- package/dist/components/OnboardingChecklist.svelte +2 -2
- package/dist/components/WispButton.svelte +83 -0
- package/dist/components/WispButton.svelte.d.ts +49 -0
- package/dist/components/WispPanel.svelte +1093 -0
- package/dist/components/WispPanel.svelte.d.ts +49 -0
- package/dist/components/custom/TableOfContents.svelte +12 -1
- package/dist/components/quota/UpgradePrompt.svelte +1 -0
- package/dist/config/wisp.d.ts +145 -0
- package/dist/config/wisp.js +175 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -0
- package/dist/server/inference-client.d.ts +139 -0
- package/dist/server/inference-client.js +294 -0
- package/dist/ui/components/content/RoadmapPreview.svelte +91 -0
- package/dist/ui/components/content/RoadmapPreview.svelte.d.ts +36 -0
- package/dist/ui/components/content/index.d.ts +1 -0
- package/dist/ui/components/content/index.js +1 -0
- package/dist/ui/components/nature/Logo.svelte +260 -0
- package/dist/ui/components/nature/Logo.svelte.d.ts +14 -0
- package/dist/ui/components/nature/botanical/Acorn.svelte +48 -0
- package/dist/ui/components/nature/botanical/Acorn.svelte.d.ts +8 -0
- package/dist/ui/components/nature/botanical/Berry.svelte +67 -0
- package/dist/ui/components/nature/botanical/Berry.svelte.d.ts +8 -0
- package/dist/ui/components/nature/botanical/DandelionPuff.svelte +98 -0
- package/dist/ui/components/nature/botanical/DandelionPuff.svelte.d.ts +8 -0
- package/dist/ui/components/nature/botanical/FallingLeavesLayer.svelte +170 -0
- package/dist/ui/components/nature/botanical/FallingLeavesLayer.svelte.d.ts +35 -0
- package/dist/ui/components/nature/botanical/FallingPetalsLayer.svelte +174 -0
- package/dist/ui/components/nature/botanical/FallingPetalsLayer.svelte.d.ts +25 -0
- package/dist/ui/components/nature/botanical/Leaf.svelte +77 -0
- package/dist/ui/components/nature/botanical/Leaf.svelte.d.ts +10 -0
- package/dist/ui/components/nature/botanical/LeafFalling.svelte +186 -0
- package/dist/ui/components/nature/botanical/LeafFalling.svelte.d.ts +22 -0
- package/dist/ui/components/nature/botanical/PetalFalling.svelte +266 -0
- package/dist/ui/components/nature/botanical/PetalFalling.svelte.d.ts +25 -0
- package/dist/ui/components/nature/botanical/PineCone.svelte +61 -0
- package/dist/ui/components/nature/botanical/PineCone.svelte.d.ts +7 -0
- package/dist/ui/components/nature/botanical/Vine.svelte +102 -0
- package/dist/ui/components/nature/botanical/Vine.svelte.d.ts +11 -0
- package/dist/ui/components/nature/botanical/index.d.ts +10 -0
- package/dist/ui/components/nature/botanical/index.js +11 -0
- package/dist/ui/components/nature/creatures/Bee.svelte +78 -0
- package/dist/ui/components/nature/creatures/Bee.svelte.d.ts +9 -0
- package/dist/ui/components/nature/creatures/Bird.svelte +94 -0
- package/dist/ui/components/nature/creatures/Bird.svelte.d.ts +11 -0
- package/dist/ui/components/nature/creatures/BirdFlying.svelte +83 -0
- package/dist/ui/components/nature/creatures/BirdFlying.svelte.d.ts +9 -0
- package/dist/ui/components/nature/creatures/Bluebird.svelte +95 -0
- package/dist/ui/components/nature/creatures/Bluebird.svelte.d.ts +12 -0
- package/dist/ui/components/nature/creatures/Butterfly.svelte +87 -0
- package/dist/ui/components/nature/creatures/Butterfly.svelte.d.ts +9 -0
- package/dist/ui/components/nature/creatures/Cardinal.svelte +95 -0
- package/dist/ui/components/nature/creatures/Cardinal.svelte.d.ts +12 -0
- package/dist/ui/components/nature/creatures/Chickadee.svelte +97 -0
- package/dist/ui/components/nature/creatures/Chickadee.svelte.d.ts +12 -0
- package/dist/ui/components/nature/creatures/Deer.svelte +95 -0
- package/dist/ui/components/nature/creatures/Deer.svelte.d.ts +9 -0
- package/dist/ui/components/nature/creatures/Firefly.svelte +111 -0
- package/dist/ui/components/nature/creatures/Firefly.svelte.d.ts +10 -0
- package/dist/ui/components/nature/creatures/Owl.svelte +91 -0
- package/dist/ui/components/nature/creatures/Owl.svelte.d.ts +9 -0
- package/dist/ui/components/nature/creatures/Rabbit.svelte +90 -0
- package/dist/ui/components/nature/creatures/Rabbit.svelte.d.ts +9 -0
- package/dist/ui/components/nature/creatures/Robin.svelte +98 -0
- package/dist/ui/components/nature/creatures/Robin.svelte.d.ts +12 -0
- package/dist/ui/components/nature/creatures/Squirrel.svelte +97 -0
- package/dist/ui/components/nature/creatures/Squirrel.svelte.d.ts +9 -0
- package/dist/ui/components/nature/creatures/index.d.ts +13 -0
- package/dist/ui/components/nature/creatures/index.js +14 -0
- package/dist/ui/components/nature/ground/Bush.svelte +57 -0
- package/dist/ui/components/nature/ground/Bush.svelte.d.ts +10 -0
- package/dist/ui/components/nature/ground/Crocus.svelte +83 -0
- package/dist/ui/components/nature/ground/Crocus.svelte.d.ts +12 -0
- package/dist/ui/components/nature/ground/Daffodil.svelte +75 -0
- package/dist/ui/components/nature/ground/Daffodil.svelte.d.ts +11 -0
- package/dist/ui/components/nature/ground/Fern.svelte +72 -0
- package/dist/ui/components/nature/ground/Fern.svelte.d.ts +10 -0
- package/dist/ui/components/nature/ground/FlowerWild.svelte +60 -0
- package/dist/ui/components/nature/ground/FlowerWild.svelte.d.ts +10 -0
- package/dist/ui/components/nature/ground/GrassTuft.svelte +49 -0
- package/dist/ui/components/nature/ground/GrassTuft.svelte.d.ts +10 -0
- package/dist/ui/components/nature/ground/Log.svelte +42 -0
- package/dist/ui/components/nature/ground/Log.svelte.d.ts +7 -0
- package/dist/ui/components/nature/ground/Mushroom.svelte +48 -0
- package/dist/ui/components/nature/ground/Mushroom.svelte.d.ts +9 -0
- package/dist/ui/components/nature/ground/MushroomCluster.svelte +41 -0
- package/dist/ui/components/nature/ground/MushroomCluster.svelte.d.ts +8 -0
- package/dist/ui/components/nature/ground/Rock.svelte +59 -0
- package/dist/ui/components/nature/ground/Rock.svelte.d.ts +8 -0
- package/dist/ui/components/nature/ground/Stump.svelte +44 -0
- package/dist/ui/components/nature/ground/Stump.svelte.d.ts +8 -0
- package/dist/ui/components/nature/ground/Tulip.svelte +79 -0
- package/dist/ui/components/nature/ground/Tulip.svelte.d.ts +11 -0
- package/dist/ui/components/nature/ground/index.d.ts +12 -0
- package/dist/ui/components/nature/ground/index.js +13 -0
- package/dist/ui/components/nature/index.d.ts +28 -0
- package/dist/ui/components/nature/index.js +38 -0
- package/dist/ui/components/nature/palette.d.ts +602 -0
- package/dist/ui/components/nature/palette.js +472 -0
- package/dist/ui/components/nature/sky/Cloud.svelte +122 -0
- package/dist/ui/components/nature/sky/Cloud.svelte.d.ts +11 -0
- package/dist/ui/components/nature/sky/CloudWispy.svelte +79 -0
- package/dist/ui/components/nature/sky/CloudWispy.svelte.d.ts +9 -0
- package/dist/ui/components/nature/sky/Moon.svelte +60 -0
- package/dist/ui/components/nature/sky/Moon.svelte.d.ts +9 -0
- package/dist/ui/components/nature/sky/Rainbow.svelte +101 -0
- package/dist/ui/components/nature/sky/Rainbow.svelte.d.ts +8 -0
- package/dist/ui/components/nature/sky/Star.svelte +84 -0
- package/dist/ui/components/nature/sky/Star.svelte.d.ts +10 -0
- package/dist/ui/components/nature/sky/StarCluster.svelte +85 -0
- package/dist/ui/components/nature/sky/StarCluster.svelte.d.ts +9 -0
- package/dist/ui/components/nature/sky/StarShooting.svelte +90 -0
- package/dist/ui/components/nature/sky/StarShooting.svelte.d.ts +9 -0
- package/dist/ui/components/nature/sky/Sun.svelte +70 -0
- package/dist/ui/components/nature/sky/Sun.svelte.d.ts +9 -0
- package/dist/ui/components/nature/sky/index.d.ts +8 -0
- package/dist/ui/components/nature/sky/index.js +9 -0
- package/dist/ui/components/nature/structural/Birdhouse.svelte +53 -0
- package/dist/ui/components/nature/structural/Birdhouse.svelte.d.ts +8 -0
- package/dist/ui/components/nature/structural/Bridge.svelte +65 -0
- package/dist/ui/components/nature/structural/Bridge.svelte.d.ts +7 -0
- package/dist/ui/components/nature/structural/FencePost.svelte +54 -0
- package/dist/ui/components/nature/structural/FencePost.svelte.d.ts +8 -0
- package/dist/ui/components/nature/structural/GardenGate.svelte +70 -0
- package/dist/ui/components/nature/structural/GardenGate.svelte.d.ts +8 -0
- package/dist/ui/components/nature/structural/Lantern.svelte +113 -0
- package/dist/ui/components/nature/structural/Lantern.svelte.d.ts +10 -0
- package/dist/ui/components/nature/structural/Lattice.svelte +89 -0
- package/dist/ui/components/nature/structural/Lattice.svelte.d.ts +8 -0
- package/dist/ui/components/nature/structural/LatticeWithVine.svelte +89 -0
- package/dist/ui/components/nature/structural/LatticeWithVine.svelte.d.ts +11 -0
- package/dist/ui/components/nature/structural/StonePath.svelte +48 -0
- package/dist/ui/components/nature/structural/StonePath.svelte.d.ts +7 -0
- package/dist/ui/components/nature/structural/index.d.ts +8 -0
- package/dist/ui/components/nature/structural/index.js +9 -0
- package/dist/ui/components/nature/trees/TreeAspen.svelte +163 -0
- package/dist/ui/components/nature/trees/TreeAspen.svelte.d.ts +11 -0
- package/dist/ui/components/nature/trees/TreeBirch.svelte +186 -0
- package/dist/ui/components/nature/trees/TreeBirch.svelte.d.ts +11 -0
- package/dist/ui/components/nature/trees/TreeCherry.svelte +108 -0
- package/dist/ui/components/nature/trees/TreeCherry.svelte.d.ts +11 -0
- package/dist/ui/components/nature/trees/TreePine.svelte +79 -0
- package/dist/ui/components/nature/trees/TreePine.svelte.d.ts +11 -0
- package/dist/ui/components/nature/trees/index.d.ts +4 -0
- package/dist/ui/components/nature/trees/index.js +5 -0
- package/dist/ui/components/nature/water/LilyPad.svelte +99 -0
- package/dist/ui/components/nature/water/LilyPad.svelte.d.ts +10 -0
- package/dist/ui/components/nature/water/Pond.svelte +104 -0
- package/dist/ui/components/nature/water/Pond.svelte.d.ts +8 -0
- package/dist/ui/components/nature/water/Reeds.svelte +85 -0
- package/dist/ui/components/nature/water/Reeds.svelte.d.ts +11 -0
- package/dist/ui/components/nature/water/Stream.svelte +98 -0
- package/dist/ui/components/nature/water/Stream.svelte.d.ts +8 -0
- package/dist/ui/components/nature/water/index.d.ts +4 -0
- package/dist/ui/components/nature/water/index.js +5 -0
- package/dist/ui/components/nature/weather/SnowfallLayer.svelte +175 -0
- package/dist/ui/components/nature/weather/SnowfallLayer.svelte.d.ts +25 -0
- package/dist/ui/components/nature/weather/Snowflake.svelte +99 -0
- package/dist/ui/components/nature/weather/Snowflake.svelte.d.ts +11 -0
- package/dist/ui/components/nature/weather/SnowflakeFalling.svelte +162 -0
- package/dist/ui/components/nature/weather/SnowflakeFalling.svelte.d.ts +23 -0
- package/dist/ui/components/nature/weather/index.d.ts +3 -0
- package/dist/ui/components/nature/weather/index.js +4 -0
- package/dist/ui/components/primitives/textarea/textarea.svelte +1 -1
- package/dist/ui/components/typography/Alagard.svelte +17 -0
- package/dist/ui/components/typography/Alagard.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Atkinson.svelte +17 -0
- package/dist/ui/components/typography/Atkinson.svelte.d.ts +10 -0
- package/dist/ui/components/typography/BodoniModa.svelte +17 -0
- package/dist/ui/components/typography/BodoniModa.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Calistoga.svelte +17 -0
- package/dist/ui/components/typography/Calistoga.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Caveat.svelte +17 -0
- package/dist/ui/components/typography/Caveat.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Cormorant.svelte +17 -0
- package/dist/ui/components/typography/Cormorant.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Cozette.svelte +17 -0
- package/dist/ui/components/typography/Cozette.svelte.d.ts +10 -0
- package/dist/ui/components/typography/EBGaramond.svelte +17 -0
- package/dist/ui/components/typography/EBGaramond.svelte.d.ts +10 -0
- package/dist/ui/components/typography/FontProvider.svelte +98 -0
- package/dist/ui/components/typography/FontProvider.svelte.d.ts +17 -0
- package/dist/ui/components/typography/Fraunces.svelte +17 -0
- package/dist/ui/components/typography/Fraunces.svelte.d.ts +10 -0
- package/dist/ui/components/typography/IBMPlexMono.svelte +17 -0
- package/dist/ui/components/typography/IBMPlexMono.svelte.d.ts +10 -0
- package/dist/ui/components/typography/InstrumentSans.svelte +17 -0
- package/dist/ui/components/typography/InstrumentSans.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Lexend.svelte +17 -0
- package/dist/ui/components/typography/Lexend.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Lora.svelte +17 -0
- package/dist/ui/components/typography/Lora.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Luciole.svelte +17 -0
- package/dist/ui/components/typography/Luciole.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Manrope.svelte +17 -0
- package/dist/ui/components/typography/Manrope.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Merriweather.svelte +17 -0
- package/dist/ui/components/typography/Merriweather.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Nunito.svelte +17 -0
- package/dist/ui/components/typography/Nunito.svelte.d.ts +10 -0
- package/dist/ui/components/typography/OpenDyslexic.svelte +17 -0
- package/dist/ui/components/typography/OpenDyslexic.svelte.d.ts +10 -0
- package/dist/ui/components/typography/PlusJakartaSans.svelte +17 -0
- package/dist/ui/components/typography/PlusJakartaSans.svelte.d.ts +10 -0
- package/dist/ui/components/typography/Quicksand.svelte +17 -0
- package/dist/ui/components/typography/Quicksand.svelte.d.ts +10 -0
- package/dist/ui/components/typography/README.md +153 -0
- package/dist/ui/components/typography/index.d.ts +23 -0
- package/dist/ui/components/typography/index.js +42 -0
- package/dist/ui/components/ui/GlassCarousel.svelte +446 -0
- package/dist/ui/components/ui/GlassCarousel.svelte.d.ts +57 -0
- package/dist/ui/components/ui/GlassConfirmDialog.svelte +2 -1
- package/dist/ui/components/ui/GlassLogo.svelte +423 -0
- package/dist/ui/components/ui/GlassLogo.svelte.d.ts +23 -0
- package/dist/ui/components/ui/GlassNavbar.svelte +120 -0
- package/dist/ui/components/ui/GlassNavbar.svelte.d.ts +42 -0
- package/dist/ui/components/ui/GlassOverlay.svelte +1 -1
- package/dist/ui/components/ui/Logo.svelte +47 -52
- package/dist/ui/components/ui/Logo.svelte.d.ts +4 -3
- package/dist/ui/components/ui/index.d.ts +3 -0
- package/dist/ui/components/ui/index.js +3 -0
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/index.js +2 -0
- package/dist/ui/styles/grove.css +15 -1
- package/dist/ui/vineyard/index.d.ts +9 -0
- package/dist/ui/vineyard/index.js +8 -0
- package/dist/utils/csrf.js +5 -2
- package/dist/utils/readability.d.ts +89 -0
- package/dist/utils/readability.js +204 -0
- package/package.json +27 -1
|
@@ -0,0 +1,602 @@
|
|
|
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 foliage - fresh yellow-green growth
|
|
69
|
+
* The distinctive bright yellow-green of new spring leaves.
|
|
70
|
+
* Organized dark-to-light for depth layering.
|
|
71
|
+
*/
|
|
72
|
+
export declare const springFoliage: {
|
|
73
|
+
readonly sprout: "#65a30d";
|
|
74
|
+
readonly newLeaf: "#84cc16";
|
|
75
|
+
readonly freshGreen: "#a3e635";
|
|
76
|
+
readonly budding: "#bef264";
|
|
77
|
+
readonly tender: "#d9f99d";
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Spring sky colors
|
|
81
|
+
* Clear, bright spring atmosphere.
|
|
82
|
+
*/
|
|
83
|
+
export declare const springSky: {
|
|
84
|
+
readonly clear: "#7dd3fc";
|
|
85
|
+
readonly soft: "#bae6fd";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Wildflowers - spring and general meadow flowers
|
|
89
|
+
* Unified wildflower palette for all seasons.
|
|
90
|
+
* Used for spring wildflowers and general meadow accents.
|
|
91
|
+
*/
|
|
92
|
+
export declare const wildflowers: {
|
|
93
|
+
readonly buttercup: "#facc15";
|
|
94
|
+
readonly daffodil: "#fde047";
|
|
95
|
+
readonly crocus: "#a78bfa";
|
|
96
|
+
readonly violet: "#8b5cf6";
|
|
97
|
+
readonly purple: "#a855f7";
|
|
98
|
+
readonly lavender: "#c4b5fd";
|
|
99
|
+
readonly tulipPink: "#f9a8d4";
|
|
100
|
+
readonly tulipRed: "#fb7185";
|
|
101
|
+
readonly white: "#fefefe";
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Cherry blossoms - standard summer/default
|
|
105
|
+
* Used for cherry trees during summer.
|
|
106
|
+
* Pink blooms from dense to pale.
|
|
107
|
+
*/
|
|
108
|
+
export declare const cherryBlossoms: {
|
|
109
|
+
readonly deep: "#db2777";
|
|
110
|
+
readonly standard: "#ec4899";
|
|
111
|
+
readonly light: "#f472b6";
|
|
112
|
+
readonly pale: "#f9a8d4";
|
|
113
|
+
readonly falling: "#fbcfe8";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Cherry blossoms peak bloom - vibrant spring version
|
|
117
|
+
* Extra saturated for spring when cherry blossoms are at their most beautiful.
|
|
118
|
+
* One shade brighter than standard cherryBlossoms.
|
|
119
|
+
*/
|
|
120
|
+
export declare const cherryBlossomsPeak: {
|
|
121
|
+
readonly deep: "#ec4899";
|
|
122
|
+
readonly standard: "#f472b6";
|
|
123
|
+
readonly light: "#f9a8d4";
|
|
124
|
+
readonly pale: "#fbcfe8";
|
|
125
|
+
readonly falling: "#fce7f3";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* Autumn/Fall foliage colors
|
|
129
|
+
* Replaces greens for deciduous trees during autumn season.
|
|
130
|
+
* Organized warm-to-bright for depth layering (dark rust = far, bright gold = near).
|
|
131
|
+
* Aspen and birch use gold/honey for their signature golden fall color.
|
|
132
|
+
*/
|
|
133
|
+
export declare const autumn: {
|
|
134
|
+
readonly rust: "#9a3412";
|
|
135
|
+
readonly ember: "#c2410c";
|
|
136
|
+
readonly pumpkin: "#ea580c";
|
|
137
|
+
readonly amber: "#d97706";
|
|
138
|
+
readonly gold: "#eab308";
|
|
139
|
+
readonly honey: "#facc15";
|
|
140
|
+
readonly straw: "#fde047";
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Autumn reds for cherry/maple foliage
|
|
144
|
+
* Cherry trees don't just lose pink - they turn red/crimson in fall.
|
|
145
|
+
* Also used for Japanese maple trees and other red autumn foliage.
|
|
146
|
+
*/
|
|
147
|
+
export declare const autumnReds: {
|
|
148
|
+
readonly crimson: "#be123c";
|
|
149
|
+
readonly scarlet: "#e11d48";
|
|
150
|
+
readonly rose: "#f43f5e";
|
|
151
|
+
readonly coral: "#fb7185";
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Winter colors - frost, snow, and ice
|
|
155
|
+
* Used for winter mode: snow-dusted evergreens, frozen landscape.
|
|
156
|
+
* Deciduous trees go bare, showing only branches.
|
|
157
|
+
*/
|
|
158
|
+
export declare const winter: {
|
|
159
|
+
readonly snow: "#f8fafc";
|
|
160
|
+
readonly frost: "#e2e8f0";
|
|
161
|
+
readonly ice: "#cbd5e1";
|
|
162
|
+
readonly glacier: "#94a3b8";
|
|
163
|
+
readonly frostedPine: "#2d4a3e";
|
|
164
|
+
readonly winterGreen: "#3d5a4a";
|
|
165
|
+
readonly coldSpruce: "#4a6355";
|
|
166
|
+
readonly winterSky: "#e0f2fe";
|
|
167
|
+
readonly twilight: "#bfdbfe";
|
|
168
|
+
readonly overcast: "#cbd5e1";
|
|
169
|
+
readonly bareBranch: "#78716c";
|
|
170
|
+
readonly frostedBark: "#a8a29e";
|
|
171
|
+
readonly coldWood: "#57534e";
|
|
172
|
+
readonly hillDeep: "#475569";
|
|
173
|
+
readonly hillMid: "#7c8ca3";
|
|
174
|
+
readonly hillNear: "#c7d2e0";
|
|
175
|
+
readonly hillFront: "#f1f5f9";
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* Accent colors for specific components
|
|
179
|
+
* Each category gets unique colors that don't fit the main palettes.
|
|
180
|
+
* These add visual interest without breaking the natural cohesion.
|
|
181
|
+
*/
|
|
182
|
+
export declare const accents: {
|
|
183
|
+
/** Mushroom caps and details - fairy tale forest pops of color */
|
|
184
|
+
readonly mushroom: {
|
|
185
|
+
readonly redCap: "#dc2626";
|
|
186
|
+
readonly orangeCap: "#ea580c";
|
|
187
|
+
readonly brownCap: "#78350f";
|
|
188
|
+
readonly spots: "#fefefe";
|
|
189
|
+
readonly gill: "#fde8e8";
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* @deprecated Use the top-level `wildflowers` export instead. Will be removed in v1.0.
|
|
193
|
+
*
|
|
194
|
+
* Historical context: Flower colors were originally split between two places:
|
|
195
|
+
* - `spring` palette had wildflower accents (crocus, lilac, tulips, buttercup, daffodil)
|
|
196
|
+
* - `accents.flower` had generic flower colors (purple, violet, yellow, white, lavender)
|
|
197
|
+
*
|
|
198
|
+
* This caused confusion and duplicate values. Now unified in the top-level `wildflowers`
|
|
199
|
+
* palette which contains all meadow flower colors in one place.
|
|
200
|
+
*/
|
|
201
|
+
readonly flower: {
|
|
202
|
+
readonly purple: "#a855f7";
|
|
203
|
+
readonly violet: "#8b5cf6";
|
|
204
|
+
readonly yellow: "#facc15";
|
|
205
|
+
readonly white: "#fefefe";
|
|
206
|
+
readonly lavender: "#c4b5fd";
|
|
207
|
+
};
|
|
208
|
+
/** Firefly bioluminescence - warm yellow-green glow */
|
|
209
|
+
readonly firefly: {
|
|
210
|
+
readonly glow: "#fef08a";
|
|
211
|
+
readonly warmGlow: "#fde047";
|
|
212
|
+
readonly body: "#365314";
|
|
213
|
+
};
|
|
214
|
+
/** Berry colors - rich and saturated */
|
|
215
|
+
readonly berry: {
|
|
216
|
+
readonly ripe: "#7c2d12";
|
|
217
|
+
readonly elderberry: "#581c87";
|
|
218
|
+
readonly red: "#b91c1c";
|
|
219
|
+
};
|
|
220
|
+
/** Water and pond colors - cool blue spectrum */
|
|
221
|
+
readonly water: {
|
|
222
|
+
readonly surface: "#7dd3fc";
|
|
223
|
+
readonly deep: "#0284c7";
|
|
224
|
+
readonly shallow: "#bae6fd";
|
|
225
|
+
readonly lily: "#bbf7d0";
|
|
226
|
+
};
|
|
227
|
+
/** Sky elements - time of day variations */
|
|
228
|
+
readonly sky: {
|
|
229
|
+
readonly dayLight: "#e0f2fe";
|
|
230
|
+
readonly dayMid: "#7dd3fc";
|
|
231
|
+
readonly sunset: "#fed7aa";
|
|
232
|
+
readonly night: "#1e293b";
|
|
233
|
+
readonly star: "#fefce8";
|
|
234
|
+
};
|
|
235
|
+
/** Bird colors - winter, spring, and year-round species */
|
|
236
|
+
readonly bird: {
|
|
237
|
+
readonly cardinalRed: "#dc2626";
|
|
238
|
+
readonly cardinalMask: "#1a1a1a";
|
|
239
|
+
readonly cardinalBeak: "#f97316";
|
|
240
|
+
readonly chickadeeCap: "#1a1a1a";
|
|
241
|
+
readonly chickadeeCheek: "#fafafa";
|
|
242
|
+
readonly chickadeeBody: "#6b7280";
|
|
243
|
+
readonly chickadeeBelly: "#fef3c7";
|
|
244
|
+
readonly robinBody: "#4a4a4a";
|
|
245
|
+
readonly robinWing: "#3a3a3a";
|
|
246
|
+
readonly robinWingDark: "#2a2a2a";
|
|
247
|
+
readonly robinBreast: "#c2410c";
|
|
248
|
+
readonly robinBreastLight: "#dc5015";
|
|
249
|
+
readonly robinBeak: "#f59e0b";
|
|
250
|
+
readonly bluebirdBody: "#3b82f6";
|
|
251
|
+
readonly bluebirdWing: "#2563eb";
|
|
252
|
+
readonly bluebirdBreast: "#ea580c";
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* Midnight Bloom - the far vision
|
|
257
|
+
* A late-night tea café palette: deep plums, warm amber, soft golds.
|
|
258
|
+
* Used for the Midnight Bloom section of the roadmap and future theming.
|
|
259
|
+
*/
|
|
260
|
+
export declare const midnightBloom: {
|
|
261
|
+
readonly deepPlum: "#581c87";
|
|
262
|
+
readonly purple: "#7c3aed";
|
|
263
|
+
readonly violet: "#8b5cf6";
|
|
264
|
+
readonly amber: "#f59e0b";
|
|
265
|
+
readonly warmCream: "#fef3c7";
|
|
266
|
+
readonly softGold: "#fcd34d";
|
|
267
|
+
};
|
|
268
|
+
/** Supported seasons for seasonal color switching */
|
|
269
|
+
export type Season = 'spring' | 'summer' | 'autumn' | 'winter';
|
|
270
|
+
/**
|
|
271
|
+
* Get appropriate foliage colors based on season
|
|
272
|
+
* Used by deciduous trees to switch from greens to seasonal palette.
|
|
273
|
+
* Spring uses bright yellow-greens of new growth.
|
|
274
|
+
* Autumn uses warm oranges and golds.
|
|
275
|
+
* In winter, returns frosted evergreen colors (for pines that keep needles).
|
|
276
|
+
* @example getSeasonalGreens('spring') // returns spring foliage mapped to greens structure
|
|
277
|
+
* @example getSeasonalGreens('autumn') // returns autumn palette
|
|
278
|
+
*/
|
|
279
|
+
export declare function getSeasonalGreens(season?: Season): {
|
|
280
|
+
readonly darkForest: "#0d4a1c";
|
|
281
|
+
readonly deepGreen: "#166534";
|
|
282
|
+
readonly grove: "#16a34a";
|
|
283
|
+
readonly meadow: "#22c55e";
|
|
284
|
+
readonly spring: "#4ade80";
|
|
285
|
+
readonly mint: "#86efac";
|
|
286
|
+
readonly pale: "#bbf7d0";
|
|
287
|
+
} | {
|
|
288
|
+
readonly rust: "#9a3412";
|
|
289
|
+
readonly ember: "#c2410c";
|
|
290
|
+
readonly pumpkin: "#ea580c";
|
|
291
|
+
readonly amber: "#d97706";
|
|
292
|
+
readonly gold: "#eab308";
|
|
293
|
+
readonly honey: "#facc15";
|
|
294
|
+
readonly straw: "#fde047";
|
|
295
|
+
} | {
|
|
296
|
+
darkForest: "#65a30d";
|
|
297
|
+
deepGreen: "#65a30d";
|
|
298
|
+
grove: "#84cc16";
|
|
299
|
+
meadow: "#a3e635";
|
|
300
|
+
spring: "#bef264";
|
|
301
|
+
mint: "#bef264";
|
|
302
|
+
pale: "#d9f99d";
|
|
303
|
+
} | {
|
|
304
|
+
darkForest: "#2d4a3e";
|
|
305
|
+
deepGreen: "#2d4a3e";
|
|
306
|
+
grove: "#3d5a4a";
|
|
307
|
+
meadow: "#3d5a4a";
|
|
308
|
+
spring: "#4a6355";
|
|
309
|
+
mint: "#4a6355";
|
|
310
|
+
pale: "#4a6355";
|
|
311
|
+
};
|
|
312
|
+
/**
|
|
313
|
+
* Get cherry tree colors based on season
|
|
314
|
+
* Spring: Extra vibrant pink blossoms (peak bloom!)
|
|
315
|
+
* Summer: Standard pink blossoms
|
|
316
|
+
* Autumn: Turn red/crimson like real cherry leaves
|
|
317
|
+
* Winter: Bare (no blossoms)
|
|
318
|
+
* @example getCherryColors('spring') // returns cherryBlossomsPeak (vibrant)
|
|
319
|
+
* @example getCherryColors('autumn') // returns autumnReds palette
|
|
320
|
+
*/
|
|
321
|
+
export declare function getCherryColors(season?: Season): typeof cherryBlossoms | typeof autumnReds | typeof cherryBlossomsPeak | null;
|
|
322
|
+
/**
|
|
323
|
+
* Check if a tree should be bare (no foliage) based on season
|
|
324
|
+
* Deciduous trees lose leaves in winter.
|
|
325
|
+
*/
|
|
326
|
+
export declare function isTreeBare(treeType: string, season: Season): boolean;
|
|
327
|
+
/**
|
|
328
|
+
* Pick a random color from a palette object
|
|
329
|
+
* Useful for adding natural variation to forests.
|
|
330
|
+
* @example pickRandom(greens) // returns random green like '#16a34a'
|
|
331
|
+
*/
|
|
332
|
+
export declare function pickRandom<T extends Record<string, string>>(palette: T): string;
|
|
333
|
+
/**
|
|
334
|
+
* Pick a random color from a subset of palette keys
|
|
335
|
+
* More controlled randomization when you want specific options.
|
|
336
|
+
* @example pickFrom(greens, ['grove', 'meadow']) // only picks from those two
|
|
337
|
+
*/
|
|
338
|
+
export declare function pickFrom<T extends Record<string, string>>(palette: T, keys: (keyof T)[]): string;
|
|
339
|
+
/**
|
|
340
|
+
* @deprecated Use `cherryBlossoms` instead. Will be removed in v1.0.
|
|
341
|
+
* Alias for backward compatibility with components using 'pinks'.
|
|
342
|
+
*/
|
|
343
|
+
export declare const pinks: {
|
|
344
|
+
readonly deepPink: "#db2777";
|
|
345
|
+
readonly pink: "#ec4899";
|
|
346
|
+
readonly rose: "#f472b6";
|
|
347
|
+
readonly blush: "#f9a8d4";
|
|
348
|
+
readonly palePink: "#fbcfe8";
|
|
349
|
+
};
|
|
350
|
+
/**
|
|
351
|
+
* @deprecated Use `cherryBlossomsPeak` instead. Will be removed in v1.0.
|
|
352
|
+
* Alias for backward compatibility with components using 'springBlossoms'.
|
|
353
|
+
*/
|
|
354
|
+
export declare const springBlossoms: {
|
|
355
|
+
readonly deepPink: "#ec4899";
|
|
356
|
+
readonly pink: "#f472b6";
|
|
357
|
+
readonly rose: "#f9a8d4";
|
|
358
|
+
readonly blush: "#fbcfe8";
|
|
359
|
+
readonly palePink: "#fce7f3";
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* @deprecated Use `springFoliage`, `wildflowers`, `springSky` instead. Will be removed in v1.0.
|
|
363
|
+
* Combined spring palette for backward compatibility.
|
|
364
|
+
* New code should import the specific palettes directly.
|
|
365
|
+
*/
|
|
366
|
+
export declare const spring: {
|
|
367
|
+
readonly sprout: "#65a30d";
|
|
368
|
+
readonly newLeaf: "#84cc16";
|
|
369
|
+
readonly freshGreen: "#a3e635";
|
|
370
|
+
readonly budding: "#bef264";
|
|
371
|
+
readonly tender: "#d9f99d";
|
|
372
|
+
readonly clearSky: "#7dd3fc";
|
|
373
|
+
readonly softSky: "#bae6fd";
|
|
374
|
+
readonly buttercup: "#facc15";
|
|
375
|
+
readonly daffodil: "#fde047";
|
|
376
|
+
readonly crocus: "#a78bfa";
|
|
377
|
+
readonly lilac: "#c4b5fd";
|
|
378
|
+
readonly tulipPink: "#f9a8d4";
|
|
379
|
+
readonly tulipRed: "#fb7185";
|
|
380
|
+
readonly hillDeep: "#166534";
|
|
381
|
+
readonly hillMid: "#22c55e";
|
|
382
|
+
readonly hillNear: "#86efac";
|
|
383
|
+
readonly hillFront: "#bbf7d0";
|
|
384
|
+
};
|
|
385
|
+
export declare const naturePalette: {
|
|
386
|
+
readonly greens: {
|
|
387
|
+
readonly darkForest: "#0d4a1c";
|
|
388
|
+
readonly deepGreen: "#166534";
|
|
389
|
+
readonly grove: "#16a34a";
|
|
390
|
+
readonly meadow: "#22c55e";
|
|
391
|
+
readonly spring: "#4ade80";
|
|
392
|
+
readonly mint: "#86efac";
|
|
393
|
+
readonly pale: "#bbf7d0";
|
|
394
|
+
};
|
|
395
|
+
readonly bark: {
|
|
396
|
+
readonly darkBark: "#3d2817";
|
|
397
|
+
readonly bark: "#5d4037";
|
|
398
|
+
readonly warmBark: "#6B4423";
|
|
399
|
+
readonly lightBark: "#8b6914";
|
|
400
|
+
};
|
|
401
|
+
readonly earth: {
|
|
402
|
+
readonly soil: "#3e2723";
|
|
403
|
+
readonly mud: "#5d4037";
|
|
404
|
+
readonly clay: "#8d6e63";
|
|
405
|
+
readonly sand: "#d7ccc8";
|
|
406
|
+
readonly stone: "#78716c";
|
|
407
|
+
readonly pebble: "#a8a29e";
|
|
408
|
+
readonly slate: "#57534e";
|
|
409
|
+
};
|
|
410
|
+
readonly natural: {
|
|
411
|
+
readonly cream: "#fef9ef";
|
|
412
|
+
readonly aspenBark: "#e8e4d9";
|
|
413
|
+
readonly bone: "#e8e4dc";
|
|
414
|
+
readonly mushroom: "#d4c8be";
|
|
415
|
+
readonly birchWhite: "#f5f5f0";
|
|
416
|
+
};
|
|
417
|
+
readonly springFoliage: {
|
|
418
|
+
readonly sprout: "#65a30d";
|
|
419
|
+
readonly newLeaf: "#84cc16";
|
|
420
|
+
readonly freshGreen: "#a3e635";
|
|
421
|
+
readonly budding: "#bef264";
|
|
422
|
+
readonly tender: "#d9f99d";
|
|
423
|
+
};
|
|
424
|
+
readonly springSky: {
|
|
425
|
+
readonly clear: "#7dd3fc";
|
|
426
|
+
readonly soft: "#bae6fd";
|
|
427
|
+
};
|
|
428
|
+
readonly wildflowers: {
|
|
429
|
+
readonly buttercup: "#facc15";
|
|
430
|
+
readonly daffodil: "#fde047";
|
|
431
|
+
readonly crocus: "#a78bfa";
|
|
432
|
+
readonly violet: "#8b5cf6";
|
|
433
|
+
readonly purple: "#a855f7";
|
|
434
|
+
readonly lavender: "#c4b5fd";
|
|
435
|
+
readonly tulipPink: "#f9a8d4";
|
|
436
|
+
readonly tulipRed: "#fb7185";
|
|
437
|
+
readonly white: "#fefefe";
|
|
438
|
+
};
|
|
439
|
+
readonly cherryBlossoms: {
|
|
440
|
+
readonly deep: "#db2777";
|
|
441
|
+
readonly standard: "#ec4899";
|
|
442
|
+
readonly light: "#f472b6";
|
|
443
|
+
readonly pale: "#f9a8d4";
|
|
444
|
+
readonly falling: "#fbcfe8";
|
|
445
|
+
};
|
|
446
|
+
readonly cherryBlossomsPeak: {
|
|
447
|
+
readonly deep: "#ec4899";
|
|
448
|
+
readonly standard: "#f472b6";
|
|
449
|
+
readonly light: "#f9a8d4";
|
|
450
|
+
readonly pale: "#fbcfe8";
|
|
451
|
+
readonly falling: "#fce7f3";
|
|
452
|
+
};
|
|
453
|
+
readonly autumn: {
|
|
454
|
+
readonly rust: "#9a3412";
|
|
455
|
+
readonly ember: "#c2410c";
|
|
456
|
+
readonly pumpkin: "#ea580c";
|
|
457
|
+
readonly amber: "#d97706";
|
|
458
|
+
readonly gold: "#eab308";
|
|
459
|
+
readonly honey: "#facc15";
|
|
460
|
+
readonly straw: "#fde047";
|
|
461
|
+
};
|
|
462
|
+
readonly autumnReds: {
|
|
463
|
+
readonly crimson: "#be123c";
|
|
464
|
+
readonly scarlet: "#e11d48";
|
|
465
|
+
readonly rose: "#f43f5e";
|
|
466
|
+
readonly coral: "#fb7185";
|
|
467
|
+
};
|
|
468
|
+
readonly winter: {
|
|
469
|
+
readonly snow: "#f8fafc";
|
|
470
|
+
readonly frost: "#e2e8f0";
|
|
471
|
+
readonly ice: "#cbd5e1";
|
|
472
|
+
readonly glacier: "#94a3b8";
|
|
473
|
+
readonly frostedPine: "#2d4a3e";
|
|
474
|
+
readonly winterGreen: "#3d5a4a";
|
|
475
|
+
readonly coldSpruce: "#4a6355";
|
|
476
|
+
readonly winterSky: "#e0f2fe";
|
|
477
|
+
readonly twilight: "#bfdbfe";
|
|
478
|
+
readonly overcast: "#cbd5e1";
|
|
479
|
+
readonly bareBranch: "#78716c";
|
|
480
|
+
readonly frostedBark: "#a8a29e";
|
|
481
|
+
readonly coldWood: "#57534e";
|
|
482
|
+
readonly hillDeep: "#475569";
|
|
483
|
+
readonly hillMid: "#7c8ca3";
|
|
484
|
+
readonly hillNear: "#c7d2e0";
|
|
485
|
+
readonly hillFront: "#f1f5f9";
|
|
486
|
+
};
|
|
487
|
+
readonly accents: {
|
|
488
|
+
/** Mushroom caps and details - fairy tale forest pops of color */
|
|
489
|
+
readonly mushroom: {
|
|
490
|
+
readonly redCap: "#dc2626";
|
|
491
|
+
readonly orangeCap: "#ea580c";
|
|
492
|
+
readonly brownCap: "#78350f";
|
|
493
|
+
readonly spots: "#fefefe";
|
|
494
|
+
readonly gill: "#fde8e8";
|
|
495
|
+
};
|
|
496
|
+
/**
|
|
497
|
+
* @deprecated Use the top-level `wildflowers` export instead. Will be removed in v1.0.
|
|
498
|
+
*
|
|
499
|
+
* Historical context: Flower colors were originally split between two places:
|
|
500
|
+
* - `spring` palette had wildflower accents (crocus, lilac, tulips, buttercup, daffodil)
|
|
501
|
+
* - `accents.flower` had generic flower colors (purple, violet, yellow, white, lavender)
|
|
502
|
+
*
|
|
503
|
+
* This caused confusion and duplicate values. Now unified in the top-level `wildflowers`
|
|
504
|
+
* palette which contains all meadow flower colors in one place.
|
|
505
|
+
*/
|
|
506
|
+
readonly flower: {
|
|
507
|
+
readonly purple: "#a855f7";
|
|
508
|
+
readonly violet: "#8b5cf6";
|
|
509
|
+
readonly yellow: "#facc15";
|
|
510
|
+
readonly white: "#fefefe";
|
|
511
|
+
readonly lavender: "#c4b5fd";
|
|
512
|
+
};
|
|
513
|
+
/** Firefly bioluminescence - warm yellow-green glow */
|
|
514
|
+
readonly firefly: {
|
|
515
|
+
readonly glow: "#fef08a";
|
|
516
|
+
readonly warmGlow: "#fde047";
|
|
517
|
+
readonly body: "#365314";
|
|
518
|
+
};
|
|
519
|
+
/** Berry colors - rich and saturated */
|
|
520
|
+
readonly berry: {
|
|
521
|
+
readonly ripe: "#7c2d12";
|
|
522
|
+
readonly elderberry: "#581c87";
|
|
523
|
+
readonly red: "#b91c1c";
|
|
524
|
+
};
|
|
525
|
+
/** Water and pond colors - cool blue spectrum */
|
|
526
|
+
readonly water: {
|
|
527
|
+
readonly surface: "#7dd3fc";
|
|
528
|
+
readonly deep: "#0284c7";
|
|
529
|
+
readonly shallow: "#bae6fd";
|
|
530
|
+
readonly lily: "#bbf7d0";
|
|
531
|
+
};
|
|
532
|
+
/** Sky elements - time of day variations */
|
|
533
|
+
readonly sky: {
|
|
534
|
+
readonly dayLight: "#e0f2fe";
|
|
535
|
+
readonly dayMid: "#7dd3fc";
|
|
536
|
+
readonly sunset: "#fed7aa";
|
|
537
|
+
readonly night: "#1e293b";
|
|
538
|
+
readonly star: "#fefce8";
|
|
539
|
+
};
|
|
540
|
+
/** Bird colors - winter, spring, and year-round species */
|
|
541
|
+
readonly bird: {
|
|
542
|
+
readonly cardinalRed: "#dc2626";
|
|
543
|
+
readonly cardinalMask: "#1a1a1a";
|
|
544
|
+
readonly cardinalBeak: "#f97316";
|
|
545
|
+
readonly chickadeeCap: "#1a1a1a";
|
|
546
|
+
readonly chickadeeCheek: "#fafafa";
|
|
547
|
+
readonly chickadeeBody: "#6b7280";
|
|
548
|
+
readonly chickadeeBelly: "#fef3c7";
|
|
549
|
+
readonly robinBody: "#4a4a4a";
|
|
550
|
+
readonly robinWing: "#3a3a3a";
|
|
551
|
+
readonly robinWingDark: "#2a2a2a";
|
|
552
|
+
readonly robinBreast: "#c2410c";
|
|
553
|
+
readonly robinBreastLight: "#dc5015";
|
|
554
|
+
readonly robinBeak: "#f59e0b";
|
|
555
|
+
readonly bluebirdBody: "#3b82f6";
|
|
556
|
+
readonly bluebirdWing: "#2563eb";
|
|
557
|
+
readonly bluebirdBreast: "#ea580c";
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
readonly midnightBloom: {
|
|
561
|
+
readonly deepPlum: "#581c87";
|
|
562
|
+
readonly purple: "#7c3aed";
|
|
563
|
+
readonly violet: "#8b5cf6";
|
|
564
|
+
readonly amber: "#f59e0b";
|
|
565
|
+
readonly warmCream: "#fef3c7";
|
|
566
|
+
readonly softGold: "#fcd34d";
|
|
567
|
+
};
|
|
568
|
+
readonly spring: {
|
|
569
|
+
readonly sprout: "#65a30d";
|
|
570
|
+
readonly newLeaf: "#84cc16";
|
|
571
|
+
readonly freshGreen: "#a3e635";
|
|
572
|
+
readonly budding: "#bef264";
|
|
573
|
+
readonly tender: "#d9f99d";
|
|
574
|
+
readonly clearSky: "#7dd3fc";
|
|
575
|
+
readonly softSky: "#bae6fd";
|
|
576
|
+
readonly buttercup: "#facc15";
|
|
577
|
+
readonly daffodil: "#fde047";
|
|
578
|
+
readonly crocus: "#a78bfa";
|
|
579
|
+
readonly lilac: "#c4b5fd";
|
|
580
|
+
readonly tulipPink: "#f9a8d4";
|
|
581
|
+
readonly tulipRed: "#fb7185";
|
|
582
|
+
readonly hillDeep: "#166534";
|
|
583
|
+
readonly hillMid: "#22c55e";
|
|
584
|
+
readonly hillNear: "#86efac";
|
|
585
|
+
readonly hillFront: "#bbf7d0";
|
|
586
|
+
};
|
|
587
|
+
readonly pinks: {
|
|
588
|
+
readonly deepPink: "#db2777";
|
|
589
|
+
readonly pink: "#ec4899";
|
|
590
|
+
readonly rose: "#f472b6";
|
|
591
|
+
readonly blush: "#f9a8d4";
|
|
592
|
+
readonly palePink: "#fbcfe8";
|
|
593
|
+
};
|
|
594
|
+
readonly springBlossoms: {
|
|
595
|
+
readonly deepPink: "#ec4899";
|
|
596
|
+
readonly pink: "#f472b6";
|
|
597
|
+
readonly rose: "#f9a8d4";
|
|
598
|
+
readonly blush: "#fbcfe8";
|
|
599
|
+
readonly palePink: "#fce7f3";
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
export default naturePalette;
|