2024-07-08 01:21:57 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2024-07-08 01:45:51 -07:00
|
|
|
|
using Avalonia.Media;
|
|
|
|
|
|
2024-07-08 01:21:57 -07:00
|
|
|
|
namespace SourceGit.Models
|
|
|
|
|
{
|
|
|
|
|
public class ThemeOverrides
|
|
|
|
|
{
|
2024-07-08 01:45:51 -07:00
|
|
|
|
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;
|
2024-07-17 19:46:39 -07:00
|
|
|
|
public double OpacityForNotMergedCommits { get; set; } = 0.5;
|
2024-07-08 01:45:51 -07:00
|
|
|
|
public List<Color> GraphColors { get; set; } = new List<Color>();
|
2024-07-08 01:21:57 -07:00
|
|
|
|
}
|
|
|
|
|
}
|