forked from c0ldw1nter/echoes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColorScheme.cs
More file actions
26 lines (25 loc) · 811 Bytes
/
ColorScheme.cs
File metadata and controls
26 lines (25 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace Echoes
{
public class ColorScheme
{
public Color background { get; set; }
public Color controlBack { get; set; }
public Color controlFore { get; set; }
public Color highlightBack { get; set; }
public Color highlightFore { get; set; }
public Color seekBarBack { get; set; }
public Color seekBarFore { get; set; }
public Color volBarBack { get; set; }
public Color volBarFore { get; set; }
public Color trackTitle { get; set; }
public Color trackAlbum { get; set; }
public Color trackArtist { get; set; }
public Color spectrum { get; set; }
}
}