New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

alpha-string-to-rgba

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alpha-string-to-rgba

Converts alpha strings (`red.5`) to rgba (`rgba(255, 0, 0, 0.5)`).

1.5.0
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Alpha String to RGBa

Converts alpha strings (red.5) to rgba (rgba(255, 0, 0, 0.5)).

PRs Welcome Travis Tested with Jest semantic-release Commitizen friendly Conventional Commits styled with prettier license

Features

Takes a colors object and a value, returning a new string which is the rgba, hex, or css color name representation calculated from the given value.

import aToRGBa from 'alpha-string-to-rgba';

const colorMap = {
	aqua:    '#7fdbff',
	blue:    '#0074d9',
	lime:    '#01ff70',
	navy:    '#001f3f',
	teal:    '#39cccc',
	olive:   '#3d9970',
	green:   '#2ecc40',
	red:     '#ff4136',
	maroon:  '#85144b',
	orange:  '#ff851b',
	purple:  '#b10dc9',
	yellow:  '#ffdc00',
	fuchsia: '#f012be',
	gray:    '#aaaaaa',
	white:   '#ffffff',
	black:   '#111111',
	silver:  '#dddddd'
};

const getColor = aToRGBa(colorMap);

getColor('red'); // '#ff4136';
getColor('red.5') // 'rgba(255, 65, 54, 0.5)'

Getting Started

❯ yarn add alpha-string-to-rgba

Licence

The MIT License (MIT).

FAQs

Package last updated on 29 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts