HomeStylesTemplates
StyleKit
StylesTemplatesCommunity
  1. Home
  2. /Styles
  3. /Notion Style
Style Catalog/Notion Style

Notion Style

Notion 风格

C
71/100Fair
Rate this style

A minimalist and clean document tool style emphasizing content readability and functionality, using subtle borders, gentle hover effects, and clear typographic hierarchy.

Notion styleNotion uidocument toolminimal uiclean designnote-taking appproductivity toolworkspace uisidebar navigationkanban boardsubtle borderstypography hierarchy
View Full Showcase →
Templates

Best For

Notion style / Notion ui / document tool

Primary Move

Use Notion's signature beige background #f7f6f3

Watch Out

Do NOT use large border radii rounded-2xl or larger

Showcase Entry

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

View Full Showcase →

Color Palette

Primary

#37352f

Secondary

#ffffff

Accent 1

#2eaadc

Accent 2

#eb5757

Accent 3

#0f7b6c

Accent 4

#a083ff

AI ImplementationRatings & FeedbackComponent PreviewReadinessFAQExports

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: Notion Style
style_slug: notion-style
style_source: /styles/notion-style

# 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 Notion Style design frontend development expert. All generated code must strictly follow these constraints:

## Absolute Prohibitions

- Using large radii rounded-2xl, rounded-3xl, rounded-full
- Using gradient backgrounds bg-gradient-*
- Using heavy shadows shadow-xl, shadow-2xl
- Using overly vibrant colors
- Excessive decoration and animation

## Must Follow

