### Install Resend Design Skills
Source: https://github.com/resend/design-skills/blob/main/README.md
Command to install the Resend Design Skills agent into your workflow. This command uses npx to execute the 'skills add' command for the specified skill.
```bash
npx skills add resend/design-skills
```
--------------------------------
### HTML for Resend Layout Patterns
Source: https://context7.com/resend/design-skills/llms.txt
Implements Resend's standard layout patterns for marketing and social graphics. Provides HTML structures for 'Right Object Scene', 'Interface Scene', 'Big Number', and 'Text Only Subtle' layouts, including inline styles for positioning and typography.
```html
The best way to reach
your customers
```
--------------------------------
### Resend Noise Texture URL
Source: https://github.com/resend/design-skills/blob/main/brand-guidelines/SKILL.md
Provides the URL for the 'Noise' texture image, intended for use in hero backgrounds to add atmospheric depth. This is a static asset.
```text
https://resend.com/static/product-pages/noise.png
```
--------------------------------
### Resend Semantic Color System CSS
Source: https://context7.com/resend/design-skills/llms.txt
Implements Resend's semantic color pairs for backgrounds and foregrounds to communicate application states like errors, warnings, success, and informational messages, ensuring consistent user experience.
```css
/* Semantic Color System - Background/Foreground Pairs */
/* Gray - Structure, hierarchy, subtle separation */
.card-subtle {
background-color: #16171AEB;
color: #FDFEFFA6;
}
/* Red - Critical states, irreversible actions */
.alert-error {
background-color: #FF173F2D;
color: #FF9592;
}
/* Amber - Caution and pending states */
.alert-warning {
background-color: #FA820022;
color: #FFCA16;
}
/* Green - Success and completion */
.alert-success {
background-color: #22FF991E;
color: #46FEA5D4;
}
/* Blue - Interactive and informational elements */
.alert-info {
background-color: #0077FF3A;
color: #70B8FF;
}
```
--------------------------------
### CSS for Resend Effects and Textures
Source: https://context7.com/resend/design-skills/llms.txt
Applies glass blur effects and noise textures for depth and visual interest in Resend's designs. Includes styles for glass panels, noise backgrounds, and combined effects. Utilizes backdrop-filter and background-image properties.
```css
/* Glass Blur Effect */
.glass-panel {
backdrop-filter: blur(25px);
background: rgba(0, 0, 0, 0.5);
}
/* Noise Texture - For hero backgrounds and atmospheric depth */
.hero-background {
background-image: url('https://resend.com/static/product-pages/noise.png');
background-blend-mode: overlay;
}
/* Combined Glass + Noise */
.branded-card {
background: #000000;
backdrop-filter: blur(25px);
position: relative;
}
.branded-card::before {
content: '';
position: absolute;
inset: 0;
background-image: url('https://resend.com/static/product-pages/noise.png');
opacity: 0.05;
pointer-events: none;
}
```
--------------------------------
### Resend Logo URLs
Source: https://github.com/resend/design-skills/blob/main/brand-guidelines/SKILL.md
Lists the URLs for Resend's wordmark and lettermark logos in both white and black, available in SVG and PNG formats. These are essential for brand representation.
```text
Wordmark:
- https://cdn.resend.com/brand/resend-wordmark-white.svg
- https://cdn.resend.com/brand/resend-wordmark-white.png
- https://cdn.resend.com/brand/resend-wordmark-black.svg
- https://cdn.resend.com/brand/resend-wordmark-black.png
Lettermark:
- https://cdn.resend.com/brand/resend-icon-white.svg
- https://cdn.resend.com/brand/resend-icon-white.png
- https://cdn.resend.com/brand/resend-icon-black.svg
- https://cdn.resend.com/brand/resend-icon-black.png
```
--------------------------------
### Resend Typography System CSS
Source: https://context7.com/resend/design-skills/llms.txt
Applies Resend's typography scale, defining font families and styles for display headlines, titles, body text, and code blocks. It specifies font sizes, line heights, letter spacing, and font weights, emphasizing sentence case for all text.
```css
/* Font Family Definitions */
@font-face { font-family: 'Domaine Display Narrow'; } /* Display headlines only */
@font-face { font-family: 'Favorit'; } /* Headings & titles */
@font-face { font-family: 'Inter'; } /* Body text */
@font-face { font-family: 'CommitMono'; } /* Code blocks */
/* Display Typography Scale */
.display-large {
font-family: 'Domaine Display Narrow';
font-size: 96px;
line-height: 96px;
letter-spacing: -0.96px;
/* NEVER use bold with Domaine */
font-weight: normal;
}
.display-title {
font-family: 'Favorit';
font-size: 60px;
line-height: 64px;
letter-spacing: -2.8px;
}
.display-small {
font-family: 'Domaine Display Narrow';
font-size: 72px;
line-height: 72px;
letter-spacing: -0.77px;
}
/* Body Typography Scale */
.body-xlarge {
font-family: 'Favorit';
font-weight: 400;
font-size: 24px;
line-height: 32px;
}
.body-large {
font-family: 'Inter';
font-weight: 400; /* or 500 for medium */
font-size: 18px;
line-height: 28px;
}
.body-medium {
font-family: 'Inter';
font-weight: 400; /* 400, 500, or 600 */
font-size: 16px;
line-height: 24px;
}
.body-small {
font-family: 'Inter';
font-weight: 400;
font-size: 14px;
line-height: 20px;
}
.code {
font-family: 'CommitMono';
font-weight: 400;
font-size: 14px;
line-height: 20px;
}
```
--------------------------------
### HTML for Resend Logo Assets
Source: https://context7.com/resend/design-skills/llms.txt
Provides HTML code snippets to access Resend logo assets from a CDN. Includes options for white and black wordmarks and lettermarks in both SVG and PNG formats. Adheres to minimum height and clearspace requirements.
```html