1.7.0 • Published 2 years ago

@brandcolors/linkedin v1.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Brand Colors LinkedIn

Version Download License

Introduction

LinkedIn Brand Colors.

Installation

npm install @brandcolors/linkedin

Usage

Styles

@use "@brandcolors/linkedin/styles";

The styles will create all custom properties in CSS root. If you want this custom properties anywhere else, use the public mixin custom-properties.

Theming

@use "@brandcolors/linkedin";

.foo {
    color: linkedin.$primary;
    // color: #1da1f2;
    color: linkedin.$primary-rgb;
    // color: rgb(29, 161, 242);
}

Custom Properties

@use "@brandcolors/linkedin";

:root {
    @include linkedin.custom-properties(primary);
    // --bc-linkedin-primary: #1da1f2;
    @include linkedin.custom-properties(primary-rgb);
    // --bc-linkedin-primary-rgb: rgb(29, 161, 242);
}

API

Variables

VariableValue
$primaryReturn hex value color.
$primary-rgbReturn rgb color.

Mixins

MixinDescription
custom-properties($values...)Create dedicated custom property. If the $values is empty, the mixin will create all styles by default.
1.7.0

2 years ago

1.6.0

2 years ago

1.5.0

2 years ago

1.4.0

2 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago