@momentum-design/tokens 0.2.8 → 0.3.1
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/dist/css/components/complete.css +16 -2
- package/dist/css/core/complete.css +1 -1
- package/dist/css/effect/complete.css +1 -1
- package/dist/css/elevation/complete.css +1 -1
- package/dist/css/theme/aaos/day-complete.css +1 -1
- package/dist/css/theme/aaos/night-complete.css +1 -1
- package/dist/css/theme/webex/dark-stable.css +9 -2
- package/dist/css/theme/webex/hc-dark-stable.css +8 -1
- package/dist/css/theme/webex/hc-light-stable.css +8 -1
- package/dist/css/theme/webex/light-stable.css +9 -2
- package/dist/css/typography/complete.css +1 -1
- package/dist/ios/core/complete.swift +1 -1
- package/dist/ios/effect/complete.swift +1 -1
- package/dist/ios/elevation/complete.swift +1 -1
- package/dist/ios/theme/aaos/day-complete.swift +1 -1
- package/dist/ios/theme/aaos/night-complete.swift +1 -1
- package/dist/ios/theme/webex/dark-stable.swift +9 -2
- package/dist/ios/theme/webex/hc-dark-stable.swift +8 -1
- package/dist/ios/theme/webex/hc-light-stable.swift +8 -1
- package/dist/ios/theme/webex/light-stable.swift +9 -2
- package/dist/ios/typography/complete.swift +1 -1
- package/dist/ios-webex/theme/webex/dark-stable.swift +8 -1
- package/dist/ios-webex/theme/webex/hc-dark-stable.swift +7 -0
- package/dist/ios-webex/theme/webex/hc-light-stable.swift +21 -0
- package/dist/ios-webex/theme/webex/light-stable.swift +22 -1
- package/dist/json/theme/webex/dark-stable.json +204 -2
- package/dist/json/theme/webex/hc-dark-stable.json +202 -0
- package/dist/json/theme/webex/hc-light-stable.json +202 -0
- package/dist/json/theme/webex/light-stable.json +204 -2
- package/dist/json-minimal/theme/webex/dark-stable.json +17 -2
- package/dist/json-minimal/theme/webex/hc-dark-stable.json +17 -2
- package/dist/json-minimal/theme/webex/hc-light-stable.json +17 -2
- package/dist/json-minimal/theme/webex/light-stable.json +17 -2
- package/dist/resources/core/complete.xml +1 -1
- package/dist/resources/effect/complete.xml +1 -1
- package/dist/resources/elevation/complete.xml +1 -1
- package/dist/resources/theme/aaos/day-complete.xml +1 -1
- package/dist/resources/theme/aaos/night-complete.xml +1 -1
- package/dist/resources/theme/webex/dark-stable.xml +9 -2
- package/dist/resources/theme/webex/hc-dark-stable.xml +8 -1
- package/dist/resources/theme/webex/hc-light-stable.xml +8 -1
- package/dist/resources/theme/webex/light-stable.xml +9 -2
- package/dist/resources/typography/complete.xml +1 -1
- package/dist/scss/core/complete.scss +1 -1
- package/dist/scss/effect/complete.scss +1 -1
- package/dist/scss/elevation/complete.scss +1 -1
- package/dist/scss/theme/aaos/day-complete.scss +1 -1
- package/dist/scss/theme/aaos/night-complete.scss +1 -1
- package/dist/scss/theme/webex/dark-stable.scss +9 -2
- package/dist/scss/theme/webex/hc-dark-stable.scss +8 -1
- package/dist/scss/theme/webex/hc-light-stable.scss +8 -1
- package/dist/scss/theme/webex/light-stable.scss +9 -2
- package/dist/scss/typography/complete.scss +1 -1
- package/package.json +1 -1
|
@@ -169,6 +169,8 @@ import UIKit
|
|
|
169
169
|
var skeletonNormal2: UIColor { get }
|
|
170
170
|
var skeletonNormal3: UIColor { get }
|
|
171
171
|
var glassNormal: UIColor { get }
|
|
172
|
+
var glassOverlayNormal: UIColor { get }
|
|
173
|
+
var glassOverlayInactive: UIColor { get }
|
|
172
174
|
}
|
|
173
175
|
@objc public protocol MomentumThemeButtonColorPaletteProtocol: AnyObject {
|
|
174
176
|
var primaryNormal: UIColor { get }
|
|
@@ -192,6 +194,9 @@ import UIKit
|
|
|
192
194
|
var accentNormal: UIColor { get }
|
|
193
195
|
var accentHover: UIColor { get }
|
|
194
196
|
var accentPressed: UIColor { get }
|
|
197
|
+
var glassPrimaryNormal: UIColor { get }
|
|
198
|
+
var glassPrimaryHover: UIColor { get }
|
|
199
|
+
var glassPrimaryPressed: UIColor { get }
|
|
195
200
|
}
|
|
196
201
|
@objc public protocol MomentumThemeOutlineColorPaletteProtocol: AnyObject {
|
|
197
202
|
var primaryNormal: UIColor { get }
|
|
@@ -403,6 +408,8 @@ import UIKit
|
|
|
403
408
|
var yellow: UIColor { get }
|
|
404
409
|
var hover: UIColor { get }
|
|
405
410
|
var pressed: UIColor { get }
|
|
411
|
+
var glassNormal: UIColor { get }
|
|
412
|
+
var glassActive: UIColor { get }
|
|
406
413
|
}
|
|
407
414
|
@objc public protocol MomentumThemeGradientDividerColorPaletteProtocol: AnyObject {
|
|
408
415
|
var defaultNormal0: UIColor { get }
|
|
@@ -662,7 +669,9 @@ open class LightMomentumThemeBackgroundColorPalette: MomentumThemeBackgroundColo
|
|
|
662
669
|
open var skeletonNormal1: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.30) }
|
|
663
670
|
open var skeletonNormal2: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.40) }
|
|
664
671
|
open var skeletonNormal3: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.50) }
|
|
665
|
-
open var glassNormal: UIColor { return UIColor(hex: 0xFFFFFF, withAlpha: 0.
|
|
672
|
+
open var glassNormal: UIColor { return UIColor(hex: 0xFFFFFF, withAlpha: 0.60) }
|
|
673
|
+
open var glassOverlayNormal: UIColor { return UIColor(hex: 0xFFFFFF, withAlpha: 0.80) }
|
|
674
|
+
open var glassOverlayInactive: UIColor { return UIColor(hex: 0xFFFFFF, withAlpha: 0.40) }
|
|
666
675
|
public init() {}
|
|
667
676
|
}
|
|
668
677
|
open class LightMomentumThemeButtonColorPalette: MomentumThemeButtonColorPaletteProtocol {
|
|
@@ -687,6 +696,9 @@ open class LightMomentumThemeButtonColorPalette: MomentumThemeButtonColorPalette
|
|
|
687
696
|
open var accentNormal: UIColor { return UIColor(hex: 0x1170CF) }
|
|
688
697
|
open var accentHover: UIColor { return UIColor(hex: 0x0353A8) }
|
|
689
698
|
open var accentPressed: UIColor { return UIColor(hex: 0x063A75) }
|
|
699
|
+
open var glassPrimaryNormal: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.80) }
|
|
700
|
+
open var glassPrimaryHover: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.70) }
|
|
701
|
+
open var glassPrimaryPressed: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.60) }
|
|
690
702
|
public init() {}
|
|
691
703
|
}
|
|
692
704
|
open class LightMomentumThemeOutlineColorPalette: MomentumThemeOutlineColorPaletteProtocol {
|
|
@@ -908,6 +920,8 @@ open class LightMomentumThemeAvatarColorPalette: MomentumThemeAvatarColorPalette
|
|
|
908
920
|
open var yellow: UIColor { return UIColor(hex: 0x7D4705) }
|
|
909
921
|
open var hover: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.07) }
|
|
910
922
|
open var pressed: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.20) }
|
|
923
|
+
open var glassNormal: UIColor { return UIColor(hex: 0x000000, withAlpha: 0.07) }
|
|
924
|
+
open var glassActive: UIColor { return UIColor(hex: 0xFFFFFF, withAlpha: 0.80) }
|
|
911
925
|
public init() {}
|
|
912
926
|
}
|
|
913
927
|
open class LightMomentumThemeGradientDividerColorPalette: MomentumThemeGradientDividerColorPaletteProtocol {
|
|
@@ -1234,6 +1248,8 @@ open class SystemMomentumThemeBackgroundColorPalette: MomentumThemeBackgroundCol
|
|
|
1234
1248
|
open var skeletonNormal2: UIColor { return systemColor(light: light, dark: dark, keyPath: \.skeletonNormal2) }
|
|
1235
1249
|
open var skeletonNormal3: UIColor { return systemColor(light: light, dark: dark, keyPath: \.skeletonNormal3) }
|
|
1236
1250
|
open var glassNormal: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassNormal) }
|
|
1251
|
+
open var glassOverlayNormal: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassOverlayNormal) }
|
|
1252
|
+
open var glassOverlayInactive: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassOverlayInactive) }
|
|
1237
1253
|
public init() {}
|
|
1238
1254
|
}
|
|
1239
1255
|
open class SystemMomentumThemeButtonColorPalette: MomentumThemeButtonColorPaletteProtocol {
|
|
@@ -1260,6 +1276,9 @@ open class SystemMomentumThemeButtonColorPalette: MomentumThemeButtonColorPalett
|
|
|
1260
1276
|
open var accentNormal: UIColor { return systemColor(light: light, dark: dark, keyPath: \.accentNormal) }
|
|
1261
1277
|
open var accentHover: UIColor { return systemColor(light: light, dark: dark, keyPath: \.accentHover) }
|
|
1262
1278
|
open var accentPressed: UIColor { return systemColor(light: light, dark: dark, keyPath: \.accentPressed) }
|
|
1279
|
+
open var glassPrimaryNormal: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassPrimaryNormal) }
|
|
1280
|
+
open var glassPrimaryHover: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassPrimaryHover) }
|
|
1281
|
+
open var glassPrimaryPressed: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassPrimaryPressed) }
|
|
1263
1282
|
public init() {}
|
|
1264
1283
|
}
|
|
1265
1284
|
open class SystemMomentumThemeOutlineColorPalette: MomentumThemeOutlineColorPaletteProtocol {
|
|
@@ -1501,6 +1520,8 @@ open class SystemMomentumThemeAvatarColorPalette: MomentumThemeAvatarColorPalett
|
|
|
1501
1520
|
open var yellow: UIColor { return systemColor(light: light, dark: dark, keyPath: \.yellow) }
|
|
1502
1521
|
open var hover: UIColor { return systemColor(light: light, dark: dark, keyPath: \.hover) }
|
|
1503
1522
|
open var pressed: UIColor { return systemColor(light: light, dark: dark, keyPath: \.pressed) }
|
|
1523
|
+
open var glassNormal: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassNormal) }
|
|
1524
|
+
open var glassActive: UIColor { return systemColor(light: light, dark: dark, keyPath: \.glassActive) }
|
|
1504
1525
|
public init() {}
|
|
1505
1526
|
}
|
|
1506
1527
|
open class SystemMomentumThemeGradientDividerColorPalette: MomentumThemeGradientDividerColorPaletteProtocol {
|
|
@@ -4769,13 +4769,13 @@
|
|
|
4769
4769
|
},
|
|
4770
4770
|
"glass": {
|
|
4771
4771
|
"normal": {
|
|
4772
|
-
"value": "#
|
|
4772
|
+
"value": "#00000099",
|
|
4773
4773
|
"type": "color",
|
|
4774
4774
|
"description": "Used for glass effect background for operation pop. ",
|
|
4775
4775
|
"filePath": "src/theme/stable/dark.json",
|
|
4776
4776
|
"isSource": true,
|
|
4777
4777
|
"original": {
|
|
4778
|
-
"value": "{color.core.black-alpha.
|
|
4778
|
+
"value": "{color.core.black-alpha.60}",
|
|
4779
4779
|
"type": "color",
|
|
4780
4780
|
"description": "Used for glass effect background for operation pop. "
|
|
4781
4781
|
},
|
|
@@ -4794,6 +4794,64 @@
|
|
|
4794
4794
|
"glass",
|
|
4795
4795
|
"normal"
|
|
4796
4796
|
]
|
|
4797
|
+
},
|
|
4798
|
+
"overlay": {
|
|
4799
|
+
"normal": {
|
|
4800
|
+
"value": "#000000cc",
|
|
4801
|
+
"type": "color",
|
|
4802
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected",
|
|
4803
|
+
"filePath": "src/theme/stable/dark.json",
|
|
4804
|
+
"isSource": true,
|
|
4805
|
+
"original": {
|
|
4806
|
+
"value": "{color.core.black-alpha.80}",
|
|
4807
|
+
"type": "color",
|
|
4808
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected"
|
|
4809
|
+
},
|
|
4810
|
+
"name": "mds-color-theme-background-glass-overlay-normal",
|
|
4811
|
+
"attributes": {
|
|
4812
|
+
"category": "color",
|
|
4813
|
+
"type": "theme",
|
|
4814
|
+
"item": "background",
|
|
4815
|
+
"subitem": "glass",
|
|
4816
|
+
"state": "overlay"
|
|
4817
|
+
},
|
|
4818
|
+
"path": [
|
|
4819
|
+
"color",
|
|
4820
|
+
"theme",
|
|
4821
|
+
"background",
|
|
4822
|
+
"glass",
|
|
4823
|
+
"overlay",
|
|
4824
|
+
"normal"
|
|
4825
|
+
]
|
|
4826
|
+
},
|
|
4827
|
+
"inactive": {
|
|
4828
|
+
"value": "#00000066",
|
|
4829
|
+
"type": "color",
|
|
4830
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected",
|
|
4831
|
+
"filePath": "src/theme/stable/dark.json",
|
|
4832
|
+
"isSource": true,
|
|
4833
|
+
"original": {
|
|
4834
|
+
"value": "{color.core.black-alpha.40}",
|
|
4835
|
+
"type": "color",
|
|
4836
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected"
|
|
4837
|
+
},
|
|
4838
|
+
"name": "mds-color-theme-background-glass-overlay-inactive",
|
|
4839
|
+
"attributes": {
|
|
4840
|
+
"category": "color",
|
|
4841
|
+
"type": "theme",
|
|
4842
|
+
"item": "background",
|
|
4843
|
+
"subitem": "glass",
|
|
4844
|
+
"state": "overlay"
|
|
4845
|
+
},
|
|
4846
|
+
"path": [
|
|
4847
|
+
"color",
|
|
4848
|
+
"theme",
|
|
4849
|
+
"background",
|
|
4850
|
+
"glass",
|
|
4851
|
+
"overlay",
|
|
4852
|
+
"inactive"
|
|
4853
|
+
]
|
|
4854
|
+
}
|
|
4797
4855
|
}
|
|
4798
4856
|
}
|
|
4799
4857
|
},
|
|
@@ -5420,6 +5478,94 @@
|
|
|
5420
5478
|
"pressed"
|
|
5421
5479
|
]
|
|
5422
5480
|
}
|
|
5481
|
+
},
|
|
5482
|
+
"glass": {
|
|
5483
|
+
"primary": {
|
|
5484
|
+
"normal": {
|
|
5485
|
+
"value": "#ffffffcc",
|
|
5486
|
+
"type": "color",
|
|
5487
|
+
"description": "Used for Operation pop button",
|
|
5488
|
+
"filePath": "src/theme/stable/dark.json",
|
|
5489
|
+
"isSource": true,
|
|
5490
|
+
"original": {
|
|
5491
|
+
"value": "{color.core.white-alpha.80}",
|
|
5492
|
+
"type": "color",
|
|
5493
|
+
"description": "Used for Operation pop button"
|
|
5494
|
+
},
|
|
5495
|
+
"name": "mds-color-theme-button-glass-primary-normal",
|
|
5496
|
+
"attributes": {
|
|
5497
|
+
"category": "color",
|
|
5498
|
+
"type": "theme",
|
|
5499
|
+
"item": "button",
|
|
5500
|
+
"subitem": "glass",
|
|
5501
|
+
"state": "primary"
|
|
5502
|
+
},
|
|
5503
|
+
"path": [
|
|
5504
|
+
"color",
|
|
5505
|
+
"theme",
|
|
5506
|
+
"button",
|
|
5507
|
+
"glass",
|
|
5508
|
+
"primary",
|
|
5509
|
+
"normal"
|
|
5510
|
+
]
|
|
5511
|
+
},
|
|
5512
|
+
"hover": {
|
|
5513
|
+
"value": "#ffffffb3",
|
|
5514
|
+
"type": "color",
|
|
5515
|
+
"description": "Used for Operation pop button",
|
|
5516
|
+
"filePath": "src/theme/stable/dark.json",
|
|
5517
|
+
"isSource": true,
|
|
5518
|
+
"original": {
|
|
5519
|
+
"value": "{color.core.white-alpha.70}",
|
|
5520
|
+
"type": "color",
|
|
5521
|
+
"description": "Used for Operation pop button"
|
|
5522
|
+
},
|
|
5523
|
+
"name": "mds-color-theme-button-glass-primary-hover",
|
|
5524
|
+
"attributes": {
|
|
5525
|
+
"category": "color",
|
|
5526
|
+
"type": "theme",
|
|
5527
|
+
"item": "button",
|
|
5528
|
+
"subitem": "glass",
|
|
5529
|
+
"state": "primary"
|
|
5530
|
+
},
|
|
5531
|
+
"path": [
|
|
5532
|
+
"color",
|
|
5533
|
+
"theme",
|
|
5534
|
+
"button",
|
|
5535
|
+
"glass",
|
|
5536
|
+
"primary",
|
|
5537
|
+
"hover"
|
|
5538
|
+
]
|
|
5539
|
+
},
|
|
5540
|
+
"pressed": {
|
|
5541
|
+
"value": "#ffffff99",
|
|
5542
|
+
"type": "color",
|
|
5543
|
+
"description": "Used for Operation pop button",
|
|
5544
|
+
"filePath": "src/theme/stable/dark.json",
|
|
5545
|
+
"isSource": true,
|
|
5546
|
+
"original": {
|
|
5547
|
+
"value": "{color.core.white-alpha.60}",
|
|
5548
|
+
"type": "color",
|
|
5549
|
+
"description": "Used for Operation pop button"
|
|
5550
|
+
},
|
|
5551
|
+
"name": "mds-color-theme-button-glass-primary-pressed",
|
|
5552
|
+
"attributes": {
|
|
5553
|
+
"category": "color",
|
|
5554
|
+
"type": "theme",
|
|
5555
|
+
"item": "button",
|
|
5556
|
+
"subitem": "glass",
|
|
5557
|
+
"state": "primary"
|
|
5558
|
+
},
|
|
5559
|
+
"path": [
|
|
5560
|
+
"color",
|
|
5561
|
+
"theme",
|
|
5562
|
+
"button",
|
|
5563
|
+
"glass",
|
|
5564
|
+
"primary",
|
|
5565
|
+
"pressed"
|
|
5566
|
+
]
|
|
5567
|
+
}
|
|
5568
|
+
}
|
|
5423
5569
|
}
|
|
5424
5570
|
},
|
|
5425
5571
|
"outline": {
|
|
@@ -11479,6 +11625,62 @@
|
|
|
11479
11625
|
"avatar",
|
|
11480
11626
|
"yellow"
|
|
11481
11627
|
]
|
|
11628
|
+
},
|
|
11629
|
+
"glass": {
|
|
11630
|
+
"normal": {
|
|
11631
|
+
"value": "#ffffff12",
|
|
11632
|
+
"type": "color",
|
|
11633
|
+
"description": "Used for Operation pop",
|
|
11634
|
+
"filePath": "src/theme/stable/dark.json",
|
|
11635
|
+
"isSource": true,
|
|
11636
|
+
"original": {
|
|
11637
|
+
"value": "{color.core.white-alpha.7}",
|
|
11638
|
+
"type": "color",
|
|
11639
|
+
"description": "Used for Operation pop"
|
|
11640
|
+
},
|
|
11641
|
+
"name": "mds-color-theme-avatar-glass-normal",
|
|
11642
|
+
"attributes": {
|
|
11643
|
+
"category": "color",
|
|
11644
|
+
"type": "theme",
|
|
11645
|
+
"item": "avatar",
|
|
11646
|
+
"subitem": "glass",
|
|
11647
|
+
"state": "normal"
|
|
11648
|
+
},
|
|
11649
|
+
"path": [
|
|
11650
|
+
"color",
|
|
11651
|
+
"theme",
|
|
11652
|
+
"avatar",
|
|
11653
|
+
"glass",
|
|
11654
|
+
"normal"
|
|
11655
|
+
]
|
|
11656
|
+
},
|
|
11657
|
+
"active": {
|
|
11658
|
+
"value": "#ffffffcc",
|
|
11659
|
+
"type": "color",
|
|
11660
|
+
"description": "Used for Operation pop",
|
|
11661
|
+
"filePath": "src/theme/stable/dark.json",
|
|
11662
|
+
"isSource": true,
|
|
11663
|
+
"original": {
|
|
11664
|
+
"value": "{color.core.white-alpha.80}",
|
|
11665
|
+
"type": "color",
|
|
11666
|
+
"description": "Used for Operation pop"
|
|
11667
|
+
},
|
|
11668
|
+
"name": "mds-color-theme-avatar-glass-active",
|
|
11669
|
+
"attributes": {
|
|
11670
|
+
"category": "color",
|
|
11671
|
+
"type": "theme",
|
|
11672
|
+
"item": "avatar",
|
|
11673
|
+
"subitem": "glass",
|
|
11674
|
+
"state": "active"
|
|
11675
|
+
},
|
|
11676
|
+
"path": [
|
|
11677
|
+
"color",
|
|
11678
|
+
"theme",
|
|
11679
|
+
"avatar",
|
|
11680
|
+
"glass",
|
|
11681
|
+
"active"
|
|
11682
|
+
]
|
|
11683
|
+
}
|
|
11482
11684
|
}
|
|
11483
11685
|
},
|
|
11484
11686
|
"focus": {
|
|
@@ -4711,6 +4711,64 @@
|
|
|
4711
4711
|
"glass",
|
|
4712
4712
|
"normal"
|
|
4713
4713
|
]
|
|
4714
|
+
},
|
|
4715
|
+
"overlay": {
|
|
4716
|
+
"normal": {
|
|
4717
|
+
"value": "#ffff00",
|
|
4718
|
+
"type": "color",
|
|
4719
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected",
|
|
4720
|
+
"filePath": "src/theme/stable/highcontrast/hc_dark.json",
|
|
4721
|
+
"isSource": true,
|
|
4722
|
+
"original": {
|
|
4723
|
+
"value": "{color.highcontrast.black.HotlightColor}",
|
|
4724
|
+
"type": "color",
|
|
4725
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected"
|
|
4726
|
+
},
|
|
4727
|
+
"name": "mds-color-theme-background-glass-overlay-normal",
|
|
4728
|
+
"attributes": {
|
|
4729
|
+
"category": "color",
|
|
4730
|
+
"type": "theme",
|
|
4731
|
+
"item": "background",
|
|
4732
|
+
"subitem": "glass",
|
|
4733
|
+
"state": "overlay"
|
|
4734
|
+
},
|
|
4735
|
+
"path": [
|
|
4736
|
+
"color",
|
|
4737
|
+
"theme",
|
|
4738
|
+
"background",
|
|
4739
|
+
"glass",
|
|
4740
|
+
"overlay",
|
|
4741
|
+
"normal"
|
|
4742
|
+
]
|
|
4743
|
+
},
|
|
4744
|
+
"inactive": {
|
|
4745
|
+
"value": "#000000",
|
|
4746
|
+
"type": "color",
|
|
4747
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected",
|
|
4748
|
+
"filePath": "src/theme/stable/highcontrast/hc_dark.json",
|
|
4749
|
+
"isSource": true,
|
|
4750
|
+
"original": {
|
|
4751
|
+
"value": "{color.highcontrast.black.WindowColor}",
|
|
4752
|
+
"type": "color",
|
|
4753
|
+
"description": "Used for operation pop: knocked-back effect when signle card is selected"
|
|
4754
|
+
},
|
|
4755
|
+
"name": "mds-color-theme-background-glass-overlay-inactive",
|
|
4756
|
+
"attributes": {
|
|
4757
|
+
"category": "color",
|
|
4758
|
+
"type": "theme",
|
|
4759
|
+
"item": "background",
|
|
4760
|
+
"subitem": "glass",
|
|
4761
|
+
"state": "overlay"
|
|
4762
|
+
},
|
|
4763
|
+
"path": [
|
|
4764
|
+
"color",
|
|
4765
|
+
"theme",
|
|
4766
|
+
"background",
|
|
4767
|
+
"glass",
|
|
4768
|
+
"overlay",
|
|
4769
|
+
"inactive"
|
|
4770
|
+
]
|
|
4771
|
+
}
|
|
4714
4772
|
}
|
|
4715
4773
|
}
|
|
4716
4774
|
},
|
|
@@ -5309,6 +5367,94 @@
|
|
|
5309
5367
|
"pressed"
|
|
5310
5368
|
]
|
|
5311
5369
|
}
|
|
5370
|
+
},
|
|
5371
|
+
"glass": {
|
|
5372
|
+
"primary": {
|
|
5373
|
+
"normal": {
|
|
5374
|
+
"value": "#000000",
|
|
5375
|
+
"type": "color",
|
|
5376
|
+
"description": "Used for Operation pop button",
|
|
5377
|
+
"filePath": "src/theme/stable/highcontrast/hc_dark.json",
|
|
5378
|
+
"isSource": true,
|
|
5379
|
+
"original": {
|
|
5380
|
+
"value": "{color.highcontrast.black.ButtonFaceColor}",
|
|
5381
|
+
"type": "color",
|
|
5382
|
+
"description": "Used for Operation pop button"
|
|
5383
|
+
},
|
|
5384
|
+
"name": "mds-color-theme-button-glass-primary-normal",
|
|
5385
|
+
"attributes": {
|
|
5386
|
+
"category": "color",
|
|
5387
|
+
"type": "theme",
|
|
5388
|
+
"item": "button",
|
|
5389
|
+
"subitem": "glass",
|
|
5390
|
+
"state": "primary"
|
|
5391
|
+
},
|
|
5392
|
+
"path": [
|
|
5393
|
+
"color",
|
|
5394
|
+
"theme",
|
|
5395
|
+
"button",
|
|
5396
|
+
"glass",
|
|
5397
|
+
"primary",
|
|
5398
|
+
"normal"
|
|
5399
|
+
]
|
|
5400
|
+
},
|
|
5401
|
+
"hover": {
|
|
5402
|
+
"value": "#1aebff",
|
|
5403
|
+
"type": "color",
|
|
5404
|
+
"description": "Used for Operation pop button",
|
|
5405
|
+
"filePath": "src/theme/stable/highcontrast/hc_dark.json",
|
|
5406
|
+
"isSource": true,
|
|
5407
|
+
"original": {
|
|
5408
|
+
"value": "{color.highcontrast.black.HighlightColor}",
|
|
5409
|
+
"type": "color",
|
|
5410
|
+
"description": "Used for Operation pop button"
|
|
5411
|
+
},
|
|
5412
|
+
"name": "mds-color-theme-button-glass-primary-hover",
|
|
5413
|
+
"attributes": {
|
|
5414
|
+
"category": "color",
|
|
5415
|
+
"type": "theme",
|
|
5416
|
+
"item": "button",
|
|
5417
|
+
"subitem": "glass",
|
|
5418
|
+
"state": "primary"
|
|
5419
|
+
},
|
|
5420
|
+
"path": [
|
|
5421
|
+
"color",
|
|
5422
|
+
"theme",
|
|
5423
|
+
"button",
|
|
5424
|
+
"glass",
|
|
5425
|
+
"primary",
|
|
5426
|
+
"hover"
|
|
5427
|
+
]
|
|
5428
|
+
},
|
|
5429
|
+
"pressed": {
|
|
5430
|
+
"value": "#1aebff",
|
|
5431
|
+
"type": "color",
|
|
5432
|
+
"description": "Used for Operation pop button",
|
|
5433
|
+
"filePath": "src/theme/stable/highcontrast/hc_dark.json",
|
|
5434
|
+
"isSource": true,
|
|
5435
|
+
"original": {
|
|
5436
|
+
"value": "{color.highcontrast.black.HighlightColor}",
|
|
5437
|
+
"type": "color",
|
|
5438
|
+
"description": "Used for Operation pop button"
|
|
5439
|
+
},
|
|
5440
|
+
"name": "mds-color-theme-button-glass-primary-pressed",
|
|
5441
|
+
"attributes": {
|
|
5442
|
+
"category": "color",
|
|
5443
|
+
"type": "theme",
|
|
5444
|
+
"item": "button",
|
|
5445
|
+
"subitem": "glass",
|
|
5446
|
+
"state": "primary"
|
|
5447
|
+
},
|
|
5448
|
+
"path": [
|
|
5449
|
+
"color",
|
|
5450
|
+
"theme",
|
|
5451
|
+
"button",
|
|
5452
|
+
"glass",
|
|
5453
|
+
"primary",
|
|
5454
|
+
"pressed"
|
|
5455
|
+
]
|
|
5456
|
+
}
|
|
5457
|
+
}
|
|
5312
5458
|
}
|
|
5313
5459
|
},
|
|
5314
5460
|
"outline": {
|
|
@@ -8720,6 +8866,62 @@
|
|
|
8720
8866
|
"avatar",
|
|
8721
8867
|
"pressed"
|
|
8722
8868
|
]
|
|
8869
|
+
},
|
|
8870
|
+
"glass": {
|
|
8871
|
+
"normal": {
|
|
8872
|
+
"value": "#ffffff",
|
|
8873
|
+
"type": "color",
|
|
8874
|
+
"description": "Used for Operation pop",
|
|
8875
|
+
"filePath": "src/theme/stable/highcontrast/hc_dark.json",
|
|
8876
|
+
"isSource": true,
|
|
8877
|
+
"original": {
|
|
8878
|
+
"value": "{color.highcontrast.black.WindowTextColor}",
|
|
8879
|
+
"type": "color",
|
|
8880
|
+
"description": "Used for Operation pop"
|
|
8881
|
+
},
|
|
8882
|
+
"name": "mds-color-theme-avatar-glass-normal",
|
|
8883
|
+
"attributes": {
|
|
8884
|
+
"category": "color",
|
|
8885
|
+
"type": "theme",
|
|
8886
|
+
"item": "avatar",
|
|
8887
|
+
"subitem": "glass",
|
|
8888
|
+
"state": "normal"
|
|
8889
|
+
},
|
|
8890
|
+
"path": [
|
|
8891
|
+
"color",
|
|
8892
|
+
"theme",
|
|
8893
|
+
"avatar",
|
|
8894
|
+
"glass",
|
|
8895
|
+
"normal"
|
|
8896
|
+
]
|
|
8897
|
+
},
|
|
8898
|
+
"active": {
|
|
8899
|
+
"value": "#ffffff",
|
|
8900
|
+
"type": "color",
|
|
8901
|
+
"description": "Used for Operation pop",
|
|
8902
|
+
"filePath": "src/theme/stable/highcontrast/hc_dark.json",
|
|
8903
|
+
"isSource": true,
|
|
8904
|
+
"original": {
|
|
8905
|
+
"value": "{color.highcontrast.black.WindowTextColor}",
|
|
8906
|
+
"type": "color",
|
|
8907
|
+
"description": "Used for Operation pop"
|
|
8908
|
+
},
|
|
8909
|
+
"name": "mds-color-theme-avatar-glass-active",
|
|
8910
|
+
"attributes": {
|
|
8911
|
+
"category": "color",
|
|
8912
|
+
"type": "theme",
|
|
8913
|
+
"item": "avatar",
|
|
8914
|
+
"subitem": "glass",
|
|
8915
|
+
"state": "active"
|
|
8916
|
+
},
|
|
8917
|
+
"path": [
|
|
8918
|
+
"color",
|
|
8919
|
+
"theme",
|
|
8920
|
+
"avatar",
|
|
8921
|
+
"glass",
|
|
8922
|
+
"active"
|
|
8923
|
+
]
|
|
8924
|
+
}
|
|
8723
8925
|
}
|
|
8724
8926
|
},
|
|
8725
8927
|
"common": {
|