2023-03-01 16:00:34 +01:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
//
|
|
|
|
// Copyright (c) KALEIDOS INC
|
|
|
|
|
|
|
|
@use "sass:math";
|
2023-03-15 18:02:57 +01:00
|
|
|
@import "common/dependencies/mixin";
|
2023-03-01 16:00:34 +01:00
|
|
|
|
|
|
|
// Typography scale
|
|
|
|
$fs-base: 16;
|
|
|
|
|
2023-03-15 18:02:57 +01:00
|
|
|
$fs-10: math.div(10, $fs-base) + rem;
|
2023-11-02 13:10:31 +01:00
|
|
|
$fs-11: 0.688rem;
|
2023-03-01 16:00:34 +01:00
|
|
|
$fs-12: math.div(12, $fs-base) + rem;
|
|
|
|
$fs-14: math.div(14, $fs-base) + rem;
|
2023-04-27 12:44:11 +02:00
|
|
|
$fs-16: math.div(16, $fs-base) + rem;
|
2024-02-12 11:49:34 +01:00
|
|
|
$fs-18: math.div(18, $fs-base) + rem;
|
2023-11-02 13:10:31 +01:00
|
|
|
$fs-24: math.div(24, $fs-base) + rem;
|
2023-11-21 14:56:51 +01:00
|
|
|
$fs-36: math.div(36, $fs-base) + rem;
|
2023-03-01 16:00:34 +01:00
|
|
|
|
|
|
|
// Font weight
|
|
|
|
$fw400: 400; // Regular (CSS value: 'normal')
|
|
|
|
$fw500: 500; // Medium
|
|
|
|
$fw700: 700; // Bold (CSS value: 'bold')
|