HomeStylesTemplates
StyleKit
StylesTemplates
  1. Home
  2. /Styles
  3. /Tropical Paradise
Style Catalog/热带天堂

热带天堂

Tropical Paradise

D
47/100Poor

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.

热带天堂棕榈花卉阳光度假明快moderncontemporarysleek
View Full Showcase →Templates

Best For

热带 / 天堂 / 棕榈

Primary Move

Use teal primary #00897b paired with warm yellow base #fffde7

Watch Out

Do not use dark/black background themes

Showcase Entry

Live preview of the showcase page. Click to explore the full experience.

View Full Showcase →

Color Palette

Primary

#00897b

Secondary

#fffde7

Accent 1

#ff6f61

Accent 2

#ffc107

Accent 3

#4caf50

Accent 4

#a09314

AI ImplementationComponent PreviewReadinessExportsRatings & Feedback

AI Implementation

Copy the Hard Prompt first, then use the spec when needed

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.

Hard Prompt

Use this by default: copy it, append the concrete requirement, and let AI generate consistent production UI.

When to use

  • -When AI should generate UI directly
  • -When repeated outputs must stay consistent
  • -When style drift is the main risk

How to use

  • -Copy the full prompt
  • -Append the concrete requirement
  • -Review against forbidden rules and UI states
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.

Component Templates

Component Preview

按钮

热带天堂风格按钮,圆润鲜艳

Frontend Readiness

Dark Mode, States, Motion, and Accessibility

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%

Fallback

UI States

79%

Partial

Motion

70%

Partial

A11y

70%

Partial

Performance

35%

Fallback

Key State Coverage

light / dark
HoverFocus VisibleDisabledLoadingEmptyErrorSuccess

Button

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

Implementation Notes

  • This style contains dark-mode signals, but no curated dark token contract has been reviewed.
  • Check contrast in both light and dark modes.
  • Check heavy shadows, blur, large media, and scroll-linked effects manually.
  • No style-specific performance cost profile has been curated yet.
Global Styles

Global CSS

css
/* 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

IDE Configuration Export

Download configuration files for AI coding assistants to generate code in this style.

Style Pack

Export 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

Design Philosophy

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.

Accessibility

Accessibility Score

WCAG 2.1 compliance analysis based on color contrast and typography readability.

47

Overall Score

Grade: D - Poor

Contrast Ratios

Score: 30/100Average Ratio: 4.35:1
AA FailAAA Fail
ContextColorsRatioAAAAA
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.

StyleKit

A curated web design style library to help AI generate better-looking websites.

Navigation

StylesTemplatesGuideBlogChangelog

Resources

UI Design PromptsLanding Page PromptsDashboard PromptsTailwind UI PromptsDark Mode UI PromptsGitHub Repository

Stay Updated

By subscribing, you agree to our Privacy Policy and Terms.


Support Maintenance

If StyleKit helps your workflow, voluntary support helps cover servers, domains, and ongoing upkeep.

Scan to support / View all options

(c) 2026 StyleKit. Open source project.

AboutContactPrivacyTermsBuilt with the Editorial style
Stylekit前端样式库stylekit.top陕ICP备2025065501号-3