18 lines
422 B
C#
18 lines
422 B
C#
using Blazorise;
|
|
|
|
namespace Gremlin_BlazorServer;
|
|
|
|
public partial class App {
|
|
private readonly Theme theme = new() {
|
|
ColorOptions = new ThemeColorOptions {
|
|
//Primary = "#343A40", //"#2196f3" Grey
|
|
//Secondary = "#A65529",
|
|
Dark = "#001529", //Background
|
|
Link = "#343A40", //Black
|
|
Success = "#e0dfe1", //White
|
|
Danger = "#f44336",
|
|
// other
|
|
},
|
|
//IsGradient = true,
|
|
};
|
|
} |