« Sublime text themes » : différence entre les versions

Aucun résumé des modifications
Aucun résumé des modifications
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
// 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, 40%, 60%)",
         "brown": "hsl(15, 20%, 60%)",


},
},
Ligne 69 : Ligne 69 :
             "name": "Built-in constant",
             "name": "Built-in constant",
             "scope": "constant.language",
             "scope": "constant.language",
             "foreground": "color(var(orange) alpha(1))",
             "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(purple3)"
             "foreground": "var(green)"
         },
         },
      {
            "name": "Keyword2",
            "scope": "keyword - (source.php keyword.operator | source.js keyword.operator),  keyword.operator.php, source.php keyword.declaration",
            "foreground": "var(blue2)"
        },
         {
         {
             "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(brown)",
            "font_style": "italic"
         },
         },
   {
   {
Ligne 143 : Ligne 155 :
             "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>