using System.Collections.Generic; using Avalonia.Media; namespace SourceGit.Models { public class ThemeOverrides { public Dictionary BasicColors { get; set; } = new Dictionary(); public double GraphPenThickness { get; set; } = 2; public double OpacityForNotMergedCommits { get; set; } = 0.5; public List GraphColors { get; set; } = new List(); } }