Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PolyPilot/Models/ConnectionSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class ConnectionSettings
public bool DirectSharingEnabled { get; set; } = false;
public ChatLayout ChatLayout { get; set; } = ChatLayout.Default;
public ChatStyle ChatStyle { get; set; } = ChatStyle.Normal;
public UiTheme Theme { get; set; } = UiTheme.PolyPilotDark;
public UiTheme Theme { get; set; } = UiTheme.System;
public bool AutoUpdateFromMain { get; set; } = false;
public CliSourceMode CliSource { get; set; } = CliSourceMode.BuiltIn;
public List<string> DisabledMcpServers { get; set; } = new();
Expand Down
2 changes: 1 addition & 1 deletion PolyPilot/Services/CopilotService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ internal CopilotService(IChatDatabase chatDb, IServerManager serverManager, IWsB
// UI preferences
public ChatLayout ChatLayout { get; set; } = ChatLayout.Default;
public ChatStyle ChatStyle { get; set; } = ChatStyle.Normal;
public UiTheme Theme { get; set; } = UiTheme.PolyPilotDark;
public UiTheme Theme { get; set; } = UiTheme.System;

// Session organization (groups, pinning, sorting)
public OrganizationState Organization { get; private set; } = new();
Expand Down
Loading