<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Foolish</title>
    <description>The latest articles on DEV Community by Foolish (@foolish).</description>
    <link>https://dev.to/foolish</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F466682%2F2cbfff5d-b3ce-4941-9c4e-fa4b8b6b7d93.png</url>
      <title>DEV Community: Foolish</title>
      <link>https://dev.to/foolish</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/foolish"/>
    <language>en</language>
    <item>
      <title>Color your VS code for multiple workspaces</title>
      <dc:creator>Foolish</dc:creator>
      <pubDate>Thu, 10 Sep 2020 08:53:10 +0000</pubDate>
      <link>https://dev.to/foolish/color-your-vs-code-for-multiple-workspaces-25ah</link>
      <guid>https://dev.to/foolish/color-your-vs-code-for-multiple-workspaces-25ah</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--x601bs5G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/wckvnbbirv4lzdudqa7c.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--x601bs5G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/wckvnbbirv4lzdudqa7c.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Problem : Working with multiple projects in VS code and setting VScode color for specific project to better identify on which project you are on.&lt;/p&gt;

&lt;p&gt;Solution : There are plugins &lt;a href="https://marketplace.visualstudio.com/items?itemName=johnpapa.vscode-peacock"&gt;Peacock&lt;/a&gt; and &lt;a href="https://marketplace.visualstudio.com/items?itemName=stuart.unique-window-colors"&gt;Window Colors&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But if you just want to color your editor and do not want other features these plugins provide, then don't install these plugins and just override vscode settings in 3 simple steps as below.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1.
&lt;/h3&gt;

&lt;p&gt;Create ".vscode" folder in your project and create "settings.json" file in this folder. (If it is already there just edit and add settings as in step 2)&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2.
&lt;/h3&gt;

&lt;p&gt;Paste below content in settings.json (choose your favorite colors)&lt;br&gt;
For more settings on Activity Bar, Progress Bar and Sidebar &lt;a href="https://code.visualstudio.com/api/references/theme-color#activity-bar"&gt;Check This&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;workbench.colorCustomizations&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;activityBar.background&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;#958342&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;statusBar.background&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;#b49f56&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;titleBar.activeBackground&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;#b49f56&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;titleBar.activeForeground&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;#FAFAFD&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;h3&gt;
  
  
  Step 3.
&lt;/h3&gt;

&lt;p&gt;Copy and paste this .vscode folder(with settings.json) file in all your projects and change colors that you like for specific project. Now you have VS Code of specific color for your particular project.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>vscode</category>
      <category>productivity</category>
      <category>css</category>
    </item>
  </channel>
</rss>
