aiCompletionTextStyle property

TextStyle? aiCompletionTextStyle
final

The text style for AI completion ghost text.

This style is applied to the semi-transparent AI suggestion text that appears inline as the user types. If not specified, defaults to the editor's base text style with reduced opacity.

Example:

CodeForge(
  aiCompletionTextStyle: TextStyle(
    color: Colors.grey.withOpacity(0.5),
    fontStyle: FontStyle.italic,
  ),
)

Implementation

final TextStyle? aiCompletionTextStyle;