1.7.0 • Published 2 years ago

@brandcolors/vimeo v1.7.0

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

Brand Colors Vimeo

Version Download License

Introduction

Vimeo Brand Colors.

Installation

npm install @brandcolors/vimeo

Usage

Styles

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

.foo {
    color: vimeo.$primary;
    // color: #1ab7ea;
    color: vimeo.$primary-rgb;
    // color: rgb(26, 183, 234);
}

Custom Properties

@use "@brandcolors/vimeo";

:root {
    @include vimeo.custom-properties(primary);
    // --bc-vimeo-primary: #1ab7ea;
    @include vimeo.custom-properties(primary-rgb);
    // --bc-vimeo-primary-rgb: rgb(26, 183, 234);
}

API

Variables

VariableValue
$blueReturn blue hex value.
$dark-forestReturn dark forest hex value.
$primaryReturn primary (a.k.a blue) hex value.
$primary-rgbReturn primary RGB value.

Mixins

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