Skip to content

Latest commit

 

History

History
232 lines (154 loc) · 11.5 KB

CONTRIBUTING.md

File metadata and controls

232 lines (154 loc) · 11.5 KB

How to contribute

Glad you're here and interested in expanding this project 🎉 In order to make this work in the best possible way, there are hints and tips for successful contributors on this page. Please read everything carefully and your contributions will be valuable and gratefully received.

Icon Requests

A new icon for a file name, file extension or folder name is needed? Please create an issue and follow the rules below:

  • Describe if a file and/or folder icon is needed
  • List the file names/endings and folder names
  • Mention some graphic ideas (how can the icon look like)
  • Show an example image of the icon or provide a link to the related website

Add new icons

It is always welcome to add new icons to the extension. However, there are a few things you should take into account so that the icon can be included in the extension.

Checklist

  1. Create icon as SVG (how to)
  2. Icon color fits to Material Design (how to)
  3. SVG has some space around the icon (how to)
  4. Unique assignment to file and folder names (how to)
  5. Provide separate icons for color themes if necessary (how to)

How tos

Create icon as SVG

These free tools are recommended to create or edit new SVG icons:

Note It's important to produce fully vectorized graphic (don't include a base64 image string in the svg).

When you create a folder icon, please keep in mind that two SVG files are needed here: one that represents the folder closed and another that represents it open.

📁 folder-example.svg
📂 folder-example-open.svg

Of course, there is also the possibility to add existing SVGs. Mostly, however, the color has to be adjusted or the styling has to be changed, so that the other points from the above checklist are also fulfilled.

Known icon sources

Use Material Design colors

An important success factor of this icon extension is the fact that all colors fit together harmoniously. This is due to the fact that all icons exist only from colors of the Material Design color palette. This creates nice contrasts and the icons are easily recognizable.

Now it often happens that many programming languages already have icons with their own colors. To find the matching color from the Material Design color palette based on a known color, there is the Material Color Converter. With its help any color can be converted into a Material Design color.

Continue reading here to find out about colors for the folder icons.

Design folder icons

When designing folder icons there are also a few points to consider. A folder icon always consists of two icons - the folder in the background and a motive in the foreground:

For the motive, only colors from the second row in the color palette are allowed. For the background choose a slightly darker hue (mostly in rows 4-6 in the palette).

This uniform color selection makes the folder icons look more consistent and fit well together. This ensures a good quality of the icons.

Icon spacing

All icons have a small distance to the edge. This way they don't seem so pressed together and have a little more air. It is not defined how much margin you have to leave them, because this is always a bit different. Just make sure that there is a space to the outside.

Assignment to file and folder names and language ids

Icons are assigned to file names, folder names or registered languages of VS Code in these files:

Note It is very important that icons are only assigned to the file and folder names that really apply to them. This means that you should be careful which files and folders you assign icons to. There are many people with different projects all over the world and not everyone expects that e.g. a file name will have a special framework based icon even though the framework is not used at all by this one user.

A solution for this can be icon packs.

File icons

Here's an example of how the SVG icon 'sample.svg' is assigned to file names and extensions:

{
  name: 'sample',
  fileNames: ['sample.js', 'sample.ts', 'sample.html'],
  fileExtensions: ['sample'],
}

This will apply an icon for the files 'sample.js', 'sample.ts' and 'sample.html' as well as for files that end with 'sample' like 'another-file.sample'.

Folder icons

Here's an example of how a folder icon can be assigned to folder icons:

{
  name: 'folder-sample',
  folderNames: ['sample', 'samples'],
}

This will apply a folder icon for the folders 'sample' and 'samples'.

Language icons

Here's an example of how a file icon can be assigned to language ids:

{ icon: { name: 'sample' }, ids: ['css'] },

This will apply the sample.svg icon to all files which could be associated by VS Code with the CSS programming language.

Icons for color themes

VS Code can be customized so that the background color is either light or dark. This must also be considered for the icons, because a dark icon on a dark background does not provide the necessary contrast it needs to be recognizable.

Preferably, the icon has a color that looks good on both backgrounds. If this is ever not possible because it would otherwise no longer match the icon's branding, different icons can be provided for the respective color scheme.

This separation is possible by using the light attribute in the icon configuration:

{ name: 'sample', fileNames: ['sample.txt'], light: true },

If the light attribute is set to true, it is necessary to provide two icon files:

  • sample.svg
  • sample_light.svg

The icon with the ending '_light' will be automatically chosen when VS Code is using a light background color. So the icon should then look a bit darker to have a good contrast on the lighter background.

In addition, there's also the possibility to provide a separate icon for high contrast backgrounds like this:

{ name: 'sample', fileNames: ['sample.txt'], highContrast: true },

If the highContrast attribute is set to true, it is necessary to provide two icon files:

  • sample.svg
  • sample_highContrast.svg

Create icon packs

Sometimes it can happen that certain files or folders need an icon, but you cannot avoid that there could be different icons for them. An icon pack can bundle different icons and as an end user you can decide which icons to display.

Here's an example that shows how two icons can be assigned to the same file name by using icon packs:

{
  name: 'sample-blue',
  fileNames: ['sample.txt'],
  enabledFor: [IconPack.Blue],
},
{
  name: 'sample-red',
  fileNames: ['sample.txt'],
  enabledFor: [IconPack.Red],
}

To create an icon pack, the following steps have to be completed:

  1. Add the name of the icon pack to the enum in iconPack.ts
  2. Add translations to the package.nls.*.json files under the section configuration.activeIconPack (at least to package.nls.json, the English translation file)
  3. Adjust package.json under configuration.properties.material-icon-theme.activeIconPack
  4. Use the icon pack inside the fileIcons.ts,folderIcons.ts or languageIcons.ts files in the enabledFor attribute

Add translations

This project offers translations into different languages. If you notice an error here, please help to fix it. You can do this as follows:

  • Create or edit the translations in the src/i18n directory.
  • Create or edit the package.nls.*.json files in the root folder

Debug extension locally

This icon extension consists not only of icons but also brings some code. This is necessary to simplify various things and enable multiple functionalities. If you want to change something here, the following steps are to be considered:

  1. Install Node.js on your machine
  2. Install node dependencies with npm install
  3. Open project with VS Code
  4. Install required VS Code extensions
  5. Press F5 or run Launch Extension in the debug window
  6. Run tests with Launch Tests

You will find more information about the official extension API in the extension guides of VS Code.