您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

18 行
536 B

using Unity.UIWidgets.ui;
namespace Unity.UIWidgets.DevTools.config_specific.ide_theme
{
public class IdeTheme {
public IdeTheme(Color backgroundColor = null, Color foregroundColor = null, float? fontSize = null)
{
this.backgroundColor = backgroundColor;
this.foregroundColor = foregroundColor;
this.fontSize = fontSize;
}
public readonly Color backgroundColor;
public readonly Color foregroundColor;
public readonly float? fontSize;
}
}