diff --git a/content/collections/fieldtypes/html.md b/content/collections/fieldtypes/html.md
index f2c60ed41..75333ca68 100644
--- a/content/collections/fieldtypes/html.md
+++ b/content/collections/fieldtypes/html.md
@@ -14,6 +14,8 @@ options:
description: "Store whatever HTML you want — it's up to you."
id: 55e0bd1d-4880-42ee-9a09-c4ece62f6483
---
+For simpler and pre-styled instructions, tips, and warnings with Markdown support, check out the [Info fieldtype](/fieldtypes/info).
+
## Data Structure
This fieldtype is presentation-only and stores no data.
diff --git a/content/collections/fieldtypes/info.md b/content/collections/fieldtypes/info.md
new file mode 100644
index 000000000..6d06863a9
--- /dev/null
+++ b/content/collections/fieldtypes/info.md
@@ -0,0 +1,77 @@
+---
+id: 84f0c91b-8e77-47af-a137-e7978a81584d
+blueprint: fieldtype
+title: Info
+description: 'Display prominent instructions, tips, and warnings in your publish forms.'
+screenshot: fieldtypes/screenshots/v6/info-fieldtype-tip-example.jpg
+intro: |
+ The Info fieldtype displays a styled message in your Control Panel publish forms. Use it to give authors a helpful tip, highlight important instructions, or warn them about something before they hit save.
+options:
+ -
+ name: content
+ type: string
+ description: 'The information to display. Supports Markdown, including links and lists.'
+ -
+ name: state
+ type: string
+ description: 'The visual style of the message. Choose from `notice`, `tip`, `warning`, `important`, or `success`. Default: `notice`.'
+ -
+ name: alert_icon
+ type: string
+ description: "Choose an icon from Statamic's built-in icons. Leave empty to use the state's default icon."
+---
+## Overview
+
+When a field's instructions need a little more attention, add an Info field to your blueprint. Its content is configured in the blueprint, so authors see your message while editing without being able to change it.
+
+This fieldtype is presentation-only: it displays in the Control Panel and stores no data.
+
+For full control over the markup and more custom content, use the [HTML fieldtype](/fieldtypes/html).
+
+```yaml
+-
+ handle: publishing_tip
+ field:
+ type: info
+ content: |
+ **Before you publish**, make sure you've:
+
+ - Added a featured image.
+ - Written a short summary for the listing page.
+ - Checked the [editorial guidelines](https://example.com/editorial-guidelines).
+ state: tip
+ alert_icon: lightbulb-idea
+```
+
+Markdown is sanitized before being displayed, and links open in a new tab.
+
+## States
+
+Choose a state to match the importance of your message. Each state has its own color and default icon.
+
+| State | Label | Color |
+| --- | --- | --- |
+| `notice` | Notice (default) | Gray |
+| `tip` | Tip | Blue |
+| `warning` | Warning | Yellow |
+| `important` | Important Warning | Red |
+| `success` | Success | Green |
+
+You can override the default icon using the **Icon** picker in the field's configuration, or by setting `alert_icon` in YAML.
+
+## Conditional Display
+
+You can use [conditional field rules](/conditional-fields) to show an Info field only when it's relevant. For example, display a reminder when a `summary` field is empty:
+
+```yaml
+-
+ handle: summary_reminder
+ field:
+ type: info
+ content: 'Add a short summary for the listing page before publishing.'
+ state: warning
+ if:
+ summary: empty
+```
+
+The reminder disappears once the author fills in the summary. How neat is that?
diff --git a/public/img/fieldtypes/icons/info.svg b/public/img/fieldtypes/icons/info.svg
new file mode 100644
index 000000000..0354866fa
--- /dev/null
+++ b/public/img/fieldtypes/icons/info.svg
@@ -0,0 +1 @@
+
diff --git a/public/img/fieldtypes/screenshots/v6/info-fieldtype-tip-example.jpg b/public/img/fieldtypes/screenshots/v6/info-fieldtype-tip-example.jpg
new file mode 100644
index 000000000..b50dd5499
Binary files /dev/null and b/public/img/fieldtypes/screenshots/v6/info-fieldtype-tip-example.jpg differ