Best For
印度 / 排灯节 / 色彩节
Indian Festive
The dazzling aesthetics of Indian Diwali and Holi festivals, with rich gold ornamentation, jewel-tone palettes, and mandala motifs. Ideal for celebrations, events, and lifestyle brands.
Best For
印度 / 排灯节 / 色彩节
Primary Move
Use vermillion bg-[#e63946] and saffron orange bg-[#ff9f1c] as primary accent colors
Watch Out
Do not use cold blue-gray tones bg-gray-100, bg-slate-50
Showcase Entry
Live preview of the showcase page. Click to explore the full experience.
Color Palette
Primary
#e63946
Secondary
#fff8e7
Accent 1
#ff9f1c
Accent 2
#7b2d8e
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: Indian Festive
style_slug: indian-festive
style_source: /styles/indian-festive
# 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 an Indian Festive design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Cold blue-gray tones (bg-gray-100, bg-slate-50)
- Pure black backgrounds (bg-black)
- Sharp corners (rounded-none)
- Low-saturation or muted colors
- Neon cyber colors (text-[#00ffff], text-[#ff00ff])
- Monochromatic schemes
## Must Follow
- Vermillion red #e63946 and saffron orange #ff9f1c as primary accents
- Warm ivory background bg-[#fff8e7]
- Gold decorations using border-[#d4af37] and shadow with gold rgba
- Royal purple #7b2d8e for text and headings
- Rounded corners rounded-xl
- Multi-color gradients for emphasis
- Bold typography with tracking-wide
## Color Palette
Primary:
- Vermillion: #e63946
- Warm White: #fff8e7
- Saffron: #ff9f1c
- Royal Purple: #7b2d8e
- Teal: #2a9d8f
- Gold: #d4af37
## Special Elements
- Mandala-inspired circular decorations
- Gold border and glow effects
- Multi-color gradient strips
- Warm layered backgrounds
- Festive light/lamp motifs
## Animation & Interaction Rules
### Grand Illumination (Button Glow)
- Resting: shadow-[0_0_16px_rgba(212,175,55,0.4)] -- always-on gold aura
- Hover: hover:shadow-[0_0_35px_rgba(212,175,55,0.8)] -- glow explodes to 35px (diya lamp igniting)
- NEVER use flat shadow on interactive elements
### Joyful Flourish (Button Motion)
- hover:-translate-y-1 hover:scale-[1.03] -- lift AND grow simultaneously (lamp rising + fireworks ascending)
- active:scale-95 active:translate-y-0 -- joyful bounce-back
- active:shadow-[0_0_16px_rgba(212,175,55,0.4)] -- glow settles back to resting
### Golden Touch (Focus)
- focus:ring-2 focus:ring-[#d4af37] focus:ring-offset-2 focus:ring-offset-[#fff8e7]
- ring-offset-[#fff8e7] mandatory -- gold ring must separate from ivory background
### Ceremonial Unfurling (Card Color Strip)
- Resting: w-12 h-1 bg-gradient-to-r from-[#e63946] via-[#ff9f1c] to-[#d4af37]
- On group-hover: group-hover:w-full -- ribbon unfurls across full card width (gift unwrapping)
- Transition: duration-500 ease-out
- Always use group class on card container
### Card Hover
- hover:-translate-y-2 hover:scale-[1.02] -- festive ascension
- hover:shadow-[0_15px_40px_rgba(230,57,70,0.2),0_0_30px_rgba(212,175,55,0.3)] -- dual jewel-tone glow
- Heading: group-hover:text-[#e63946] transition-colors duration-300 -- purple to vermillion shiftComponent Templates
印度节庆按钮:hover 时金色光晕爆破(shadow 35px)+ hover:-translate-y-1 hover:scale-[1.03] 向上欢腾,active:scale-95 弹跳,focus:ring-[#d4af37] focus:ring-offset-[#fff8e7]
Frontend Readiness
This layer tracks whether the style is ready for real websites: theme modes, state feedback, keyboard access, and performance constraints.
Overall
51%
Fallback
Dark Mode
0%
MissingUI 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
/* Indian Festive Global Styles */
:root {
--if-vermillion: #e63946;
--if-warm-white: #fff8e7;
--if-saffron: #ff9f1c;
--if-royal-purple: #7b2d8e;
--if-teal: #2a9d8f;
--if-gold: #d4af37;
}
/* Gold glow effect */
.if-gold-glow {
box-shadow:
0 0 12px rgba(212, 175, 55, 0.3),
0 0 24px rgba(212, 175, 55, 0.15);
}
/* Mandala border decoration */
.if-mandala-border {
border: 2px solid var(--if-gold);
border-radius: 1rem;
position: relative;
}
/* Festive gradient text */
.if-gradient-text {
background: linear-gradient(135deg, var(--if-vermillion), var(--if-saffron), var(--if-gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Warm backdrop */
.if-warm-bg {
background: linear-gradient(135deg, var(--if-warm-white), rgba(255, 159, 28, 0.05), rgba(230, 57, 70, 0.05));
}
/* Diya lamp glow */
.if-diya-glow {
box-shadow:
0 0 20px rgba(255, 159, 28, 0.4),
0 0 40px rgba(212, 175, 55, 0.2);
}
@keyframes indian-festive-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes indian-festive-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.indian-festive-card {
position: relative;
overflow: hidden;
}
.indian-festive-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
pointer-events: none;
}
.indian-festive-card:hover::before {
opacity: 1;
}
.indian-festive-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(230, 57, 70, 0.08);
}
.indian-festive-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.indian-festive-animate-in {
animation: indian-festive-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
Indian Festive draws from the dazzling visual language of Diwali (Festival of Lights) and Holi (Festival of Colors), transforming thousands of years of South Asian color traditions into modern 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 | /#7b2d8e / #fff8e7 | 7.6:1 | ||
| Secondary text on background | /#e63946 / #fff8e7 | 3.94:1 | ||
| Muted text on background | /#7b2d8e / #fff8e7 | 7.6:1 | ||
| Text on secondary background | /#7b2d8e / #fff8e7 | 7.6:1 | ||
| Secondary text on secondary | /#e63946 / #fff8e7 | 3.94:1 | ||
| Button primary | /#ffffff / #e63946 | 4.17:1 | ||
| Text on accent 1 | /#7b2d8e / #e63946 | 1.93:1 | ||
| Alt text on accent 1 | /#e63946 / #e63946 | 1:1 | ||
| Text on accent 2 | /#7b2d8e / #ff9f1c | 3.92:1 | ||
| Alt text on accent 2 | /#e63946 / #ff9f1c | 2.03:1 | ||
| Text on accent 3 | /#7b2d8e / #7b2d8e | 1:1 | ||
| Alt text on accent 3 | /#e63946 / #7b2d8e | 1.93:1 | ||
| Text on accent 4 | /#7b2d8e / #2a9d8f | 2.42:1 | ||
| Alt text on accent 4 | /#e63946 / #2a9d8f | 1.25:1 | ||
| Text on accent 5 | /#7b2d8e / #d4af37 | 3.83:1 | ||
| Alt text on accent 5 | /#e63946 / #d4af37 | 1.98:1 |
Readability
Score
87/100
Font Size
text-sm md:text-base
Font Weight
font-bold tracking-wide text-[#7b2d8e]
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.