This commit is contained in:
2022-03-01 20:26:05 +00:00
parent 4f76d2f3e4
commit 8966f0e8e4
6 changed files with 31 additions and 36 deletions

View File

@@ -25,11 +25,9 @@ namespace AyaNova.Models
Hexadecimal notation: #RGB[A]
R (red), G (green), B (blue), and A (alpha) are hexadecimal characters (09, AF). A is optional. The three-digit notation (#RGB) is a shorter version of the six-digit form (#RRGGBB). For example, #f09 is the same color as #ff0099. Likewise, the four-digit RGB notation (#RGBA) is a shorter version of the eight-digit form (#RRGGBBAA). For example, #0f38 is the same color as #00ff3388.
*/
//removed for v8 alpha due to schedule not really supporting colors and
//it's kind of tacky in my opinion and outdated and it would detract from the use of colors already in teh schedule
//plus no where else does ayanova use this value so it's a lot of nothing
// [MaxLength(12)]
// public string UiColor { get; set; }
[MaxLength(12)]
public string UiColor { get; set; }
//browser forced overrides
public string LanguageOverride { get; set; }
@@ -52,7 +50,7 @@ namespace AyaNova.Models
{
CurrencyName = "USD";
Hour12 = true;
// UiColor = "#000000";//black is the default
UiColor = "#ffffff";//black is the default
}
}