Best For
tropical design / tropical paradise / palm leaves
热带天堂
Tropical resort-inspired design with palm leaves, vivid floral colors, and a bright sun-and-sand tone. Ideal for travel, resorts, lifestyle, and food-and-beverage brands.
Best For
tropical design / tropical paradise / palm leaves
Primary Move
Use teal primary #00897b paired with warm yellow base #fffde7
Watch Out
Do not use dark/black background themes
AI Implementation
Use the Hard Prompt by default to generate UI. Use the Design Spec to understand, modify, and review the style. Use the Creative Brief for early exploration.
Use this by default: copy it, append the concrete requirement, and let AI generate consistent production UI.
When to use
How to use
STYLEKIT_STYLE_REFERENCE
style_name: Tropical Paradise
style_slug: tropical-paradise
style_source: /styles/tropical-paradise
# Hard Prompt
## When To Use
Use this when you want AI to generate code with strict style consistency. It is the safest default for production UI.
## How To Use
- Copy the full prompt into ChatGPT, Claude, Cursor, or another coding assistant.
- Append the concrete product/page requirement after the prompt.
- After generation, check the forbidden rules and interaction states before accepting the output.
Strictly follow the style rules below and maintain consistency. No style drift allowed.
## Requirements
- Prioritize style consistency first, then creative extension.
- When conflicts arise, treat prohibitions as the highest priority.
- Self-check before output: verify colors, typography, spacing, and interactions still match this style.
## Style Rules
You are a Tropical Paradise design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Dark/black backgrounds
- Gray-dominant color schemes
- rounded-none sharp corners
- Dull dark tones
- Cool-toned shadows
- Serif fonts
## Must Follow
- Teal primary #00897b, warm yellow base #fffde7
- Accent colors: coral red #ff6f61, mango yellow #ffc107, palm green #4caf50
- Use rounded-2xl or rounded-full for soft rounded corners
- Warm colored shadows shadow-[0_4px_20px_rgba(0,137,123,0.15)]
- Generous whitespace and transparency
- Hover effects use -translate-y float up
## Color Palette
Primary:
- Teal: #00897b
- Sunshine white: #fffde7
- Coral red: #ff6f61
- Mango yellow: #ffc107
- Palm green: #4caf50
## Special Elements
- Circular decorative blur orbs (blur-3xl)
- Colorful small dot decorations
- Gradient backgrounds from-[#fffde7] to-[#fff8e1]
- Bright hover float-up animations
## Animation & Interaction Rules
- Wave Drift: Hover uses gentle rotation + float up + micro scale (e.g., -translate-y-2 rotate-1 scale-[1.02]), paired with duration-500 ease-in-out.
- Tropical Sun Glow: Hover shadow spread should use tropical colors like teal/coral, not dark gray shadows.
- Breeze Response: Colored decoration dots produce brief micro-bounces on hover, simulating a sea breeze.
- Fluid Clicks: Active uses soft scale-95 with shadow convergence, creating a sand-stepping press-down feel.
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use dark/black background themes
- use gray-dominant color schemes
- use sharp right angles and hard edges rounded-none
- use dull dark tones
- use overly dense layouts
- use cool-toned shadows
- use overly formal serif fonts
- use stiff, short linear animations that break the resort relaxation feel
## Self-Check (Verify Before Shipping)
If any item fails, the style has drifted — fix before shipping.
- [ ] No purple-to-blue gradients
- [ ] No overused fonts (Inter, Roboto, Geist, Fraunces, Plus Jakarta Sans)
- [ ] No nested cards (cards inside cards)
- [ ] No gray text on colored backgrounds
- [ ] Body text contrast meets WCAG AA (>= 4.5:1)
- [ ] No bounce or elastic easing curves
- [ ] Animations have a prefers-reduced-motion fallback
- [ ] Body text line length capped at 65-75 characters
- [ ] No side-stripe accent borders (border-left/right > 1px)
- [ ] No gradient text (background-clip: text)
- [ ] No glassmorphism used as the default surface treatment
- [ ] No tiny uppercase tracked eyebrow labels above every section heading
- [ ] do not use dark/black background themes
- [ ] do not use gray-dominant color schemes
- [ ] do not use sharp right angles and hard edges rounded-none
- [ ] do not use dull dark tones
- [ ] do not use overly dense layoutsComponent Templates
热带天堂风格按钮,圆润鲜艳
Frontend Readiness
This layer tracks whether the style is ready for real websites: theme modes, state feedback, keyboard access, and performance constraints.
Overall
58%
Fallback
Dark Mode
35%
FallbackUI States
79%
PartialMotion
70%
PartialA11y
70%
PartialPerformance
35%
FallbackButton
Default / Hover / Focus Visible / Active / Disabled
Input
Default / Hover / Focus Visible / Disabled / Error
Card
Default / Hover / Focus Visible / Loading / Skeleton
Form
Default / Focus Visible / Disabled / Loading / Error
FAQ
/* Tropical Paradise 全局样式 */
:root {
--tp-teal: #00897b;
--tp-teal-dark: #00796b;
--tp-sunshine: #fffde7;
--tp-coral: #ff6f61;
--tp-mango: #ffc107;
--tp-palm: #4caf50;
}
/* 阳光渐变背景 */
.tp-sunshine-bg {
background: linear-gradient(180deg, var(--tp-sunshine) 0%, #fff8e1 100%);
}
/* 热带色彩渐变 */
.tp-tropical-gradient {
background: linear-gradient(135deg, var(--tp-teal) 0%, var(--tp-palm) 100%);
}
/* 珊瑚强调 */
.tp-coral-accent {
background-color: rgba(255, 111, 97, 0.1);
color: var(--tp-coral);
}
/* 棕榈叶装饰阴影 */
.tp-palm-shadow {
box-shadow: 0 4px 20px rgba(0, 137, 123, 0.15);
}
/* 度假卡片悬停效果 */
.tp-card-hover {
transition: all 0.3s ease;
}
.tp-card-hover:hover {
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0, 137, 123, 0.2);
}
@keyframes tropical-paradise-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes tropical-paradise-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.tropical-paradise-card {
position: relative;
overflow: hidden;
}
.tropical-paradise-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(0, 137, 123, 0.05), transparent);
pointer-events: none;
}
.tropical-paradise-card:hover::before {
opacity: 1;
}
.tropical-paradise-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(0, 137, 123, 0.08);
}
.tropical-paradise-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.tropical-paradise-animate-in {
animation: tropical-paradise-fade-in 0.5s ease-out both;
}IDE Integration
Download configuration files for AI coding assistants to generate code in this style.
Style Pack
Get complete machine-readable style assets including design tokens, Tailwind presets, CSS variables, and shadcn/ui themes.
Metadata
Style metadata including version information
Design Tokens
Compatible with Figma / Style Dictionary / Tokens Studio
Tailwind Preset
Tailwind CSS theme preset, import directly in config
Global CSS
CSS variables and base styles
shadcn Theme
shadcn/ui theme configuration
CSS Variables
Pure CSS variables, works with any project
SKILL.md
Loadable skill pack for Cursor / Claude Code / VS Code
Tropical Paradise draws from the natural colors and resort atmosphere of tropical islands, infusing the vibrant energy of sunshine, ocean, palm leaves, and tropical flowers into digital interfaces.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: D - Poor
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#00897b / #fffde7 | 4.21:1 | ||
| Secondary text on background | /#374151 / #fffde7 | 10.04:1 | ||
| Muted text on background | /#6b7280 / #fffde7 | 4.71:1 | ||
| Text on secondary background | /#00897b / #ffffff | 4.32:1 | ||
| Secondary text on secondary | /#374151 / #ffffff | 10.31:1 | ||
| Button primary | /#ffffff / #00897b | 4.32:1 | ||
| Text on accent 1 | /#00897b / #00897b | 1:1 | ||
| Alt text on accent 1 | /#374151 / #00897b | 2.39:1 | ||
| Text on accent 2 | /#00897b / #ff6f61 | 1.58:1 | ||
| Alt text on accent 2 | /#374151 / #ff6f61 | 3.78:1 | ||
| Text on accent 3 | /#00897b / #ffc107 | 2.65:1 | ||
| Alt text on accent 3 | /#374151 / #ffc107 | 6.32:1 | ||
| Text on accent 4 | /#00897b / #4caf50 | 1.55:1 | ||
| Alt text on accent 4 | /#374151 / #4caf50 | 3.71:1 |
Readability
Score
87/100
Font Size
text-sm md:text-base
Font Weight
font-bold tracking-tight
Line Height
default
Scoring is based on WCAG 2.1 standards. AA requires 4.5:1 contrast for normal text, 3:1 for large text; AAA requires 7:1 for normal text, 4.5:1 for large text.