-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfont-weight.scss
52 lines (51 loc) · 981 Bytes
/
font-weight.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* FILE: font-weight.scss
*
* This file defines the font weight values used in the project.
*
* The `items` map includes:
* - Font weight name (e.g., "Normal", "Bold")
* - Corresponding numeric value for the font weight
*/
$token: (
"title": "Font Weight",
"description": "Defines the font weight values used in the project.",
"items": (
// (
// "name": "Thin",
// "value": 100,
// ),
// (
// "name": "Extra Light",
// "value": 200,
// ),
// (
// "name": "Light",
// "value": 300,
// ),
(
"name": "Normal",
"value": 400,
),
// (
// "name": "Medium",
// "value": 500,
// ),
// (
// "name": "Semi Bold",
// "value": 600,
// ),
(
"name": "Bold",
"value": 700,
),
// (
// "name": "Extra Bold",
// "value": 800,
// ),
// (
// "name": "Black",
// "value": 900,
// ),,
),
);