How to add a description to theme options?

I know i can use "Text" to add title and description, but it must include a textbox or textarea.
Like the picture , if i leave the "Type" empty, it will add a textarea automaticly.
How can i add a description without adding a textarea or textbox to theme options? Nothing but only a description area.
0
Comments
Simply add a
Descriptionto the options!$ThemeInfo['jeongwee'] = [ ... 'Options' => [ 'Description' => 'If you like this theme, please consider giving me all your money', 'Styles' => [ 'day' => '%s_light', 'night' => '%s_dark' ], 'Text' => [ 'FunnyQuote' => [ 'Description' => 'Some text which will be displayed somewhere', 'Type' => 'textbox' ] ] ] ];Thank you
@R_J