# Malayalam Fonts
A collection of open source Malayalam web fonts.

## Fonts
| **Font Family** | **Version** |  |
|---|---|---|
| [Chilanka](fonts/Chilanka/) | 1.7 |
| [Gayathri](fonts/Gayathri/) | 1.300 |
| [Malini](fonts/Malini/) | 1.000-beta.8 | (Variable Font) |
| [Manjari](fonts/Manjari/) | 2.200 |
| [Nupuram](fonts/Nupuram/) | 1.000-beta.2 | (Variable Font) |
| [Nupuram Arrows Color](fonts/Nupuram-Arrows-Color/) | 1.000-beta.2 |
| [Nupuram Calligraphy](fonts/Nupuram-Calligraphy/) | 1.000-beta.2 | (Variable Font) |
| [Nupuram Color](fonts/Nupuram-Color/) | 1.000-beta.2 | (Variable Font) |
| [Nupuram Display](fonts/Nupuram-Display/) | 1.000-beta.2 |
| [Nupuram Dots](fonts/Nupuram-Dots/) | 1.000-beta.2 |
| [RIT Ala](fonts/RIT-Ala/) | 1.0 |
| [RIT Chingam](fonts/RIT-Chingam/) | 1.2.1 |
| [RIT Ezhuthu](fonts/RIT-Ezhuthu/) | 1.5.2 |
| [RIT Indira](fonts/RIT-Indira/) | 1.0 |
| [RIT Karuna](fonts/RIT-Karuna/) | 1.2.2 |
| [RIT Keraleeyam](fonts/RIT-Keraleeyam/) | 3.2.1 |
| [RIT Keram](fonts/RIT-Keram/) | 1.0 |
| [RIT Kutty](fonts/RIT-Kutty/) | 1.3.2 |
| [RIT Lasya](fonts/RIT-Lasya/) | 1.0 |
| [RIT Lekha](fonts/RIT-Lekha/) | 1.0 |
| [RIT Meera New](fonts/RIT-MeeraNew/) | 1.6.2 |
| [RIT Panmana](fonts/RIT-Panmana/) | 1.4.3 |
| [RIT Rachana](fonts/RIT-Rachana/) | 1.5.2 |
| [RIT Sundar](fonts/RIT-Sundar/) | 2.3.1 |
| [RIT TN Joy](fonts/RIT-TNJoy/) | 1.6.2 |
| [RIT Thaara](fonts/RIT-Thaara/) | 1.0 |
| [RIT Uroob](fonts/RIT-Uroob/) | 2.1.1 |

## Installation

```shell
npm install malayalam-fonts
```
## Usage

In your main application file or website component, import these fonts like this:

```javascript
import "malayalam-fonts";
```
You can specify the font name in a CSS file, CSS Module, or CSS-in-JS. Example:

```css
body {
  font-family: "RIT Meera New";
  font-weight : normal;
  font-style  : normal;
}
```
---

### Use these fonts directly from [jsDelivr CDN](https://www.jsdelivr.com/package/npm/malayalam-fonts)

[![](https://data.jsdelivr.com/v1/package/npm/malayalam-fonts/badge)](https://www.jsdelivr.com/package/npm/malayalam-fonts)

To embed `RIT Meera New` font, copy the code into the `<head>` of your html :

```css
<style>
   @import url('https://cdn.jsdelivr.net/npm/malayalam-fonts@latest/fonts.min.css');
   html {
   font-family : 'RIT Meera New';
   font-weight : normal;
   font-style  : normal;
   }
</style>
```
---

The CSS file for each font and its usage-related information are contained in their respective font directories under [`fonts`](fonts/).

----
[![npm](https://img.shields.io/npm/v/malayalam-fonts?color=red)](https://www.npmjs.com/package/malayalam-fonts)