File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 156156 const leftMargin = 20 ;
157157 const topMargin = 10 ;
158158 const indentWidth = 40 ; // Increased from 24 for wider indent
159- const boxPadding = 8 ;
160- const maxBoxWidth = 280 ; // Max width for text in box
159+ const boxPadding = 12 ; // Increased from 8 for more padding
160+ const maxBoxWidth = 360 ; // Increased from 280 for wider boxes
161161 const maxCharsPerLine = Math . floor ( maxBoxWidth / charWidth ) ;
162162
163163 // Calculate box dimensions for each item
204204 rect . setAttribute ( 'height' , item . boxHeight ) ;
205205
206206 if ( item . type === 'outcome' ) {
207- // Outcomes: lighter background, dashed border
208- rect . setAttribute ( 'fill' , '#f9f9f9 ' ) ;
209- rect . setAttribute ( 'stroke' , '#ccc ' ) ;
207+ // Outcomes: pale red background, dashed border
208+ rect . setAttribute ( 'fill' , '#ffe6e6 ' ) ;
209+ rect . setAttribute ( 'stroke' , '#d9534f ' ) ;
210210 rect . setAttribute ( 'stroke-width' , '1' ) ;
211211 rect . setAttribute ( 'stroke-dasharray' , '3,3' ) ;
212212 } else {
You can’t perform that action at this time.
0 commit comments