Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@skyscanner/bpk-foundations-web

Package Overview
Dependencies
Maintainers
5
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@skyscanner/bpk-foundations-web

Common Backpack design tokens for colors, spacing, font, etc.

latest
npmnpm
Version
22.3.0
Version published
Weekly downloads
514
-16.29%
Maintainers
5
Weekly downloads
 
Created
Source

@skyscanner/bpk-foundations-web

Design tokens for colours, spacing, font, etc.

Installation

npm install @skyscanner/bpk-foundations-web --save-dev

Usage

Sass:

@import '~@skyscanner/bpk-foundations-web/tokens/base.default.scss';

.my-selector {
  padding: $bpk-spacing-base;
}

JavaScript (ES6 module):

For web:

// Individual tokens
import { colorSkyGrayTint01 } from '@skyscanner/bpk-foundations-web/tokens/base.es6';

console.log(colorSkyGrayTint01);

// Whole token categories
import { colors } from '@skyscanner/bpk-foundations-web/tokens/base.es6';

console.log(colors.colorSkyGrayTint01);

// All tokens
import * as tokens from '@skyscanner/bpk-foundations-web/tokens/base.es6';

console.log(tokens);

JavaScript (CommonJS):

// Individual tokens
import { colorSkyGrayTint01 } from '@skyscanner/bpk-foundations-web/tokens/base.common';

console.log(colorSkyGrayTint01);

// All tokens
import * as tokens from '@skyscanner/bpk-foundations-web/tokens/base.common';

console.log(tokens);

Transparency

It is possible to add opacity to Backpack color tokens as follows:

import { colorSkyBlue } from '@skyscanner/bpk-foundations-web/tokens/base.common';
import { setOpacity } from '@skyscanner/bpk-foundations-web';

const transparentBlue500 = setOpacity(colorSkyBlue, 0.7);

console.log(transparentBlue500);

FAQs

Package last updated on 15 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts