@brandcolors/facebook

1.7.0 • Public • Published

Brand Colors Facebook

Version Download License

Introduction

Facebook Brand Colors.

Installation

npm install @brandcolors/facebook

Usage

Styles

@use "@brandcolors/facebook/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/facebook";

.foo {
    color: facebook.$primary;
    // color: #1877f2;
    color: facebook.$primary-rgb;
    // color: rgb(24, 119, 242);
}

Custom Properties

@use "@brandcolors/facebook";

:root {
    @include facebook.custom-properties(primary);
    // --bc-facebook-primary: #1877f2;
    @include facebook.custom-properties(primary-rgb);
    // --bc-facebook-primary-rgb: rgb(24, 119, 242);
}

API

Variables

Variable Value
$primary Return hex value color.
$primary-rgb Return rgb color.

Mixins

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

Package Sidebar

Install

npm i @brandcolors/facebook

Weekly Downloads

6

Version

1.7.0

License

MIT

Unpacked Size

6.67 kB

Total Files

8

Last publish

Collaborators

  • bdamevin