Introduction
LinkedIn Brand Colors.
Installation
npm install @brandcolors/linkedin
Usage
Styles
The styles will create custom properties in CSS root
. If you want this custom properties anywhere else, use the public
mixin custom-properties
.
@use "@brandcolors/linkedin/styles";
Theming
@use "@brandcolors/linkedin";
.foo {
color: linkedin.$primary;
color: linkedin.$primary-rgb;
}
Custom Properties
@use "@brandcolors/linkedin";
:root {
@include linkedin.custom-properties(primary);
@include linkedin.custom-properties(primary-rgb);
}
API
Variables
Variable | Value |
---|
$primary | Return #... . |
$primary-rgb | Return rgb(...) . |
Mixins
Mixin | Description |
---|
custom-properties($values...) | Create custom property on root . If the $values is empty, the mixin will create all styles by default. |