How To Install compass-blend-modes-plugin on Ubuntu 18.04

In this tutorial we learn how to install compass-blend-modes-plugin on Ubuntu 18.04. compass-blend-modes-plugin is use standard color blending functions in Sass

Introduction

In this tutorial we learn how to install compass-blend-modes-plugin on Ubuntu 18.04.

What is compass-blend-modes-plugin

compass-blend-modes-plugin is:

CSS doesn’t natively support color blending the way that GIMP does. SCSS Blend Modes attempts to fake that by allowing you to blend a foreground color with a background color in order to approximate color blending. The process is not dynamic; you can’t use it to blend a color with an image.

Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more.

There are three methods to install compass-blend-modes-plugin on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install compass-blend-modes-plugin Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install compass-blend-modes-plugin using apt-get by running the following command:

sudo apt-get -y install compass-blend-modes-plugin

Install compass-blend-modes-plugin Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install compass-blend-modes-plugin using apt by running the following command:

sudo apt -y install compass-blend-modes-plugin

Install compass-blend-modes-plugin Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install compass-blend-modes-plugin using aptitude by running the following command:

sudo aptitude -y install compass-blend-modes-plugin

How To Uninstall compass-blend-modes-plugin on Ubuntu 18.04

To uninstall only the compass-blend-modes-plugin package we can use the following command:

sudo apt-get remove compass-blend-modes-plugin

Uninstall compass-blend-modes-plugin And Its Dependencies

To uninstall compass-blend-modes-plugin and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove compass-blend-modes-plugin

Remove compass-blend-modes-plugin Configurations and Data

To remove compass-blend-modes-plugin configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge compass-blend-modes-plugin

Remove compass-blend-modes-plugin configuration, data, and all of its dependencies

We can use the following command to remove compass-blend-modes-plugin configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge compass-blend-modes-plugin

References

Summary

In this tutorial we learn how to install compass-blend-modes-plugin package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.