sourcegit/src/Models/ThemeOverrides.cs

15 lines
441 B
C#
Raw Normal View History

using System.Collections.Generic;
using Avalonia.Media;
namespace SourceGit.Models
{
public class ThemeOverrides
{
public Dictionary<string, Color> BasicColors { get; set; } = new Dictionary<string, Color>();
2024-07-08 22:04:39 -07:00
public double GraphPenThickness { get; set; } = 2;
public double OpacityForNotMergedCommits { get; set; } = 0.5;
public List<Color> GraphColors { get; set; } = new List<Color>();
}
}