@sage/design-tokens 2.64.0 → 2.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/base.xml +4 -2
- package/android/dashboard/darkMode.xml +11 -0
- package/android/dashboard/lightMode.xml +11 -0
- package/android/origin.xml +108 -97
- package/css/base.css +4 -2
- package/css/dashboard/darkMode.css +13 -0
- package/css/dashboard/lightMode.css +13 -0
- package/css/origin.css +108 -97
- package/data/tokens.json +1125 -132
- package/docs/tokens/base/border-radius/index.html +41 -20
- package/docs/tokens/base/border-width/index.html +2 -2
- package/docs/tokens/base/box-shadow/index.html +2 -2
- package/docs/tokens/base/colors/index.html +23 -2
- package/docs/tokens/base/font-families/index.html +2 -2
- package/docs/tokens/base/font-sizes/index.html +2 -2
- package/docs/tokens/base/font-weights/index.html +2 -2
- package/docs/tokens/base/index.html +62 -20
- package/docs/tokens/base/line-heights/index.html +2 -2
- package/docs/tokens/base/opacity/index.html +2 -2
- package/docs/tokens/base/sizing/index.html +2 -2
- package/docs/tokens/base/spacing/index.html +2 -2
- package/docs/tokens/base/typography/index.html +2 -2
- package/docs/tokens/index.html +812 -539
- package/docs/tokens/origin/index.html +750 -519
- package/docs/tokens/origin/{colors → origin-colors-reference-only}/index.html +751 -520
- package/index.js +4 -0
- package/ios/base.h +4 -2
- package/ios/dashboard/darkMode.h +15 -0
- package/ios/dashboard/lightMode.h +15 -0
- package/ios/origin.h +108 -97
- package/js/base/common.d.ts +3 -1
- package/js/base/common.js +4 -2
- package/js/base/es6.d.ts +3 -1
- package/js/base/es6.js +3 -1
- package/js/dashboard/darkMode/common.d.ts +2 -0
- package/js/dashboard/darkMode/common.js +13 -0
- package/js/dashboard/darkMode/es6.d.ts +5 -0
- package/js/dashboard/darkMode/es6.js +8 -0
- package/js/dashboard/lightMode/common.d.ts +2 -0
- package/js/dashboard/lightMode/common.js +13 -0
- package/js/dashboard/lightMode/es6.d.ts +5 -0
- package/js/dashboard/lightMode/es6.js +8 -0
- package/js/origin/common.d.ts +107 -96
- package/js/origin/common.js +108 -97
- package/js/origin/es6.d.ts +107 -96
- package/js/origin/es6.js +107 -96
- package/package.json +1 -1
- package/sage-design-tokens-2.65.0.tgz +0 -0
- package/scss/base.scss +4 -2
- package/scss/dashboard/darkMode.scss +10 -0
- package/scss/dashboard/lightMode.scss +10 -0
- package/scss/origin.scss +108 -97
- package/sage-design-tokens-2.64.0.tgz +0 -0
package/index.js
CHANGED
|
@@ -4,5 +4,9 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
|
4
4
|
|
|
5
5
|
export * as baseCommon from './js/base/common'
|
|
6
6
|
export * as baseEs6 from './js/base/es6'
|
|
7
|
+
export * as darkModeCommon from './js/darkMode/common'
|
|
8
|
+
export * as darkModeEs6 from './js/darkMode/es6'
|
|
9
|
+
export * as lightModeCommon from './js/lightMode/common'
|
|
10
|
+
export * as lightModeEs6 from './js/lightMode/es6'
|
|
7
11
|
export * as originCommon from './js/origin/common'
|
|
8
12
|
export * as originEs6 from './js/origin/es6'
|
package/ios/base.h
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on Wed,
|
|
7
|
+
// Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
#import <Foundation/Foundation.h>
|
|
@@ -227,6 +227,7 @@
|
|
|
227
227
|
#define colorsComponentsMenuYin090 #000000e6
|
|
228
228
|
#define colorsComponentsMenuYang100 #ffffffff
|
|
229
229
|
#define colorsComponentsMenuYang080 #ffffffcc
|
|
230
|
+
#define colorsComponentsMenuYang030 #ffffff4d
|
|
230
231
|
#define colorsComponentsMenuTransparent #00000000
|
|
231
232
|
#define sizing100 8px
|
|
232
233
|
#define sizing125 10px
|
|
@@ -322,9 +323,10 @@
|
|
|
322
323
|
#define borderRadius200 16px
|
|
323
324
|
#define borderRadius400 32px
|
|
324
325
|
#define borderRadiusCircle 50%
|
|
326
|
+
#define borderRadius000 0px
|
|
327
|
+
#define borderRadius010 1px
|
|
325
328
|
#define borderRadius025 2px
|
|
326
329
|
#define borderRadius050 4px
|
|
327
|
-
#define borderRadius000 0px
|
|
328
330
|
#define typographyAccordionTitleM Medium 20px/125% Sage UI
|
|
329
331
|
#define typographyAccordionTitleS Medium 16px/125% Sage UI
|
|
330
332
|
#define typographyAccordionSubtitleM Regular 14px/150% Sage UI
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// dashboard/darkMode.h
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
// Do not edit directly
|
|
7
|
+
// Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
#import <Foundation/Foundation.h>
|
|
11
|
+
#import <UIKit/UIKit.h>
|
|
12
|
+
|
|
13
|
+
#define metaName Dashboard Dark-Mode Token Set
|
|
14
|
+
#define metaPublic true
|
|
15
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// dashboard/lightMode.h
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
// Do not edit directly
|
|
7
|
+
// Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
#import <Foundation/Foundation.h>
|
|
11
|
+
#import <UIKit/UIKit.h>
|
|
12
|
+
|
|
13
|
+
#define metaName Dashboard Light-Mode Token Set
|
|
14
|
+
#define metaPublic true
|
|
15
|
+
|
package/ios/origin.h
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on Wed,
|
|
7
|
+
// Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
#import <Foundation/Foundation.h>
|
|
@@ -12,100 +12,111 @@
|
|
|
12
12
|
|
|
13
13
|
#define metaName Origin Token Set
|
|
14
14
|
#define metaPublic true
|
|
15
|
-
#define
|
|
16
|
-
#define
|
|
17
|
-
#define
|
|
18
|
-
#define
|
|
19
|
-
#define
|
|
20
|
-
#define
|
|
21
|
-
#define
|
|
22
|
-
#define
|
|
23
|
-
#define
|
|
24
|
-
#define
|
|
25
|
-
#define
|
|
26
|
-
#define
|
|
27
|
-
#define
|
|
28
|
-
#define
|
|
29
|
-
#define
|
|
30
|
-
#define
|
|
31
|
-
#define
|
|
32
|
-
#define
|
|
33
|
-
#define
|
|
34
|
-
#define
|
|
35
|
-
#define
|
|
36
|
-
#define
|
|
37
|
-
#define
|
|
38
|
-
#define
|
|
39
|
-
#define
|
|
40
|
-
#define
|
|
41
|
-
#define
|
|
42
|
-
#define
|
|
43
|
-
#define
|
|
44
|
-
#define
|
|
45
|
-
#define
|
|
46
|
-
#define
|
|
47
|
-
#define
|
|
48
|
-
#define
|
|
49
|
-
#define
|
|
50
|
-
#define
|
|
51
|
-
#define
|
|
52
|
-
#define
|
|
53
|
-
#define
|
|
54
|
-
#define
|
|
55
|
-
#define
|
|
56
|
-
#define
|
|
57
|
-
#define
|
|
58
|
-
#define
|
|
59
|
-
#define
|
|
60
|
-
#define
|
|
61
|
-
#define
|
|
62
|
-
#define
|
|
63
|
-
#define
|
|
64
|
-
#define
|
|
65
|
-
#define
|
|
66
|
-
#define
|
|
67
|
-
#define
|
|
68
|
-
#define
|
|
69
|
-
#define
|
|
70
|
-
#define
|
|
71
|
-
#define
|
|
72
|
-
#define
|
|
73
|
-
#define
|
|
74
|
-
#define
|
|
75
|
-
#define
|
|
76
|
-
#define
|
|
77
|
-
#define
|
|
78
|
-
#define
|
|
79
|
-
#define
|
|
80
|
-
#define
|
|
81
|
-
#define
|
|
82
|
-
#define
|
|
83
|
-
#define
|
|
84
|
-
#define
|
|
85
|
-
#define
|
|
86
|
-
#define
|
|
87
|
-
#define
|
|
88
|
-
#define
|
|
89
|
-
#define
|
|
90
|
-
#define
|
|
91
|
-
#define
|
|
92
|
-
#define
|
|
93
|
-
#define
|
|
94
|
-
#define
|
|
95
|
-
#define
|
|
96
|
-
#define
|
|
97
|
-
#define
|
|
98
|
-
#define
|
|
99
|
-
#define
|
|
100
|
-
#define
|
|
101
|
-
#define
|
|
102
|
-
#define
|
|
103
|
-
#define
|
|
104
|
-
#define
|
|
105
|
-
#define
|
|
106
|
-
#define
|
|
107
|
-
#define
|
|
108
|
-
#define
|
|
109
|
-
#define
|
|
110
|
-
#define
|
|
15
|
+
#define originColorsReferenceOnlyYin100 #000000ff
|
|
16
|
+
#define originColorsReferenceOnlyYin010 #0000001a
|
|
17
|
+
#define originColorsReferenceOnlyYin020 #00000033
|
|
18
|
+
#define originColorsReferenceOnlyYin030 #0000004d
|
|
19
|
+
#define originColorsReferenceOnlyYin055 #0000008c
|
|
20
|
+
#define originColorsReferenceOnlyYin065 #000000a6
|
|
21
|
+
#define originColorsReferenceOnlyYin075 #000000bf
|
|
22
|
+
#define originColorsReferenceOnlyYin090 #000000e6
|
|
23
|
+
#define originColorsReferenceOnlyYang100 #ffffffff
|
|
24
|
+
#define originColorsReferenceOnlyYang030 #ffffff4d
|
|
25
|
+
#define originColorsReferenceOnlyYang080 #ffffffcc
|
|
26
|
+
#define originColorsReferenceOnlyMalachite100 #8df79fff
|
|
27
|
+
#define originColorsReferenceOnlyMalachite200 #42eb64ff
|
|
28
|
+
#define originColorsReferenceOnlyMalachite300 #00d639ff
|
|
29
|
+
#define originColorsReferenceOnlyMalachite400 #00af2dff
|
|
30
|
+
#define originColorsReferenceOnlyMalachite500 #008a21ff
|
|
31
|
+
#define originColorsReferenceOnlyMalachite600 #006716ff
|
|
32
|
+
#define originColorsReferenceOnlyMalachite700 #00460cff
|
|
33
|
+
#define originColorsReferenceOnlyMalachite800 #002f08ff
|
|
34
|
+
#define originColorsReferenceOnlyMalachite900 #001704ff
|
|
35
|
+
#define originColorsReferenceOnlyMalachite010 #effcf0ff
|
|
36
|
+
#define originColorsReferenceOnlyMalachite050 #c1fac7ff
|
|
37
|
+
#define originColorsReferenceOnlyJade100 #8ff8b7ff
|
|
38
|
+
#define originColorsReferenceOnlyJade200 #44ed90ff
|
|
39
|
+
#define originColorsReferenceOnlyJade300 #00ca71ff
|
|
40
|
+
#define originColorsReferenceOnlyJade400 #00a65cff
|
|
41
|
+
#define originColorsReferenceOnlyJade500 #00884aff
|
|
42
|
+
#define originColorsReferenceOnlyJade600 #006d3bff
|
|
43
|
+
#define originColorsReferenceOnlyJade700 #00522cff
|
|
44
|
+
#define originColorsReferenceOnlyJade800 #00361eff
|
|
45
|
+
#define originColorsReferenceOnlyJade900 #001b0fff
|
|
46
|
+
#define originColorsReferenceOnlyJade010 #f2fef7ff
|
|
47
|
+
#define originColorsReferenceOnlyJade050 #c4fcd8ff
|
|
48
|
+
#define originColorsReferenceOnlyNavy100 #89d7edff
|
|
49
|
+
#define originColorsReferenceOnlyNavy200 #65bedfff
|
|
50
|
+
#define originColorsReferenceOnlyNavy300 #41a5d1ff
|
|
51
|
+
#define originColorsReferenceOnlyNavy400 #1d8cc3ff
|
|
52
|
+
#define originColorsReferenceOnlyNavy500 #0e74a7ff
|
|
53
|
+
#define originColorsReferenceOnlyNavy600 #095b84ff
|
|
54
|
+
#define originColorsReferenceOnlyNavy700 #054262ff
|
|
55
|
+
#define originColorsReferenceOnlyNavy800 #00293fff
|
|
56
|
+
#define originColorsReferenceOnlyNavy900 #001520ff
|
|
57
|
+
#define originColorsReferenceOnlyNavy010 #f4fcfeff
|
|
58
|
+
#define originColorsReferenceOnlyNavy050 #caf1fcff
|
|
59
|
+
#define originColorsReferenceOnlyTeal100 #89edeaff
|
|
60
|
+
#define originColorsReferenceOnlyTeal200 #5bcfcdff
|
|
61
|
+
#define originColorsReferenceOnlyTeal300 #2eb2b1ff
|
|
62
|
+
#define originColorsReferenceOnlyTeal400 #009494ff
|
|
63
|
+
#define originColorsReferenceOnlyTeal500 #007776ff
|
|
64
|
+
#define originColorsReferenceOnlyTeal600 #006362ff
|
|
65
|
+
#define originColorsReferenceOnlyTeal700 #004a4aff
|
|
66
|
+
#define originColorsReferenceOnlyTeal800 #003231ff
|
|
67
|
+
#define originColorsReferenceOnlyTeal900 #001919ff
|
|
68
|
+
#define originColorsReferenceOnlyTeal010 #f4fefeff
|
|
69
|
+
#define originColorsReferenceOnlyTeal050 #c3faf8ff
|
|
70
|
+
#define originColorsReferenceOnlyAmber100 #ffe290ff
|
|
71
|
+
#define originColorsReferenceOnlyAmber200 #f5ce55ff
|
|
72
|
+
#define originColorsReferenceOnlyAmber300 #efab2fff
|
|
73
|
+
#define originColorsReferenceOnlyAmber400 #e98709ff
|
|
74
|
+
#define originColorsReferenceOnlyAmber500 #c15708ff
|
|
75
|
+
#define originColorsReferenceOnlyAmber600 #9b4609ff
|
|
76
|
+
#define originColorsReferenceOnlyAmber700 #75330aff
|
|
77
|
+
#define originColorsReferenceOnlyAmber800 #4f220bff
|
|
78
|
+
#define originColorsReferenceOnlyAmber900 #281106ff
|
|
79
|
+
#define originColorsReferenceOnlyAmber010 #fffcefff
|
|
80
|
+
#define originColorsReferenceOnlyAmber050 #fff0c3ff
|
|
81
|
+
#define originColorsReferenceOnlyCherry100 #f7b3c2ff
|
|
82
|
+
#define originColorsReferenceOnlyCherry200 #ed94aaff
|
|
83
|
+
#define originColorsReferenceOnlyCherry300 #e27491ff
|
|
84
|
+
#define originColorsReferenceOnlyCherry400 #d85579ff
|
|
85
|
+
#define originColorsReferenceOnlyCherry500 #ba3c63ff
|
|
86
|
+
#define originColorsReferenceOnlyCherry600 #95304fff
|
|
87
|
+
#define originColorsReferenceOnlyCherry700 #70243bff
|
|
88
|
+
#define originColorsReferenceOnlyCherry800 #4a1828ff
|
|
89
|
+
#define originColorsReferenceOnlyCherry900 #250c14ff
|
|
90
|
+
#define originColorsReferenceOnlyCherry010 #fef5f7ff
|
|
91
|
+
#define originColorsReferenceOnlyCherry050 #fad4deff
|
|
92
|
+
#define originColorsReferenceOnlyTerra100 #ffbca6ff
|
|
93
|
+
#define originColorsReferenceOnlyTerra200 #f59a83ff
|
|
94
|
+
#define originColorsReferenceOnlyTerra300 #ea7961ff
|
|
95
|
+
#define originColorsReferenceOnlyTerra400 #e0583eff
|
|
96
|
+
#define originColorsReferenceOnlyTerra500 #c94633ff
|
|
97
|
+
#define originColorsReferenceOnlyTerra600 #a13829ff
|
|
98
|
+
#define originColorsReferenceOnlyTerra700 #782a1eff
|
|
99
|
+
#define originColorsReferenceOnlyTerra800 #501c14ff
|
|
100
|
+
#define originColorsReferenceOnlyTerra900 #280e0aff
|
|
101
|
+
#define originColorsReferenceOnlyTerra010 #fff7f5ff
|
|
102
|
+
#define originColorsReferenceOnlyTerra050 #ffdcd1ff
|
|
103
|
+
#define originColorsReferenceOnlyGray100 #e6e6e6ff
|
|
104
|
+
#define originColorsReferenceOnlyGray200 #ccccccff
|
|
105
|
+
#define originColorsReferenceOnlyGray300 #b3b3b3ff
|
|
106
|
+
#define originColorsReferenceOnlyGray400 #999999ff
|
|
107
|
+
#define originColorsReferenceOnlyGray500 #808080ff
|
|
108
|
+
#define originColorsReferenceOnlyGray600 #666666ff
|
|
109
|
+
#define originColorsReferenceOnlyGray700 #4d4d4dff
|
|
110
|
+
#define originColorsReferenceOnlyGray800 #333333ff
|
|
111
|
+
#define originColorsReferenceOnlyGray900 #191919ff
|
|
112
|
+
#define originColorsReferenceOnlyGray1000 #000000ff
|
|
113
|
+
#define originColorsReferenceOnlyGray000 #ffffffff
|
|
114
|
+
#define originColorsReferenceOnlyGray010 #fcfcfcff
|
|
115
|
+
#define originColorsReferenceOnlyGray050 #f2f2f2ff
|
|
116
|
+
#define originColorsReferenceOnlySkin400 #ddb89eff
|
|
117
|
+
#define originColorsReferenceOnlySkin500 #e84d4fff
|
|
118
|
+
#define originColorsReferenceOnlySkin600 #b26e3dff
|
|
119
|
+
#define originColorsReferenceOnlySkin700 #3a2417ff
|
|
120
|
+
#define originColorsReferenceOnlyFuchsia400 #bf47c3ff
|
|
121
|
+
#define originColorsReferenceOnlyFuchsia500 #b832bcff
|
|
111
122
|
|
package/js/base/common.d.ts
CHANGED
|
@@ -215,6 +215,7 @@ export const colorsComponentsMenuYin065: string;
|
|
|
215
215
|
export const colorsComponentsMenuYin090: string;
|
|
216
216
|
export const colorsComponentsMenuYang100: string;
|
|
217
217
|
export const colorsComponentsMenuYang080: string;
|
|
218
|
+
export const colorsComponentsMenuYang030: string;
|
|
218
219
|
export const colorsComponentsMenuTransparent: string;
|
|
219
220
|
export const sizing100: string;
|
|
220
221
|
export const sizing125: string;
|
|
@@ -310,9 +311,10 @@ export const borderRadius100: string;
|
|
|
310
311
|
export const borderRadius200: string;
|
|
311
312
|
export const borderRadius400: string;
|
|
312
313
|
export const borderRadiusCircle: string;
|
|
314
|
+
export const borderRadius000: string;
|
|
315
|
+
export const borderRadius010: string;
|
|
313
316
|
export const borderRadius025: string;
|
|
314
317
|
export const borderRadius050: string;
|
|
315
|
-
export const borderRadius000: string;
|
|
316
318
|
export const typographyAccordionTitleM: string;
|
|
317
319
|
export const typographyAccordionTitleS: string;
|
|
318
320
|
export const typographyAccordionSubtitleM: string;
|
package/js/base/common.js
CHANGED
|
@@ -4,7 +4,7 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on Wed,
|
|
7
|
+
* Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
@@ -225,6 +225,7 @@ module.exports = {
|
|
|
225
225
|
colorsComponentsMenuYin090: '#000000e6',
|
|
226
226
|
colorsComponentsMenuYang100: '#ffffffff',
|
|
227
227
|
colorsComponentsMenuYang080: '#ffffffcc',
|
|
228
|
+
colorsComponentsMenuYang030: '#ffffff4d',
|
|
228
229
|
colorsComponentsMenuTransparent: '#00000000',
|
|
229
230
|
sizing100: '8px',
|
|
230
231
|
sizing125: '10px',
|
|
@@ -320,9 +321,10 @@ module.exports = {
|
|
|
320
321
|
borderRadius200: '16px',
|
|
321
322
|
borderRadius400: '32px',
|
|
322
323
|
borderRadiusCircle: '50%',
|
|
324
|
+
borderRadius000: '0px',
|
|
325
|
+
borderRadius010: '1px',
|
|
323
326
|
borderRadius025: '2px',
|
|
324
327
|
borderRadius050: '4px',
|
|
325
|
-
borderRadius000: '0px',
|
|
326
328
|
typographyAccordionTitleM: '500 20px/125% Sage UI',
|
|
327
329
|
typographyAccordionTitleS: '500 16px/125% Sage UI',
|
|
328
330
|
typographyAccordionSubtitleM: '400 14px/150% Sage UI',
|
package/js/base/es6.d.ts
CHANGED
|
@@ -216,6 +216,7 @@ declare namespace _default {
|
|
|
216
216
|
const colorsComponentsMenuYin090: string;
|
|
217
217
|
const colorsComponentsMenuYang100: string;
|
|
218
218
|
const colorsComponentsMenuYang080: string;
|
|
219
|
+
const colorsComponentsMenuYang030: string;
|
|
219
220
|
const colorsComponentsMenuTransparent: string;
|
|
220
221
|
const sizing100: string;
|
|
221
222
|
const sizing125: string;
|
|
@@ -311,9 +312,10 @@ declare namespace _default {
|
|
|
311
312
|
const borderRadius200: string;
|
|
312
313
|
const borderRadius400: string;
|
|
313
314
|
const borderRadiusCircle: string;
|
|
315
|
+
const borderRadius000: string;
|
|
316
|
+
const borderRadius010: string;
|
|
314
317
|
const borderRadius025: string;
|
|
315
318
|
const borderRadius050: string;
|
|
316
|
-
const borderRadius000: string;
|
|
317
319
|
const typographyAccordionTitleM: string;
|
|
318
320
|
const typographyAccordionTitleS: string;
|
|
319
321
|
const typographyAccordionSubtitleM: string;
|
package/js/base/es6.js
CHANGED
|
@@ -220,6 +220,7 @@ export default {
|
|
|
220
220
|
colorsComponentsMenuYin090: '#000000e6',
|
|
221
221
|
colorsComponentsMenuYang100: '#ffffffff',
|
|
222
222
|
colorsComponentsMenuYang080: '#ffffffcc',
|
|
223
|
+
colorsComponentsMenuYang030: '#ffffff4d',
|
|
223
224
|
colorsComponentsMenuTransparent: '#00000000',
|
|
224
225
|
sizing100: '8px',
|
|
225
226
|
sizing125: '10px',
|
|
@@ -315,9 +316,10 @@ export default {
|
|
|
315
316
|
borderRadius200: '16px',
|
|
316
317
|
borderRadius400: '32px',
|
|
317
318
|
borderRadiusCircle: '50%',
|
|
319
|
+
borderRadius000: '0px',
|
|
320
|
+
borderRadius010: '1px',
|
|
318
321
|
borderRadius025: '2px',
|
|
319
322
|
borderRadius050: '4px',
|
|
320
|
-
borderRadius000: '0px',
|
|
321
323
|
typographyAccordionTitleM: '500 20px/125% Sage UI',
|
|
322
324
|
typographyAccordionTitleS: '500 16px/125% Sage UI',
|
|
323
325
|
typographyAccordionSubtitleM: '400 14px/150% Sage UI',
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Do not edit directly
|
|
7
|
+
* Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
module.exports = {
|
|
11
|
+
metaName: 'Dashboard Dark-Mode Token Set',
|
|
12
|
+
metaPublic: 'true'
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Do not edit directly
|
|
7
|
+
* Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
module.exports = {
|
|
11
|
+
metaName: 'Dashboard Light-Mode Token Set',
|
|
12
|
+
metaPublic: 'true'
|
|
13
|
+
}
|