﻿/* 普通文本 - 黑色 */
.csharp_plain {
    color: #000000;
    font-family: Consolas, "Courier New", monospace;
}

/* 注释 - 绿色 */
.csharp_comment {
    color: #008000;
    font-family: Consolas, "Courier New", monospace;
}

/* 关键字 - 蓝色 */
.csharp_keyword {
    color: #0000ff;
    font-weight: 600;
    font-family: Consolas, "Courier New", monospace;
}

/* 类型（类、结构、枚举、接口、用户自定义类型等） - 青色 */
.csharp_type {
    color: #2b91af;
    font-family: Consolas, "Courier New", monospace;
}

/* 字符串 - 红褐色 */
.csharp_string,
.csharp_char {
    color: #a31515;
    font-family: Consolas, "Courier New", monospace;
}

/* 数字/枚举值/布尔值/常量 - 紫色 */
.csharp_number,
.csharp_enum_value,
.csharp_bool_value,
.csharp_constant {
    color: #800080;
    font-family: Consolas, "Courier New", monospace;
}

/* 方法名 - 黑色加粗 */
.csharp_function {
    color: #000000;
    font-weight: 600;
    font-family: Consolas, "Courier New", monospace;
}

/* 属性名 / 成员名 - 黑色（保持普通文本色） */
.csharp_property,
.csharp_field {
    color: #000000;
    font-family: Consolas, "Courier New", monospace;
}
