30 lines
671 B
C#
30 lines
671 B
C#
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
||
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
||
|
|
|
||
|
|
using SkiaSharp;
|
||
|
|
|
||
|
|
namespace Microsoft.Maui.Platform.Linux.Services;
|
||
|
|
|
||
|
|
public class SystemColors
|
||
|
|
{
|
||
|
|
public SKColor Background { get; init; }
|
||
|
|
|
||
|
|
public SKColor Surface { get; init; }
|
||
|
|
|
||
|
|
public SKColor Primary { get; init; }
|
||
|
|
|
||
|
|
public SKColor OnPrimary { get; init; }
|
||
|
|
|
||
|
|
public SKColor Text { get; init; }
|
||
|
|
|
||
|
|
public SKColor TextSecondary { get; init; }
|
||
|
|
|
||
|
|
public SKColor Border { get; init; }
|
||
|
|
|
||
|
|
public SKColor Divider { get; init; }
|
||
|
|
|
||
|
|
public SKColor Error { get; init; }
|
||
|
|
|
||
|
|
public SKColor Success { get; init; }
|
||
|
|
}
|