@@ -536,7 +536,7 @@ pub fn render_permission_dialog(frame: &mut Frame, pr: &PermissionRequest, area:
536536 lines. push ( Line :: from ( vec ! [
537537 Span :: styled(
538538 " \u{276F} " ,
539- Style :: default ( ) . fg( Color :: Cyan ) . add_modifier( Modifier :: BOLD ) ,
539+ Style :: default ( ) . fg( Color :: Rgb ( 167 , 139 , 250 ) ) . add_modifier( Modifier :: BOLD ) ,
540540 ) ,
541541 Span :: styled(
542542 preview. clone( ) ,
@@ -600,7 +600,7 @@ pub fn render_permission_dialog(frame: &mut Frame, pr: &PermissionRequest, area:
600600 PermissionDialogKind :: Bash { .. } | PermissionDialogKind :: PowerShell { .. } => {
601601 ( Color :: Yellow , " Permission Required " )
602602 }
603- PermissionDialogKind :: FileRead { .. } => ( Color :: Cyan , " File Read Permission " ) ,
603+ PermissionDialogKind :: FileRead { .. } => ( Color :: Rgb ( 167 , 139 , 250 ) , " File Read Permission " ) ,
604604 PermissionDialogKind :: FileWrite { .. } => ( Color :: Yellow , " File Write Permission " ) ,
605605 PermissionDialogKind :: Generic => ( Color :: Yellow , " Permission Required " ) ,
606606 } ;
@@ -1114,7 +1114,7 @@ pub fn render_mcp_approval_dialog(
11141114 Span :: styled( " Server: " , Style :: default ( ) . fg( Color :: DarkGray ) ) ,
11151115 Span :: styled(
11161116 truncate_str( & state. server_name, text_width. saturating_sub( 10 ) ) ,
1117- Style :: default ( ) . fg( Color :: Cyan ) . add_modifier( Modifier :: BOLD ) ,
1117+ Style :: default ( ) . fg( Color :: Rgb ( 167 , 139 , 250 ) ) . add_modifier( Modifier :: BOLD ) ,
11181118 ) ,
11191119 ] ) ) ;
11201120 let _ = server_label; // suppress unused warning
@@ -1172,7 +1172,7 @@ pub fn render_mcp_approval_dialog(
11721172 let prefix = if is_selected { " \u{25BA} " } else { " " } ;
11731173 let num = choice. index ( ) + 1 ;
11741174 let key_style = if is_selected {
1175- Style :: default ( ) . fg ( Color :: Cyan ) . add_modifier ( Modifier :: BOLD )
1175+ Style :: default ( ) . fg ( Color :: Rgb ( 167 , 139 , 250 ) ) . add_modifier ( Modifier :: BOLD )
11761176 } else {
11771177 Style :: default ( ) . fg ( Color :: DarkGray )
11781178 } ;
@@ -1200,10 +1200,10 @@ pub fn render_mcp_approval_dialog(
12001200 . title ( Span :: styled (
12011201 " MCP Server Connection " ,
12021202 Style :: default ( )
1203- . fg ( Color :: Cyan )
1203+ . fg ( Color :: Rgb ( 167 , 139 , 250 ) )
12041204 . add_modifier ( Modifier :: BOLD ) ,
12051205 ) )
1206- . border_style ( Style :: default ( ) . fg ( Color :: Cyan ) ) ;
1206+ . border_style ( Style :: default ( ) . fg ( Color :: Rgb ( 167 , 139 , 250 ) ) ) ;
12071207
12081208 let para = Paragraph :: new ( lines) . block ( block) ;
12091209 para. render ( dialog_area, buf) ;
0 commit comments