Best For
geometric bold / geometric design / bold shapes
Bold geometric design with strong shape contrasts, vivid color blocks, and dynamic compositions. Ideal for art exhibitions, design agencies, and creative brands.
Best For
geometric bold / geometric design / bold shapes
Primary Move
Use solid color blocks bg-black, bg-white, bg-red-500, bg-blue-600
Watch Out
Do not use gradient colors
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: Geometric Bold
style_slug: geometric-bold
style_source: /styles/geometric-bold
# 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
STYLE: Geometric Bold
TYPE: Bold artistic design with strong shapes
MUST USE:
- Solid color blocks: bg-black, bg-white, bg-red-500, bg-blue-600
- Regular geometric shapes: circles, squares, triangles
- Large typography: text-6xl, text-8xl, text-[10rem]
- Absolute positioning for overlapping elements
- Corners: rounded-none OR rounded-full only
- Rotation for dynamics: rotate-12, rotate-45
- Limited palette: black, white + 1-2 accent colors
MUST AVOID:
- Gradients
- Soft/low contrast colors
- Medium border-radius (rounded-lg)
- Shadows
- Too many colors (max 3-4)
- Symmetrical/conventional layouts
COLOR RULES:
- Base: Black and White
- Accents: Primary colors (red, blue, yellow)
- Maximum 3-4 colors per design
TYPOGRAPHY:
- Headings: font-black uppercase
- Labels: text-xs tracking-[0.3em]
- Numbers: Often used as design elements
## Animation & Interaction Rules
- Blocky Impact: Interactions use solid color hard-cuts and short displacement feedback, avoiding soft opacity transitions.
- Shape Snapping: Geometric decorations can instantly rotate/scale on hover, creating a structural mutation feel.
- Heavy Press: Active state prefers displacement and layer rebound to express pressing, not relying on soft scaling.
- Linear & Fast: Uniformly use duration-100 + ease-linear, rejecting spring feel and slow trailing.
---
# Geometric Bold Design System
> Bold geometric design with strong shape contrasts, vivid color blocks, and dynamic compositions. Ideal for art exhibitions, design agencies, and creative brands.
## Design Philosophy
Geometric Bold style is influenced by Bauhaus and Constructivist art, creating visual impact through simple yet powerful geometric shapes.
Core principles:
- Shape first: Geometric shapes are the core design language
- Bold contrast: Strong color and shape contrasts
- Dynamic balance: Create visual tension through asymmetry
- Artistic expression: Every page is a work of art
---
## Token Dictionary (exact class mapping)
### Border
```
Width: border-4
Color: border-black
Radius: rounded-none
```
### Shadow
```
sm: shadow-none
md: shadow-none
lg: shadow-none
hover: shadow-none
focus: shadow-none
```
### Interaction
```
Hover translate: (none)
Hover scale: hover:scale-105
Hover opacity: (none)
Transition: transition-colors duration-200
Active: active:scale-95
```
### Typefaces
```
Heading: font-black uppercase tracking-tight
Body: font-sans font-medium
Mono: font-mono
```
### Type scale
```
Hero: text-6xl md:text-8xl lg:text-[10rem]
H1: text-4xl md:text-6xl
H2: text-3xl md:text-4xl
H3: text-xl md:text-2xl
Body: text-sm md:text-base
Small: text-xs md:text-sm
```
### Spacing
```
Section: py-12 md:py-24 lg:py-32
Container: px-4 md:px-8 lg:px-12
Card: p-6 md:p-8
Gap sm: gap-2 md:gap-4
Gap md: gap-4 md:gap-8
Gap lg: gap-8 md:gap-12
```
### Color roles
```
Background primary: bg-white
Background secondary: bg-black
Background accent: bg-red-500, bg-blue-600, bg-yellow-400
Text primary: text-black
Text secondary: text-white
Text muted: text-gray-600
Button primary: bg-black text-white
Button secondary: bg-white text-black border-4 border-black
```
---
## [FORBIDDEN]
These classes are banned in this style. Check for them before returning code:
### Banned classes
- `shadow-sm`
- `shadow`
- `shadow-md`
- `shadow-lg`
- `shadow-xl`
- `bg-gradient-to-r`
- `bg-gradient-to-b`
- `bg-gradient-to-l`
- `rounded-lg`
- `rounded-xl`
- `rounded-2xl`
- `text-gray-300`
- `text-gray-400`
- `bg-gray-100`
- `bg-gray-200`
- `opacity-50`
- `opacity-60`
- `opacity-70`
- `font-light`
- `font-normal`
### Banned patterns
- matches `^shadow-(?!none)`
- matches `^bg-gradient-`
- matches `^rounded-(?:sm|md|lg|xl|2xl|3xl)$`
- matches `^opacity-(?:[1-6]0)$`
- matches `^font-(?:light|thin|normal)$`
### Why they are banned
- `shadow-md`: Geometric Bold uses no shadows - pure flat shapes only
- `bg-gradient-to-r`: Geometric Bold uses solid color blocks, no gradients
- `rounded-lg`: Geometric Bold uses sharp corners (rounded-none) or full circles (rounded-full)
- `opacity-50`: Geometric Bold uses full-opacity bold colors for maximum contrast
- `font-light`: Geometric Bold uses heavy font weights (font-bold, font-black)
> WARNING: if your code contains any of the above, replace it before shipping.
---
## [REQUIRED]
### Every button must include
```
font-bold uppercase tracking-widest
transition-colors duration-200
```
### Every card must include
```
border-4 border-black
bg-white
```
### Every input must include
```
border-4 border-black
bg-white
font-medium
focus:outline-none
focus:bg-yellow-300
transition-colors duration-200
```
---
## [COMPARE] Geometric Bold wrong vs right
The wrong examples below stand for generic library defaults that were never adapted to this style. Do not read them as visual suggestions.
### Button
[WRONG] **Wrong** (generic component library default, do not copy):
```html
<button class="{GENERIC_LIBRARY_BUTTON_DEFAULT}">
Click me
</button>
```
[CORRECT] **Right** (uses this style's tokens):
```html
<button class="font-bold uppercase tracking-widest transition-colors duration-200 bg-black text-white">
Click me
</button>
```
### Card
[WRONG] **Wrong** (generic card, not adapted to this style):
```html
<div class="{GENERIC_LIBRARY_CARD_DEFAULT}">
<h3>{TITLE}</h3>
</div>
```
[CORRECT] **Right** (uses this style's card tokens):
```html
<div class="border-4 border-black bg-white p-6 md:p-8">
<h3 class="font-black uppercase tracking-tight text-xl md:text-2xl">{TITLE}</h3>
</div>
```
### Input
[WRONG] **Wrong** (generic input, not adapted to this style):
```html
<input class="{GENERIC_LIBRARY_INPUT_DEFAULT}" />
```
[CORRECT] **Right** (uses this style's input tokens):
```html
<input class="border-4 border-black bg-white font-medium focus:outline-none focus:bg-yellow-300 transition-colors duration-200" placeholder="{PLACEHOLDER}" />
```
---
## [TEMPLATES] Geometric Bold page skeletons
These skeletons use this style's tokens only. Replace `{PLACEHOLDER}` values, but keep every token in place:
### Navigation
```html
<nav class="bg-white text-black border-4 border-black px-4 md:px-8 lg:px-12">
<div class="flex items-center justify-between max-w-6xl mx-auto gap-4 md:gap-8">
<a href="/" class="font-black uppercase tracking-tight text-xl md:text-2xl">
{LOGO_TEXT}
</a>
<div class="flex gap-4 md:gap-8 font-sans font-medium text-xs md:text-sm">
{NAV_LINKS}
</div>
</div>
</nav>
```
### Hero section
```html
<section class="bg-red-500 text-black py-12 md:py-24 lg:py-32 px-4 md:px-8 lg:px-12">
<div class="max-w-4xl mx-auto">
<h1 class="font-black uppercase tracking-tight text-6xl md:text-8xl lg:text-[10rem]">
{HEADLINE}
</h1>
<p class="font-sans font-medium text-sm md:text-base max-w-xl">
{SUBHEADLINE}
</p>
<button class="font-bold uppercase tracking-widest transition-colors duration-200 bg-black text-white">
{CTA_TEXT}
</button>
</div>
</section>
```
### Card grid
```html
<section class="bg-white text-black py-12 md:py-24 lg:py-32 px-4 md:px-8 lg:px-12">
<div class="max-w-6xl mx-auto">
<h2 class="font-black uppercase tracking-tight text-3xl md:text-4xl">{SECTION_TITLE}</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 md:gap-8">
<!-- Card template - repeat for each card -->
<div class="border-4 border-black bg-white p-6 md:p-8">
<h3 class="font-black uppercase tracking-tight text-xl md:text-2xl">{CARD_TITLE}</h3>
<p class="font-sans font-medium text-sm md:text-base text-gray-600">{CARD_DESCRIPTION}</p>
</div>
</div>
</div>
</section>
```
### Form input
```html
<input class="border-4 border-black bg-white font-medium focus:outline-none focus:bg-yellow-300 transition-colors duration-200" placeholder="{PLACEHOLDER}" />
```
### Footer
```html
<footer class="bg-black text-white py-12 md:py-24 lg:py-32 px-4 md:px-8 lg:px-12">
<div class="max-w-6xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12">
<div>
<span class="font-black uppercase tracking-tight text-xl md:text-2xl">{LOGO_TEXT}</span>
<p class="font-sans font-medium text-xs md:text-sm">{TAGLINE}</p>
</div>
<div>
<h4 class="font-black uppercase tracking-tight text-xl md:text-2xl">{COLUMN_TITLE}</h4>
<ul class="font-sans font-medium text-xs md:text-sm">
{FOOTER_LINKS}
</ul>
</div>
</div>
</div>
</footer>
```
---
## [CHECKLIST] Geometric Bold post-generation self check
**Before returning code, verify every token and rule below. Fix any violation before delivering:**
### Token check
- [ ] Button includes: `font-bold uppercase tracking-widest transition-colors duration-200`
- [ ] Card includes: `border-4 border-black bg-white`
- [ ] Input includes: `border-4 border-black bg-white font-medium focus:outline-none focus:bg-yellow-300 transition-colors duration-200`
### Forbidden check
- [ ] Not using `shadow-sm`
- [ ] Not using `shadow`
- [ ] Not using `shadow-md`
- [ ] Not using `shadow-lg`
- [ ] Not using `shadow-xl`
- [ ] Not using `bg-gradient-to-r`
- [ ] Not using `bg-gradient-to-b`
- [ ] Not using `bg-gradient-to-l`
### Style rule check
- [ ] Use solid color blocks bg-black, bg-white, bg-red-500, bg-blue-600
- [ ] Use regular geometric shapes circle, square, triangle
- [ ] Boldly use oversized typography text-6xl, text-8xl, text-[10rem]
- [ ] Use absolute positioning to create overlapping effects
- [ ] Corners use rounded-none or rounded-full
### Style drift check
- [ ] Does not violate: Do not use gradient colors
- [ ] Does not violate: Do not use soft/low-contrast colors
- [ ] Does not violate: Do not use medium border-radius values like rounded-lg
- [ ] Does not violate: Do not use shadow effects
- [ ] Does not violate: Do not use too many colors (max 3-4)
### Delivery check
- [ ] Responsive layout holds on phone, tablet and desktop with no horizontal overflow
- [ ] Every interactive element has a visible focus state, an accessible name and a reduced-motion path
- [ ] Text contrast meets WCAG AA and colour alone never carries state
- [ ] The result is still recognizable at a glance as Geometric Bold
---
## [EXAMPLES] Example prompts
### 1.
```
Create a design agency portfolio using Geometric Bold style:
- Full-bleed hero with oversized typography
- Project grid with overlapping shapes
- About section with bold number accents
- Contact with geometric form fields
- Black/white base with red/blue accents
- Rotating/offset decorative shapes
- No shadows, no gradients
```
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use gradient colors
- use soft/low-contrast colors
- use medium border-radius values like rounded-lg
- use shadow effects
- use too many colors (max 3-4)
- use symmetrical/conventional layouts
## 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 gradient colors
- [ ] do not use soft/low-contrast colors
- [ ] do not use medium border-radius values like rounded-lg
- [ ] do not use shadow effects
- [ ] do not use too many colors (max 3-4)More prompt libraries: All UI Prompts · Tailwind UI Prompts · Dark Mode UI Prompts
Component Templates
Geometric Bold 风格按钮,强调硬切换色块与几何碰撞反馈
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
FAQ
/* Geometric Bold Global Styles */
@layer base {
body {
@apply bg-white text-black antialiased;
}
h1, h2, h3 {
@apply font-black uppercase tracking-tight;
}
::selection {
@apply bg-black text-white;
}
}
/* Geometric shape utilities */
.shape-circle {
@apply rounded-full;
}
.shape-square {
@apply rounded-none aspect-square;
}
/* Geometric Bold Design Tokens */
:root {
--geometric-bold-primary: #000000;
--geometric-bold-secondary: #ffffff;
--geometric-bold-accent: #ff0000;
--geometric-bold-glow: rgba(0, 0, 0, 0.3);
}
@keyframes geometric-bold-fade-in {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes geometric-bold-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.geometric-bold-card {
position: relative;
overflow: hidden;
}
.geometric-bold-card::before {
content: "";
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
pointer-events: none;
}
.geometric-bold-card:hover::before {
opacity: 1;
}
.geometric-bold-gradient {
background: linear-gradient(135deg, #000000, #ff0000);
}
.geometric-bold-gradient-text {
background: linear-gradient(135deg, #000000, #ff0000);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.geometric-bold-frosted {
backdrop-filter: blur(12px) saturate(180%);
-webkit-backdrop-filter: blur(12px) saturate(180%);
background: rgba(0, 0, 0, 0.08);
}
.geometric-bold-accent-corner {
clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}
.geometric-bold-animate-in {
animation: geometric-bold-fade-in 0.5s ease-out both;
}Compatible Layout Patterns
The following layout patterns pair well with the Geometric Bold style.
Related Styles
Explore these styles for ready-made tokens and components.
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
Geometric Bold style is influenced by Bauhaus and Constructivist art, creating visual impact through simple yet powerful geometric shapes.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: C - Fair
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#000000 / #ffffff | 21:1 | ||
| Secondary text on background | /#ffffff / #ffffff | 1:1 | ||
| Muted text on background | /#4b5563 / #ffffff | 7.56:1 | ||
| Text on secondary background | /#000000 / #000000 | 1:1 | ||
| Secondary text on secondary | /#ffffff / #000000 | 21:1 | ||
| Button primary | /#ffffff / #000000 | 21:1 | ||
| Text on accent 1 | /#000000 / #ef4444 | 5.58:1 | ||
| Alt text on accent 1 | /#ffffff / #ef4444 | 3.76:1 | ||
| Text on accent 2 | /#000000 / #2563eb | 4.06:1 | ||
| Alt text on accent 2 | /#ffffff / #2563eb | 5.17:1 |
Readability
Score
90/100
Font Size
text-sm md:text-base
Font Weight
font-black uppercase 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.
Design Recipes
These curated recipes combine this style with layouts and animations, optimized for specific use cases.