Different Ways to Change or Add Themes to Android Studio
Last Updated :
26 Feb, 2021
When we are working on any editor or IDE we get used to it and its environment like if we are using Sublime then we like its dark background environment. We have now moved to Android studio but we are not comfortable with the default background and theme. Now the point that comes here is how we can Change or Add Themes to Android Studio. So in this article, we are going to discuss four different methods to Change or Add Themes to Android Studio.
- Method 1: Changing default theme
- Method 2: Add the theme to Android Studio by importing jar file
- Method 3: Adding theme from Android Studio plugin section
- Method 4: Adding theme by copying ICLS file to a particular directory
Method 1: Changing default theme
First of all, open your Android Studio:
Here you can see my Android Studio window and a demo application is running. In Android Studio, there are three default themes available i.e. Intellij Light, Dracula, and High Contrast. To change default themes go to File and click on Settings.
A new Settings dialog will appear, like this.
Under the Appearance & Behaviour -> Appearance, you will find Theme. Choose the right theme from the drop-down and click on Apply and then Ok. Here you can see the background and color scheme for all three themes.
Intellij Light theme
Dracula theme
High Contrast themeMethod 2: Add the theme to Android Studio by importing jar file
We will now add monokai theme of sublime to Android Studio. First of all download the jar file from my Github. To import this theme to our Android Studio, go to the File > Manage IDE Settings > Import Settings...
After clicking on Import Settings, a new dialog box will be open like this.
Now you have to select the downloaded jar file or you can do drag and drop too then click on Ok.
After clicking Ok, a new dialog box will open where we can select what component we want to import from jar file to editor.
Here select both colors and schemes and then click Ok. After this, a new box will be open.
Click on the Restart button to reload the settings. Here you can see the new theme. You can follow the same steps while importing any jar files.

Method 3: Adding theme from Android Studio plugin section
There is another way to add themes to the android studio by downloading the themes from the plugin section. Go to the File > Settings > Plugins.
Click on Marketplace and search for themes. Ex. themes
Here you can see a lot of different themes and select one and download it, after downloading you can apply these themes to your IDE and these downloaded themes will be available in your default themes collection.
solarized theme
Here you can see we have downloaded and applied solarized theme.
Method 4: Adding theme by copying ICLS file to a particular directory
You can refer to this GitHub repo for a set of amazing themes. Download the file and copy the file to the following directory:
%USERPROFILE%/.AndroidStudio/config/colors
Once you have copied the ICLS file to the above directory then restart the Android Studio so that theme will be applied to the IDE.
Similar Reads
Different Ways to Format Code in Android Studio Code formatting is very important when you are building an Android application. This will help you to organize your code properly and to maintain your code to make it easily readable. Below is a list of purposes of having a standard coding format. Purposes of Having Coding Standards A coding standar
3 min read
Different Ways to Create aar File in Android Studio Android Studio can be used to create an Android archive file (*.aar) that can contain classes and methods that make use of Android classes and related files. Like creating the Jar file, an Android project must be created first, then the Android library module can be created and added. The main diffe
3 min read
Different Ways to Increase Editor Font Size in Android Studio Android Studio is the official IDE (Integrated Development Environment) for Android app development and it is based on JetBrainsâ IntelliJ IDEA software. Android Studio provides many excellent features that enhance productivity when building Android apps, such as: A blended environment where one can
2 min read
How to Change Font of Toolbar Title in an Android App? Google Fonts provide a wide variety of fonts that can be used to style the text in Android Studio. Appropriate fonts do not just enhance the user interface but they also signify and emphasize the purpose of the text. In this article, you will learn how to change the font-family of the Toolbar Title
2 min read
How to Draw Different Types of Circles in Android? In Android, we can manually create shapes as required. A shape can be designed in XML by creating an Android Resource File. The type of file allows various attributes like dimensions, color, strokes (border), solid (background), etc. for creating a desired shape and design. Basically, in this articl
3 min read