HBuilderX 开发工具,主题自定义, 代码颜色自定义

时间:2025-04-10 08:07:33
"tokenColors": [ { "name": "keyword", //关键字 "scope": "keyword", "settings": { "fontStyle": "", "foreground": "#ff0000" } }, { "name": "control entity", //控制 "scope": [ "", "", "" ], "settings": { "fontStyle": "", "foreground": "#ff00ff" } }, { "name": "comment", //注释 "scope": "comment", "settings": { "fontStyle": "italic", "foreground": "#a64b00" } }, { "name": "comment definition", //注释符号 "scope": "", "settings": { "fontStyle": "italic", "foreground": "#a64b00" } }, { "name": "comment keyword", //注释关键字 "scope": "", "settings": { "fontStyle": "", "foreground": "#ff00ff" } }, { "name": "comment defined",//注释常量 "scope": "", "settings": { "fontStyle": "bold underline", "foreground": "#ff0000" } }, { "name": "string", //字符串 "scope": [ "string", " " ], "settings": { "fontStyle": "", "foreground": "#fff200" } }, { "name": "constant", //常量 "scope": [ "", "", //正则 "", //数字 "" //boolean值、空值 ], "settings": { "fontStyle": "", "foreground": "#AE81FF" } }, { "name": "variable", //变量 "scope": "variable", "settings": { "fontStyle": "", "foreground": "#0ed145" } }, { "name": "variable readwrite", //自定义变量 "scope": "", "settings": { "fontStyle": "", "foreground": "#c4ff0e" } }, { "name": "variable constant", //自定义常量 "scope": "", "settings": { "fontStyle": "", "foreground": "#409eff" } }, { "name": "function name", //函数名称 "scope": ["", ""], "settings": { "fontStyle": "", "foreground": "#66ccff" } }, { "name": "function prop",//函数参数 "scope": [ "", // 函数参数 "" // 函数this ], "settings": { "fontStyle": "bold", "foreground": "#ff7f27" } }, { "name": "storage",//保留字 "scope": ["", ""], "settings": { "fontStyle": "italic", "foreground": "#2979ff" } }, { "name": "support",//第三方支持 "scope": [ "support", "", "", "", "", "-resolution", "-class" ], "settings": { "fontStyle": "bold", "foreground": "#409EFF" } }, { "name": "property",//属性 "scope": [ // html属性名 "-name", // object属性名 "", "" ], "settings": { "fontStyle": "", "foreground": "#00dddd" } }, { "name": "property-value",//属性值 "scope": [ // css属性值 "-value", "-value" ], "settings": { "fontStyle": "", "foreground": "#00e500" } }, { "name": "tag",//标签 "scope": [ // html标签 "", "", "", "", "" ], "settings": { "fontStyle": "", "foreground": "#409eff" } }, { "name": "selector",//选择器 "scope": [ // css选择器 "", "-name" ], "settings": { "fontStyle": "", "foreground": "#00dddd" } }, { "name": "tag selector",//标签选择器 "scope": [ // css标签选择器 "" ], "settings": { "fontStyle": "bold underline", "foreground": "#409EFF" } }, { "name": "css property",//css属性 "scope": [ // css属性名 "-name", "-name" ], "settings": { "fontStyle": "", "foreground": "#409EFF" } } ]