« Sublime text themes » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
| (6 versions intermédiaires par le même utilisateur non affichées) | |||
| Ligne 2 : | Ligne 2 : | ||
### Customize Color Scheme | ### Customize Color Scheme | ||
<syntaxhighlight lang="json" line> | <syntaxhighlight lang="json" line> | ||
// Documentation at https://www.sublimetext.com/docs/color_schemes.html | // Documentation at https://www.sublimetext.com/docs/color_schemes.html | ||
{ | { | ||
| Ligne 11 : | Ligne 10 : | ||
"purple2": "hsl(350, 100%, 70%)", | "purple2": "hsl(350, 100%, 70%)", | ||
"purple3": "hsl(40, 100%, 50%)", | "purple3": "hsl(40, 100%, 50%)", | ||
"green": "hsl(100, 100%, 50%)", | |||
"blue2": "hsl(220, 100%, 60%)", | "blue2": "hsl(220, 100%, 60%)", | ||
"brown": "hsl(20 | "blue3": "#94A2D0", | ||
"brown": "hsl(15, 20%, 60%)", | |||
"brown2": "#E5C679", | |||
"orange4" : "#CB4C0B" | |||
}, | }, | ||
| Ligne 53 : | Ligne 56 : | ||
"foreground": "var(brown)", | "foreground": "var(brown)", | ||
"font_style": "italic", | "font_style": "italic", | ||
}, | |||
{ | |||
}, | "name": "Variable 2", | ||
"scope": "variable.other.member", | |||
"foreground": "var(brown2)", | |||
"font_style": "italic", | |||
}, | |||
{ | { | ||
"name": "Number", | "name": "Number", | ||
| Ligne 69 : | Ligne 76 : | ||
"name": "Built-in constant", | "name": "Built-in constant", | ||
"scope": "constant.language", | "scope": "constant.language", | ||
"foreground": "color(var( | "foreground": "color(var(red) alpha(1))", | ||
}, | }, | ||
{ | { | ||
"name": "Keyword", | "name": "Keyword", | ||
"scope": "keyword - (source.c keyword.operator | source.c++ keyword.operator | source.objc keyword.operator | source.objc++ keyword.operator), keyword.operator.word, source.ruby keyword.declaration", | "scope": "keyword - (source.c keyword.operator | source.c++ keyword.operator | source.objc keyword.operator | source.objc++ keyword.operator ), keyword.operator.word, source.ruby keyword.declaration", | ||
"foreground": "var( | "foreground": "var(green)" | ||
}, | }, | ||
{ | |||
"name": "Keyword2", | |||
"scope": "keyword - (source.php keyword.operator | source.js keyword.operator | source.sql keyword.operator), keyword.operator.word, source.php keyword.declaration", | |||
"foreground": "var(blue2)" | |||
}, | |||
{ | |||
"name": "Keyword3", | |||
"scope": "source.sql keyword.other | source.sql keyword.operator.logical | source.sql keyword.operator.word", | |||
"foreground": "var(orange4)" | |||
}, | |||
{ | { | ||
"name": "JavaScript Dollar", | "name": "JavaScript Dollar", | ||
"scope": "variable.other.dollar.only.js", | "scope": "variable.other.dollar.only.js", | ||
"foreground": "var(red2)" | "foreground": "var(red2)" | ||
}, | |||
{ | |||
"name": "Function argument", | |||
"scope": "variable.parameter - (source.c | source.c++ | source.objc | source.objc++)", | |||
"foreground": "var(blue3)", | |||
"font_style": "italic" | |||
}, | }, | ||
{ | { | ||
| Ligne 98 : | Ligne 125 : | ||
"font_style": "italic" | "font_style": "italic" | ||
}, | }, | ||
{ | { | ||
"name": "Library function", | "name": "Library function", | ||
"scope": "support.function, support.macro", | "scope": "support.function, support.macro", | ||
"foreground": "var( | "foreground": "var(blue)", | ||
"font_style": " italic" | |||
}, | |||
{ | |||
"name": "Library class/type", | |||
"scope": "support.type, support.class", | |||
"foreground": "var(blue)", | |||
"font_style": " italic" | |||
}, | }, | ||
{ | { | ||
| Ligne 143 : | Ligne 178 : | ||
"scope": "constant.character, constant.other", | "scope": "constant.character, constant.other", | ||
"foreground": "var(yellow)" | "foreground": "var(yellow)" | ||
}, | |||
{ | |||
"name": "markup headings", | |||
"scope": "markup.heading punctuation.definition.heading", | |||
"foreground": "var(orange)" | |||
}, | }, | ||
] | ] | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[category:Dev]] | [[category:Dev]] | ||
[[category:Softz]] | [[category:Softz]] | ||