mirror of
https://github.com/tonytins/amtkstat.git
synced 2025-03-25 07:49:06 +00:00
8 lines
177 B
C#
8 lines
177 B
C#
namespace AmtrakStatus;
|
|
|
|
public readonly struct Themes
|
|
{
|
|
public const string DarkCards = "bg-secondary text-light";
|
|
|
|
public const string Light = "bg-light text-dark";
|
|
}
|