Skip to content

Commit fd7287f

Browse files
authored
fix: TextColor3 default value (#994)
## Changes Corrects the incorrect use of `Color3.new` ## Checks By submitting your pull request for review, you agree to the following: - [x] This contribution was created in whole or in part by me, and I have the right to submit it under the terms of this repository's open source licenses. - [x] I understand and agree that this contribution and a record of it are public, maintained indefinitely, and may be redistributed under the terms of this repository's open source licenses. - [x] To the best of my knowledge, all proposed changes are accurate. ---------
1 parent 727e582 commit fd7287f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en-us/reference/engine/classes/ChatWindowMessageProperties.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ properties:
5959
Color of the text in the chat window.
6060
description: |
6161
Determines the color of the text in the chat window. Default value is
62-
`Datatype.Color3.new(255, 255, 255)` (white).
62+
`Datatype.Color3.fromRGB(255, 255, 255)` (white).
6363
code_samples: []
6464
type: Color3
6565
tags: []
@@ -100,7 +100,7 @@ properties:
100100
Stroke color applied to text in the chat window.
101101
description: |
102102
Determines the stroke color applied to text in the chat window. Default
103-
value is `Datatype.Color3.new(0, 0, 0)` (black).
103+
value is `Datatype.Color3.fromRGB(0, 0, 0)` (black).
104104
code_samples: []
105105
type: Color3
106106
tags: []

0 commit comments

Comments
 (0)