/*
 * Copyright (c) 2021 Nordic Semiconductor ASA
 *
 * SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
 */

@use "sass:color";
@import "../variables";

// Remember: When changing any entries here, they also must be
// changed at the corresponding place in colors.ts
:export {
    nordicBlue: $nordic-blue;
    blueSlate: $blue-slate;

    white: $white;
    black: $black;
    transparent: $transparent;

    primary: $primary;
    primaryDarkened: $primary-darkened;
    secondary: $secondary;
    accent: $accent;
    gray50: $gray-50;
    gray100: $gray-100;
    gray200: $gray-200;
    gray300: $gray-300;
    gray400: $gray-400;
    gray500: $gray-500;
    gray600: $gray-600;
    gray700: $gray-700;
    gray800: $gray-800;
    gray900: $gray-900;

    red: $red;
    indigo: $indigo;
    amber: $amber;
    purple: $purple;
    green: $green;
    deepPurple: $deep-purple;
    orange: $orange;
    lime: $lime;
    pink: $pink;

    blueSlateLighter: color.scale($blue-slate, $lightness: 50%, $saturation: -50%);
    greenLighter: color.scale($green, $lightness: 50%, $saturation: -50%);
}
