Add doc comments for ColorScheme layer properties

Nate Butler created

Change summary

styles/src/theme/color_scheme.ts | 9 +++++++++
1 file changed, 9 insertions(+)

Detailed changes

styles/src/theme/color_scheme.ts 🔗

@@ -12,8 +12,17 @@ export interface ColorScheme {
     name: string
     is_light: boolean
 
+    /**
+    * App background, other elements that should sit directly on top of the background.
+    */
     lowest: Layer
+    /**
+    * Panels, tabs, other UI surfaces that sit on top of the background.
+    */
     middle: Layer
+    /**
+    * Editors like code buffers, conversation editors, etc.
+    */
     highest: Layer
 
     ramps: RampSet