2020-10-08 06:15:42 +11:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2020-10-23 01:48:00 +11:00
|
|
|
|
namespace ExplorerBeta.UI.Shared
|
2020-10-08 06:15:42 +11:00
|
|
|
|
{
|
|
|
|
|
public class Syntax
|
|
|
|
|
{
|
|
|
|
|
public const string Field_Static = "#8d8dc6";
|
|
|
|
|
public const string Field_Instance = "#c266ff";
|
|
|
|
|
|
|
|
|
|
public const string Method_Static = "#b55b02";
|
|
|
|
|
public const string Method_Instance = "#ff8000";
|
|
|
|
|
|
|
|
|
|
public const string Prop_Static = "#588075";
|
|
|
|
|
public const string Prop_Instance = "#55a38e";
|
|
|
|
|
|
|
|
|
|
public const string Class_Static = "#3a8d71";
|
|
|
|
|
public const string Class_Instance = "#2df7b2";
|
|
|
|
|
|
|
|
|
|
public const string Local = "#a6e9e9";
|
|
|
|
|
|
|
|
|
|
public const string StructGreen = "#92c470";
|
|
|
|
|
}
|
|
|
|
|
}
|