mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-03 03:52:28 +08:00
27 lines
704 B
C#
27 lines
704 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Explorer.UI.Shared
|
|
{
|
|
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";
|
|
}
|
|
}
|