- Notion beige background bg-[#f7f6f3]
- Subtle borders border border-gray-200
- Small radii rounded-md or rounded-lg
- Gentle hover hover:bg-gray-100
- Clear typographic hierarchy

## Color Palette

Primary:
- Text: text-[#37352f] (Notion dark gray)
- Background: bg-white, bg-[#f7f6f3]
- Border: border-gray-200

Accent colors:
- Blue: text-[#2eaadc], bg-blue-50
- Red: text-[#eb5757], bg-red-50
- Green: text-[#0f7b6c], bg-green-50
- Yellow: text-[#dfab01], bg-yellow-50

## Interactions

- Hover: hover:bg-[#efedea] (Block Highlighting, extremely low signal-to-noise)
- Selected: bg-[#e3e1db] (Micro-click, only deepens background)
- Focus: focus:ring-2 focus:ring-blue-500/30

## Animation & Interaction Rules

- Ultimate Restraint: Strictly prohibit any translate or scale animations; document tools require absolute visual stability.
- Block Highlighting: Hover background shifts from #f7f6f3 to #efedea (about 5% brightness change), transition-colors duration-150, signal-to-noise ratio intentionally kept extremely low.
- Drag Handle Illusion: Cards/list items use group class, left-side drag handle opacity-0 group-hover:opacity-100 transition-opacity duration-150, this is Notion's signature UX pattern.
- Micro-click: Active state only deepens background to #e3e1db, no other visual changes, embodying the restraint of an efficiency tool.

## Self-Check

After generating code, verify:
1. No gradients used
2. Moderate radii (rounded-md or rounded-lg)
3. Gentle shadows (shadow-sm or shadow-md)
4. Overall feel is clean and refreshing

---

# Notion Style Design System

> A minimalist and clean document tool style emphasizing content readability and functionality, using subtle borders, gentle hover effects, and clear typographic hierarchy.

## Design Philosophy

Notion Style is a minimalist design style originating from the Notion app, emphasizing content readability and intuitive functionality. Through subtle visual elements and clear hierarchical structure, it lets users focus on the content itself.

Core principles:
- Content first: Design serves content, never overshadowing it
- Functional clarity: Every element has a clear functional purpose
- Subtle interactions: Hover and click feedback are gentle and natural
- Clear hierarchy: Information levels distinguished through font size and color

---

## Token Dictionary (exact class mapping)

### Border
```
Width: border
Color: border-gray-200
Radius: rounded-md
```

### Shadow
```
sm: shadow-sm
md: shadow-md
lg: shadow-lg
hover: hover:shadow-md
focus: focus:shadow-sm
```

### Interaction
```
Hover translate: (none)
Hover scale: (none)
Hover opacity: hover:bg-gray-100
Transition: transition-colors duration-150
Active: active:scale-95
```

### Typefaces
```
Heading: font-semibold text-gray-900
Body: text-gray-700
Mono: font-mono text-gray-600 text-sm
```

### Type scale
```
Hero: text-4xl md:text-5xl
H1: text-3xl md:text-4xl
H2: text-2xl md:text-3xl
H3: text-xl md:text-2xl
Body: text-base
Small: text-sm
```

### Spacing
```
Section: py-12 md:py-16
Container: px-4 md:px-6
Card: p-4 md:p-6
Gap sm: gap-2
Gap md: gap-4
Gap lg: gap-6
```

### Color roles
```
Background primary: bg-white
Background secondary: bg-[#f7f6f3]
Background accent: bg-blue-50, bg-red-50, bg-green-50, bg-yellow-50
Text primary: text-[#37352f]
Text secondary: text-gray-600
Text muted: text-gray-400
Button primary: bg-[#2eaadc] text-white
Button secondary: bg-gray-100 text-gray-700
```

---

## [FORBIDDEN]

These classes are banned in this style. Check for them before returning code:

### Banned classes
- `rounded-2xl`
- `rounded-3xl`
- `rounded-full`
- `shadow-2xl`
- `bg-gradient-to-r`
- `bg-gradient-to-br`

### Banned patterns
- matches `^rounded-(?:2xl|3xl|full)`
- matches `^shadow-(?:2xl|inner)`
- matches `^bg-gradient`

### Why they are banned
- `rounded-2xl`: Notion style uses subtle rounded corners (rounded-md or rounded-lg)
- `rounded-full`: Notion style avoids pill-shaped elements except for avatars
- `shadow-2xl`: Notion style uses minimal, subtle shadows
- `bg-gradient-to-r`: Notion style uses flat, solid colors without gradients

> WARNING: if your code contains any of the above, replace it before shipping.

---

## [REQUIRED]

### Every button must include
```
px-3 py-1.5
rounded-md
text-sm font-medium
hover:bg-gray-100
transition-colors duration-150
```

### Every card must include
```
bg-white
border border-gray-200
rounded-lg
shadow-sm
```

### Every input must include
```
bg-white
border border-gray-200
rounded-md
text-gray-900 placeholder-gray-400
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent
transition-all
```

---

## [COMPARE] Notion Style 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="px-3 py-1.5 rounded-md text-sm font-medium hover:bg-gray-100 transition-colors duration-150 bg-[#2eaadc] 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="bg-white border border-gray-200 rounded-lg shadow-sm p-4 md:p-6">
  <h3 class="font-semibold text-gray-900 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="bg-white border border-gray-200 rounded-md text-gray-900 placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all" placeholder="{PLACEHOLDER}" />
```

---

## [TEMPLATES] Notion Style 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-[#37352f] border border-gray-200 px-4 md:px-6">
  <div class="flex items-center justify-between max-w-6xl mx-auto gap-4">
    <a href="/" class="font-semibold text-gray-900 text-xl md:text-2xl">
      {LOGO_TEXT}
    </a>
    <div class="flex gap-4 text-gray-700 text-sm">
      {NAV_LINKS}
    </div>
  </div>
</nav>
```

### Hero section
```html
<section class="bg-blue-50 text-[#37352f] py-12 md:py-16 px-4 md:px-6">
  <div class="max-w-4xl mx-auto">
    <h1 class="font-semibold text-gray-900 text-4xl md:text-5xl">
      {HEADLINE}
    </h1>
    <p class="text-gray-700 text-base max-w-xl">
      {SUBHEADLINE}
    </p>
    <button class="px-3 py-1.5 rounded-md text-sm font-medium hover:bg-gray-100 transition-colors duration-150 bg-[#2eaadc] text-white">
      {CTA_TEXT}
    </button>
  </div>
</section>
```

### Card grid
```html
<section class="bg-white text-[#37352f] py-12 md:py-16 px-4 md:px-6">
  <div class="max-w-6xl mx-auto">
    <h2 class="font-semibold text-gray-900 text-2xl md:text-3xl">{SECTION_TITLE}</h2>
    <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
      <!-- Card template - repeat for each card -->
      <div class="bg-white border border-gray-200 rounded-lg shadow-sm p-4 md:p-6">
        <h3 class="font-semibold text-gray-900 text-xl md:text-2xl">{CARD_TITLE}</h3>
        <p class="text-gray-700 text-base text-gray-400">{CARD_DESCRIPTION}</p>
      </div>
    </div>
  </div>
</section>
```

### Form input
```html
<input class="bg-white border border-gray-200 rounded-md text-gray-900 placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all" placeholder="{PLACEHOLDER}" />
```

### Footer
```html
<footer class="bg-[#f7f6f3] text-gray-600 py-12 md:py-16 px-4 md:px-6">
  <div class="max-w-6xl mx-auto">
    <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
      <div>
        <span class="font-semibold text-gray-900 text-xl md:text-2xl">{LOGO_TEXT}</span>
        <p class="text-gray-700 text-sm">{TAGLINE}</p>
      </div>
      <div>
        <h4 class="font-semibold text-gray-900 text-xl md:text-2xl">{COLUMN_TITLE}</h4>
        <ul class="text-gray-700 text-sm">
          {FOOTER_LINKS}
        </ul>
      </div>
    </div>
  </div>
</footer>
```

---

## [CHECKLIST] Notion Style post-generation self check

**Before returning code, verify every token and rule below. Fix any violation before delivering:**

### Token check
- [ ] Button includes: `px-3 py-1.5 rounded-md text-sm font-medium hover:bg-gray-100 transition-colors duration-150`
- [ ] Card includes: `bg-white border border-gray-200 rounded-lg shadow-sm`
- [ ] Input includes: `bg-white border border-gray-200 rounded-md text-gray-900 placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all`

### Forbidden check
- [ ] Not using `rounded-2xl`
- [ ] Not using `rounded-3xl`
- [ ] Not using `rounded-full`
- [ ] Not using `shadow-2xl`
- [ ] Not using `bg-gradient-to-r`
- [ ] Not using `bg-gradient-to-br`

### Style rule check
- [ ] Use Notion's signature beige background #f7f6f3
- [ ] Use subtle borders border-gray-200
- [ ] Use light gray background for hover effects hover:bg-gray-100
- [ ] Maintain clear typographic hierarchy
- [ ] Use system font stack for readability

### Style drift check
- [ ] Does not violate: Do NOT use large border radii rounded-2xl or larger
- [ ] Does not violate: Do NOT use gradient backgrounds
- [ ] Does not violate: Do NOT use heavy shadows
- [ ] Does not violate: Do NOT use overly vibrant colors
- [ ] Does not violate: Do NOT over-decorate

### 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 Notion Style

## Absolute Bans (Match and Refuse)

If any of the following patterns appear, it is a style violation — rewrite without exception.

- use large border radii rounded-2xl or larger
- use gradient backgrounds
- use heavy shadows
- use overly vibrant colors
- over-decorate
- use any translate or scale animations (breaks reading stability of document tools)
- add border changes or shadow jumps on hover (signal-to-noise ratio too high, distracts user focus on content)
- use hover:-translate-y-* float effects on buttons (Notion is a flat document, no floating 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 large border radii rounded-2xl or larger
- [ ] do NOT use gradient backgrounds
- [ ] do NOT use heavy shadows
- [ ] do NOT use overly vibrant colors
- [ ] do NOT over-decorate

More prompt libraries: All UI Prompts · Tailwind UI Prompts · Dark Mode UI Prompts

Community

Ratings & Feedback

No ratings yet - be the firstSign in to rate
0 comments
Sign in to post a comment. Sign In

Component Templates

Component Preview

按钮

Notion 风格按钮,极度克制的 Block Highlighting + Micro-click 反馈

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

51%

Fallback

Dark Mode

0%

Missing

UI States

79%

Partial

Motion

70%

Partial

A11y

70%

Partial

Performance

35%

Fallback

Key State Coverage

light
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

  • No curated dark-mode contract exists yet.
  • 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.

FAQ

Notion Style — Frequently Asked Questions

01What is the Notion Style design style?
A minimalist and clean document tool style emphasizing content readability and functionality, using subtle borders, gentle hover effects, and clear typographic hierarchy. Its core principle: Notion Style is a minimalist design style originating from the Notion app, emphasizing content readability and intuitive functionality.
02What colors does Notion Style use?
Notion Style uses #37352f as its primary color and #ffffff as its secondary color, with accent colors #2eaadc, #eb5757, #0f7b6c, #a083ff. Every hex value can be copied from the palette on this page.
03How do I apply Notion Style correctly?
Key practices: Use Notion's signature beige background #f7f6f3. Use subtle borders border-gray-200. Use light gray background for hover effects hover:bg-gray-100.
04What are common mistakes with Notion Style?
Avoid: Do NOT use large border radii rounded-2xl or larger. Do NOT use gradient backgrounds. Do NOT use heavy shadows.
05How do I prompt AI to generate Notion Style UI?
Copy the ready-made AI prompt on this page — it bundles the design tokens and component rules — and paste it into ChatGPT, Claude, Claude Code, or Codex. Effective prompts include the keywords: Notion style, Notion ui, document tool, minimal ui.
Global Styles

Global CSS

css
/* Notion Style 全局样式 */

:root {
  --notion-text: #37352f;
  --notion-text-gray: #9b9a97;
  --notion-bg: #ffffff;
  --notion-bg-gray: #f7f6f3;
  --notion-blue: #2eaadc;
  --notion-red: #eb5757;
  --notion-green: #0f7b6c;
  --notion-yellow: #dfab01;
  --notion-border: rgba(55, 53, 47, 0.09);
}

/* 基础文字样式 */
body {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif;
  color: var(--notion-text);
  line-height: 1.5;
}

/* Notion 风格链接 */
.notion-link {
  color: var(--notion-text);
  text-decoration: underline;
  text-decoration-color: rgba(55, 53, 47, 0.4);
  text-underline-offset: 2px;
}

.notion-link:hover {
  text-decoration-color: var(--notion-text);
}

/* Notion 风格代码块 */
.notion-code {
  font-family: SFMono-Regular, Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace;
  font-size: 85%;
  background: rgba(135, 131, 120, 0.15);
  border-radius: 3px;
  padding: 0.2em 0.4em;
}

/* Notion 风格分割线 */
.notion-divider {
  border: none;
  border-top: 1px solid var(--notion-border);
  margin: 1rem 0;
}
@keyframes notion-style-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes notion-style-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.notion-style-card {
  position: relative;
  overflow: hidden;
}

.notion-style-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, rgba(55, 53, 47, 0.05), transparent);
  pointer-events: none;
}

.notion-style-card:hover::before {
  opacity: 1;
}

.notion-style-gradient {
  background: linear-gradient(135deg, #37352f, #2eaadc);
}

.notion-style-gradient-text {
  background: linear-gradient(135deg, #37352f, #2eaadc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.notion-style-frosted {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(55, 53, 47, 0.08);
}

.notion-style-accent-corner {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}

.notion-style-animate-in {
  animation: notion-style-fade-in 0.5s ease-out both;
}

Compatible Layout Patterns

Recommended Layouts

The following layout patterns pair well with the Notion Style style.

F-Pattern Layout

F型布局

Holy Grail Layout

圣杯布局

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

Notion Style is a minimalist design style originating from the Notion app, emphasizing content readability and intuitive functionality. Through subtle visual elements and clear hierarchical structure, it lets users focus on the content itself.

Accessibility

Accessibility Score

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

71

Overall Score

Grade: C - Fair

Contrast Ratios

Score: 68/100Average Ratio: 7.23:1
AA FailAAA Fail
ContextColorsRatioAAAAA
Text on background
/#37352f / #ffffff
12.26:1
Secondary text on background
/#4b5563 / #ffffff
7.56:1
Muted text on background
/#9ca3af / #ffffff
2.54:1
Text on secondary background
/#37352f / #f7f6f3
11.35:1
Secondary text on secondary
/#4b5563 / #f7f6f3
6.99:1
Button primary
/#ffffff / #2eaadc
2.66:1

Readability

Score

77/100

Font Size

text-base

Font Weight

font-semibold text-gray-900

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

Recommended Combinations with Notion Style

These curated recipes combine this style with layouts and animations, optimized for specific use cases.

Notion-Style Blog

Clean, distraction-free writing experience.

notion-styleholy-grail-layout+1
lightdeveloper-friendly

StyleKit

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

FeedbackSupport Maintenance
Explore+
StylesTemplatesAnimationsResource LibraryPromptsCollectionsCommunity
Learn+
FoundationsGuideRecipesChangelogBlog
Trust+
AboutContactPrivacyTermsSupport UsRefunds

(c) 2026 StyleKit. Open source project.

闄旾CP澶?025065501鍙?3

Colophon/SK — 2026

Built with the Editorial style

01FeedbackTell us what could work better02Support MaintenanceIf StyleKit helps your workflow, voluntary support helps cover servers, domains, and ongoing upkeep.

StyleKit

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

GitHub Repository

Explore

StylesTemplatesAnimationsResource LibraryPromptsCollectionsCommunity

Learn

FoundationsGuideRecipesChangelogBlog

Dispatch

Get notified when new styles, templates and tools ship.

Stay Updated

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

(c) 2026 StyleKit. Open source project.

AboutContactPrivacyTermsSupport UsRefunds/陕ICP备2025065501号-3

StyleKit