ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Brackets Color Scheme

by jwortmann ST3

Color scheme for Sublime Text inspired by Adobe Brackets

Labels color scheme

Details

Installs

  • Total 47K
  • Win 31K
  • Mac 9K
  • Linux 8K
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 0 2 2 3 1 4 0 3 4 5 0 3 0 2 7 2 2 3 4 2 0 0 1 1 3 2 0 0 2 1 4 4 1 2 3 3 9 4 3 3 3 2 2 0 4 3
Mac 0 1 0 4 1 0 1 1 2 0 2 0 3 0 2 0 1 1 0 0 0 2 2 0 0 0 0 0 1 2 2 1 0 0 0 1 1 1 0 1 0 0 3 0 3 4
Linux 2 0 0 0 0 2 0 2 3 1 2 0 1 0 1 2 2 0 5 0 0 0 0 4 1 3 1 0 0 1 3 0 2 1 2 0 0 0 1 2 1 0 1 1 1 1

Readme

Source
raw.​githubusercontent.​com

Brackets Color Scheme

License Version Downloads

This package for Sublime Text provides two color schemes (light and dark) that are similar to the built-in themes of Adobe Brackets.

Installation

The color scheme can be installed with Sublime Text's package manager Package Control. From the command palette select Package Control: Install Package and search for Brackets Color Scheme.

The color scheme can then be activated from the menu under Preferences > Select Color Scheme… or via the UI: Select Color Scheme command from the command palette.

Preview

Brackets Light

Brackets Dark

Color palette

Color variable Brackets Light Brackets Dark Example usage
#f8f8f8 #1d1f21 background
textcolor #535353 #dddddd plain text, variables, constants, operators, punctuations
grey #949494 #767676 comments
blue #446fbd #6c9ef8 keywords, intrinsic/library functions and classes, tags
orange #e88501 #d89333 strings, built-in constants, arguments in function definitions
green #6d8600 #85a300 numbers, HTML/XML tag attributes
violet #8757ad #b77fdb user defined functions, mapping keys, CSS property names
purple #6c71c4 #8087e5 preprocessor directives, macros
pink #d33682 #d85896 annotations, headings in markup languages
red #dc322f #dc322f invalid syntax
green2 #229922 #229922 diff inserted
red2 #dd4444 #dd4444 diff deleted

Customization

This color scheme uses color definitions and highlighting rules based on a JSON format, which was introduced in Sublime Text 3.1 (Build 3170). The color scheme format allows to customize color variables and override or add user-specific highlighting rules via the UI: Customize Color Scheme entry from the command palette, see also this example in the official documentation. For the color variable names used by this scheme, refer to the color palette above.

Apart from the listed color names, a few additional variables are used and can be modified to tweak highlighting colors for certain tokens. Here is an example with the default colors applied:

{
  "variables": {
    "operator_symbol": "var(textcolor)",
    "operator_keyword": "var(blue)",
    "punctuation": "var(textcolor)",
    "type": "var(textcolor)"
  }
}

Usage in Sublime Merge

The color scheme can be used in Sublime Merge as well and contains special rules which provide a tweaked style for certain elements of the diff and merge conflict views. For now, changing the color scheme in Sublime Merge requires a bit of manual configuration in the default light and dark themes:

From the Sublime Merge menu select Preferences > Browse Packages… and navigate into the User folder. Then, for the light theme, create new settings files with names

  • Commit Message - Merge.sublime-settings
  • Diff - Merge.sublime-settings
  • File Mode - Merge.sublime-settings

and with the following content in each of the files:

{
  "color_scheme": "Brackets Light.sublime-color-scheme"
}

Correspondingly, for the dark theme create the files

  • Commit Message - Merge Dark.sublime-settings
  • Diff - Merge Dark.sublime-settings
  • File Mode - Merge Dark.sublime-settings

with the following content:

{
  "color_scheme": "Brackets Dark.sublime-color-scheme"
}

Differences from the Adobe Brackets themes

In general, the color schemes are intended to reproduce the style of the built-in themes in Adobe Brackets, but there are a few minor differences.

  • Deviations in syntax highlighting are possible due to the different highlighting engines in the editors. The highlighting for certain elements was slightly extended and better support was added for programming languages which are not focused on web development. If you find a bug or possible improvement, feel free to let me know by creating an issue in this repository.

  • Italic font style was sparely added to syntax highlighting. It is possible to disable all italic text via the setting "font_options": ["no_italic"] in your Preferences.sublime-settings file.

  • In Adobe Brackets, matching tags and brackets are highlighted with a green background color when the caret is next to one. Adjustments of the background color for matching tags or brackets aren't possible in Sublime Text, so they are drawn underlined instead.

  • Sublime Text uses a subtle border and rounded corners for text selections in its built-in color schemes. I chose to follow this style here, but the original style of selections in Adobe Brackets with squared corners and without border can be achieved via the following customization:

{
    "globals": {
      "selection_border_width": "0",
      "selection_corner_style": "square"
    }
  }