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: vimeo.$primary-rgb;
}
Custom Properties
@use "@brandcolors/vimeo";
:root {
@include vimeo.custom-properties(primary);
@include vimeo.custom-properties(primary-rgb);
}
API
Variables
Variable | Value |
---|
$blue | Return blue hex value. |
$dark-forest | Return dark forest hex value. |
$primary | Return primary (a.k.a blue) hex value. |
$primary-rgb | Return primary RGB value. |
Mixins
Mixin | Description |
---|
custom-properties($values...) | Create dedicated custom property. If the $values is empty, the mixin will create all styles by default. |