diff --git a/change/@fluentui-react-text-7d0596ae-35b5-4421-ad38-da76aa46d9ab.json b/change/@fluentui-react-text-7d0596ae-35b5-4421-ad38-da76aa46d9ab.json
new file mode 100644
index 0000000000000..58975b642bb16
--- /dev/null
+++ b/change/@fluentui-react-text-7d0596ae-35b5-4421-ad38-da76aa46d9ab.json
@@ -0,0 +1,7 @@
+{
+ "type": "none",
+ "comment": "Add converged Text spec",
+ "packageName": "@fluentui/react-text",
+ "email": "andredias@microsoft.com",
+ "dependentChangeType": "none"
+}
diff --git a/packages/react-text/Spec.md b/packages/react-text/Spec.md
new file mode 100644
index 0000000000000..43aec45eb33a0
--- /dev/null
+++ b/packages/react-text/Spec.md
@@ -0,0 +1,156 @@
+# @fluentui/react-text Spec
+
+## Background
+
+Text is a typography and styling abstraction component that can be used to ensure the consistency of all text across your application.
+
+Fabric used the `variant` prop to set any styling/format to the Text component, while also providing other utilities like `nowrap` and `block`.
+
+```jsx
+This is a Text component
+
+Text
+
+Text
+
+Text with ellipsis
+```
+
+Stardust's approach provides a more open API, allowing the user to customize `Text` to their own specific needs.
+
+```jsx
+
+
+
+
+
+
+
+
+
+```
+
+## Prior Art
+
+- [Open UI research](https://github.com/openui/open-ui/pull/351)
+- [Convergence epic](https://github.com/microsoft/fluentui/issues/16847)
+
+## Comparison of [Fabric Text](https://developer.microsoft.com/en-us/fluentui#/controls/web/text) and [Stardust Text](https://fluentsite.z22.web.core.windows.net/0.56.0/components/text/definition)
+
+| Purpose | Fabric | Northstar | Matching |
+| ---------------------------------------------------------------------------------------------------------------- | ------- | ------------- | -------------------- |
+| An element type to render as (string or component). | as | as | Matching |
+| Truncates text as needed | nowrap | truncated | Matching |
+| Set font size for text | variant | size | Matching |
+| Renders Text as a block element | block | | Missing in Northstar |
+| Accessibility behavior if overridden by the user. | | accessibility | Missing in Fabric |
+| Align text content. | | align | Missing in Fabric |
+| At mentions can be formatted to draw users' attention. Mentions for "me" can be formatted to appear differently. | | atMention | Missing in Fabric |
+| A component can have a color. | | color | Missing in Fabric |
+| Shorthand for primary content. | | content | Missing in Fabric |
+| Set as disabled Text component | | disabled | Missing in Fabric |
+| Set as error Text component | | error | Missing in Fabric |
+| The text can appear more important and draw user's attention | | important | Missing in Fabric |
+| Set as success Text component | | success | Missing in Fabric |
+| The text can signify a temporary state | | temporary | Missing in Fabric |
+| Set as timestamp Text component | | timestamp | Missing in Fabric |
+| Override for theme site variables to allow modifications of component styling via themes. | | variables | Missing in Fabric |
+| The weight for the Text component | | weight | Missing in Fabric |
+| Additional CSS class name(s) to apply. | | className | Missing in Fabric |
+| Additional CSS styles to apply to the component instance. | | styles | Missing in Fabric |
+| - | | design | Missing in Fabric |
+
+## API Proposal
+
+The new Text will provide props to customize text according to the standards defined by Fluent design. The component will not be tied down to specific application usage, like Stardust did, for example, with `mention` and `timestamp` props, and will allow a bigger degree of freedom when customizing, unlike we did in Fabric.
+We're also introducing a new concept of wrappers for the main design variants (i.e. 'Title', 'Subtitle', 'Caption') to improve readability and semantics of the code. The wrappers are expected to have fixed styles in terms of size and font family, but flexible for the other supported props in Text.
+These wrappers follow the Fluent UI language so for any deviation, regarding the fixed styles mentioned above, should use the Text component instead, given that this is fully customizable.
+
+| Property | Type | Default value | Comments |
+| ------------- | ---------------------------------------------------------------------- | ------------- | -------- |
+| as | "span" \| "p" \| "h1" \| "h2" \| "h3" \| "h4" \| "h5" \| "h6" \| "pre" | "span" | |
+| wrap | boolean | true | |
+| truncate | boolean | false | |
+| block | boolean | false | |
+| italic | boolean | false | |
+| underline | boolean | false | |
+| strikethrough | boolean | false | |
+| size | number - 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000 | 300 | |
+| font | string - "base" \| "monospace" \| "numeric" | "base" | |
+| weight | string - "regular" \| "medium" \| "semibold" | "regular" | |
+| align | string - "start" \| "center" \| "end" \| "justify" | "start" | |
+
+### make-styles rules
+
+Finally, we're also making available the styling used internally in Text for a lightweight styling solution if you want to avoid using Text or the added JavaScript layers of Text/wrappers.
+This is achieved with the `make-styles` rules being available to the user so that they can follow the Fluent design standards for Typography.
+
+## Sample Code
+
+### Using Text
+
+```jsx
+This text is semibold and huge.
+
+Text aligned to the end
+
+This text has a strikethrough.
+```
+
+### Using the wrappers
+
+```jsx
+This text is huge.
+This is a large title.
+
Title
+Sub title
+Captioned
+```
+
+### Using styles directly
+
+```jsx
+import { useTypographyStyles } from '@fluentui/react-text';
+
+const Test = () => {
+ const typographyStyles = useTypographyStyles();
+
+ return (
+ <>
+ I am styled like a display
+ I am styled like a title
+ I am styled like a subtitle
+ >
+ );
+};
+```
+
+## Behaviours
+
+### Screen readers
+
+#### Truncate
+
+When using a screen reader, truncated text will be read completely, as truncation is used strictly to prevent text overflow.
+
+Sample:
+
+```jsx
+This is a very long text that will be truncated.
+```
+
+Visual result:
+
+```
+This is a very long text...
+```
+
+Screen reader:
+
+```
+This is a very long text that will be truncated.
+```
+
+## Accesibility
+
+Accessibility is included in the entirety of the spec and there are no specific themes to address here.