Skip to content

4-themes/light-vscode-icons

 
 

Repository files navigation


logo

Icons

This is the light version of the @tal7aouy VS Code icons. You can easly download it from the VS Code marketplace and use it with dark theme's to view those icons easly. In case of questions or propositions open an issue.

Personalisation

To do a color personalization, run this script in the folder with all the svgs, it will replace the color with the new color :

const fs = require('fs');

fs.readdir('.', (err, files) => {
    if (err) {
        throw err
    }
  
    files.forEach(file => {
        if (file.endsWith('.svg') && file.startsWith('folder')) {
            fs.readFile(file, 'utf8', function(err, data){
                // write datas
                var newData = data.replace("#f5f5f5", "YOUR_COLOR");
                fs.writeFile(file, newData, (err) => {
                    if (err)
                      console.log(err);
                });
            });
        }
    })
})

Contributors

✨ @titi_2115 ✨ @tal7aouy