@@ -22,10 +22,6 @@ This file controls everything from styling and navigation to integrations.
2222 The name of the project, organization, or product Minimum length: 1
2323</ResponseField >
2424
25- <ResponseField name = " description" type = " string" >
26- Optional description used for SEO and LLM indexing
27- </ResponseField >
28-
2925<ResponseField name = " colors" type = " object" required >
3026 The colors to use in your documentation. At the very least, you must define the primary color. For example:
3127 ``` json
@@ -40,21 +36,25 @@ This file controls everything from styling and navigation to integrations.
4036 <ResponseField name = " primary" type = " string matching ^#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$" required >
4137 The primary color of the theme
4238
43- Must match pattern: ^#( [ a-fA-F0-9 ] { 6 } | [ a-fA-F0-9 ] { 3 } )$
39+ Must be a hex code beginning with ` # `
4440 </ResponseField >
4541 <ResponseField name = " light" type = " string matching ^#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$" >
4642 The light color of the theme. Used for dark mode
4743
48- Must match pattern: ^#( [ a-fA-F0-9 ] { 6 } | [ a-fA-F0-9 ] { 3 } )$
44+ Must be a hex code beginning with ` # `
4945 </ResponseField >
5046 <ResponseField name = " dark" type = " string matching ^#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$" >
5147 The dark color of the theme. Used for light mode
5248
53- Must match pattern: ^#( [ a-fA-F0-9 ] { 6 } | [ a-fA-F0-9 ] { 3 } )$
49+ Must be a hex code beginning with ` # `
5450 </ResponseField >
5551 </Expandable >
5652</ResponseField >
5753
54+ <ResponseField name = " description" type = " string" >
55+ Optional description used for SEO and LLM indexing
56+ </ResponseField >
57+
5858<ResponseField name = " logo" type = " string or object" >
5959 The logo (for both light and dark mode)
6060
0 commit comments