@@ -44,7 +44,7 @@ public override void OnGUI(Paper paper, string id, string label, object? value,
4444 if ( ! string . IsNullOrEmpty ( label ) )
4545 paper . Box ( $ "{ id } _lbl")
4646 . Width ( EditorTheme . LabelWidth ) . Height ( EditorTheme . RowHeight ) . ChildLeft ( 4 )
47- . Text ( label , font ) . TextColor ( EditorTheme . Text )
47+ . Text ( label , font ) . TextColor ( EditorTheme . Ink500 )
4848 . FontSize ( EditorTheme . FontSize ) . Alignment ( TextAlignment . MiddleLeft ) ;
4949
5050 // Check if a compatible asset is being dragged over this field
@@ -86,21 +86,21 @@ public override void OnGUI(Paper paper, string id, string label, object? value,
8686 . Width ( 16 ) . Height ( EditorTheme . RowHeight )
8787 . IsNotInteractable ( )
8888 . Text ( icon , font )
89- . TextColor ( eo != null ? EditorTheme . Accent : EditorTheme . TextDisabled )
89+ . TextColor ( eo != null ? EditorTheme . Accent : EditorTheme . Ink500Disabled )
9090 . FontSize ( 10f ) . Alignment ( TextAlignment . MiddleCenter ) ;
9191
9292 // Name
9393 paper . Box ( $ "{ id } _name")
9494 . Height ( EditorTheme . RowHeight ) . Clip ( )
9595 . IsNotInteractable ( )
9696 . Text ( displayName , font )
97- . TextColor ( eo != null ? EditorTheme . Text : EditorTheme . TextDisabled )
97+ . TextColor ( eo != null ? EditorTheme . Ink500 : EditorTheme . Ink500Disabled )
9898 . FontSize ( EditorTheme . FontSize - 1 ) . Alignment ( TextAlignment . MiddleLeft ) ;
9999
100100 // Picker circle button
101101 paper . Box ( $ "{ id } _pick")
102102 . Width ( 20 ) . Height ( EditorTheme . RowHeight )
103- . Text ( EditorIcons . CircleDot , font ) . TextColor ( EditorTheme . TextDim )
103+ . Text ( EditorIcons . CircleDot , font ) . TextColor ( EditorTheme . Ink500Dim )
104104 . FontSize ( 12f ) . Alignment ( TextAlignment . MiddleCenter )
105105 . Hovered . BackgroundColor ( EditorTheme . Accent ) . End ( )
106106 . Rounded ( 3 )
@@ -162,15 +162,15 @@ public static void DrawSelectorModal(Paper paper)
162162 {
163163 paper . Box ( "eo_sel_title" ) . Height ( 32 )
164164 . Text ( $ "Select { _selectorType . Name } ", font )
165- . TextColor ( EditorTheme . Text )
165+ . TextColor ( EditorTheme . Ink500 )
166166 . FontSize ( EditorTheme . FontSize ) . Alignment ( TextAlignment . MiddleLeft ) ;
167167
168168 paper . Box ( "eo_sel_spacer" ) ;
169169
170170 paper . Box ( "eo_sel_close" )
171171 . Width ( 24 ) . Height ( 24 ) . Rounded ( 4 )
172172 . Hovered . BackgroundColor ( Color . FromArgb ( 255 , 180 , 60 , 60 ) ) . End ( )
173- . Text ( EditorIcons . Xmark , font ) . TextColor ( EditorTheme . TextDim )
173+ . Text ( EditorIcons . Xmark , font ) . TextColor ( EditorTheme . Ink500Dim )
174174 . FontSize ( 12f ) . Alignment ( TextAlignment . MiddleCenter )
175175 . OnClick ( 0 , ( _ , _ ) => _selectorOpen = false ) ;
176176 }
@@ -184,7 +184,7 @@ public static void DrawSelectorModal(Paper paper)
184184 . Hovered . BackgroundColor ( EditorTheme . Accent ) . End ( )
185185 . Rounded ( 3 )
186186 . Text ( "None" , font )
187- . TextColor ( EditorTheme . TextDim )
187+ . TextColor ( EditorTheme . Ink500Dim )
188188 . FontSize ( EditorTheme . FontSize ) . Alignment ( TextAlignment . MiddleLeft )
189189 . OnClick ( 0 , ( _ , _ ) =>
190190 {
@@ -201,7 +201,7 @@ public static void DrawSelectorModal(Paper paper)
201201 {
202202 paper . Box ( "eo_sel_bi_hdr" ) . Height ( EditorTheme . RowHeight ) . ChildLeft ( 6 )
203203 . Text ( $ "{ EditorIcons . Cube } Built-In", font )
204- . TextColor ( EditorTheme . TextDim )
204+ . TextColor ( EditorTheme . Ink500Dim )
205205 . FontSize ( EditorTheme . FontSize - 2 ) . Alignment ( TextAlignment . MiddleLeft ) ;
206206
207207 for ( int i = 0 ; i < builtInItems . Count ; i ++ )
@@ -219,7 +219,7 @@ public static void DrawSelectorModal(Paper paper)
219219
220220 paper . Box ( "eo_sel_proj_hdr" ) . Height ( EditorTheme . RowHeight ) . ChildLeft ( 6 )
221221 . Text ( $ "{ EditorIcons . FolderOpen } Project", font )
222- . TextColor ( EditorTheme . TextDim )
222+ . TextColor ( EditorTheme . Ink500Dim )
223223 . FontSize ( EditorTheme . FontSize - 2 ) . Alignment ( TextAlignment . MiddleLeft ) ;
224224
225225 for ( int i = 0 ; i < projectItems . Count ; i ++ )
@@ -234,7 +234,7 @@ public static void DrawSelectorModal(Paper paper)
234234 {
235235 paper . Box ( "eo_sel_empty" ) . Height ( 40 )
236236 . Text ( "No assets of this type found" , font )
237- . TextColor ( EditorTheme . TextDisabled )
237+ . TextColor ( EditorTheme . Ink500Disabled )
238238 . FontSize ( EditorTheme . FontSize - 2 ) . Alignment ( TextAlignment . MiddleCenter ) ;
239239 }
240240 }
@@ -257,17 +257,17 @@ private static void DrawSelectorItem(Paper paper, Prowl.Scribe.FontFile font, st
257257 {
258258 paper . Box ( $ "{ id } _ico")
259259 . Width ( 14 ) . Height ( EditorTheme . RowHeight )
260- . Text ( icon , font ) . TextColor ( EditorTheme . TextDim )
260+ . Text ( icon , font ) . TextColor ( EditorTheme . Ink500Dim )
261261 . FontSize ( 9f ) . Alignment ( TextAlignment . MiddleCenter ) ;
262262
263263 paper . Box ( $ "{ id } _name")
264264 . Height ( EditorTheme . RowHeight ) . Clip ( )
265- . Text ( name , font ) . TextColor ( EditorTheme . Text )
265+ . Text ( name , font ) . TextColor ( EditorTheme . Ink500 )
266266 . FontSize ( EditorTheme . FontSize ) . Alignment ( TextAlignment . MiddleLeft ) ;
267267
268268 paper . Box ( $ "{ id } _path")
269269 . Width ( UnitValue . Auto ) . Height ( EditorTheme . RowHeight ) . ChildRight ( 4 )
270- . Text ( $ "({ pathLabel } )", font ) . TextColor ( EditorTheme . TextDisabled )
270+ . Text ( $ "({ pathLabel } )", font ) . TextColor ( EditorTheme . Ink500Disabled )
271271 . FontSize ( EditorTheme . FontSize - 4 ) . Alignment ( TextAlignment . MiddleRight ) ;
272272 }
273273 }
0 commit comments