ux: new custom theme configuration format

* supports customize the commit graph
This commit is contained in:
leo
2024-07-02 22:54:26 +08:00
parent c170f261db
commit 80f72676ec
5 changed files with 68 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace SourceGit.Models
{
public class CustomColorSchema
{
public Dictionary<string, string> Basic { get; set; } = new Dictionary<string, string>();
public List<string> Graph { get; set; } = new List<string>();
}
}