@@ -598,6 +598,26 @@ tsconfig.json`;
598598 document . getElementById ( 'designer-max' ) . checked = true ;
599599 document . getElementById ( 'designer-show-filetree' ) . checked = true ;
600600
601+ // Set height and colors for coding example
602+ const heightSlider = document . getElementById ( 'designer-height' ) ;
603+ const heightValue = document . getElementById ( 'height-value' ) ;
604+ if ( heightSlider ) {
605+ heightSlider . value = '500' ;
606+ if ( heightValue ) {
607+ heightValue . textContent = '500' ;
608+ }
609+ }
610+
611+ // Set developer-friendly color scheme (purple/violet)
612+ document . getElementById ( 'designer-light-color' ) . value = '#8b5cf6' ;
613+ document . getElementById ( 'designer-light-color-text' ) . value = '#8b5cf6' ;
614+ document . getElementById ( 'designer-dark-color' ) . value = '#a78bfa' ;
615+ document . getElementById ( 'designer-dark-color-text' ) . value = '#a78bfa' ;
616+
617+ // Set dark theme mode for coding
618+ this . config . themeMode = 'dark' ;
619+ this . updateThemeModeButtons ( ) ;
620+
601621 // Update config from form
602622 this . updateConfigFromForm ( ) ;
603623
@@ -621,6 +641,26 @@ Can you suggest a menu with appetizers, main course, and dessert that would work
621641 document . getElementById ( 'designer-max' ) . checked = false ;
622642 document . getElementById ( 'designer-show-filetree' ) . checked = false ;
623643
644+ // Set height and colors for chat example
645+ const heightSlider = document . getElementById ( 'designer-height' ) ;
646+ const heightValue = document . getElementById ( 'height-value' ) ;
647+ if ( heightSlider ) {
648+ heightSlider . value = '350' ;
649+ if ( heightValue ) {
650+ heightValue . textContent = '350' ;
651+ }
652+ }
653+
654+ // Set friendly color scheme (green)
655+ document . getElementById ( 'designer-light-color' ) . value = '#10b981' ;
656+ document . getElementById ( 'designer-light-color-text' ) . value = '#10b981' ;
657+ document . getElementById ( 'designer-dark-color' ) . value = '#34d399' ;
658+ document . getElementById ( 'designer-dark-color-text' ) . value = '#34d399' ;
659+
660+ // Set light theme mode for chat
661+ this . config . themeMode = 'light' ;
662+ this . updateThemeModeButtons ( ) ;
663+
624664 // Update config from form
625665 this . updateConfigFromForm ( ) ;
626666
0 commit comments