mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
14 lines
441 B
C#
14 lines
441 B
C#
using System.Collections.Generic;
|
|
|
|
using Avalonia.Media;
|
|
|
|
namespace SourceGit.Models
|
|
{
|
|
public class ThemeOverrides
|
|
{
|
|
public Dictionary<string, Color> BasicColors { get; set; } = new Dictionary<string, Color>();
|
|
public double GraphPenThickness { get; set; } = 2;
|
|
public double OpacityForNotMergedCommits { get; set; } = 0.5;
|
|
public List<Color> GraphColors { get; set; } = new List<Color>();
|
|
}
|
|
}
|