@dialpad/dialtone-tokens 1.6.5 → 1.7.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/dist/android/java/tokens.kt +192 -61
- package/dist/android/res/values/colors.xml +177 -19
- package/dist/android/res/values/dimens.xml +42 -38
- package/dist/css/variables.css +192 -65
- package/dist/doc.json +4576 -2290
- package/dist/ios/tokens.swift +192 -61
- package/dist/less/variables.less +192 -65
- package/dist/tokens.json +193 -66
- package/package.json +4 -4
package/dist/ios/tokens.swift
CHANGED
|
@@ -4,44 +4,56 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on
|
|
7
|
+
// Generated on Wed, 12 Apr 2023 00:40:07 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
11
11
|
|
|
12
12
|
public enum DialtoneTokens {
|
|
13
|
-
public static let
|
|
14
|
-
public static let
|
|
15
|
-
public static let
|
|
16
|
-
public static let
|
|
17
|
-
public static let
|
|
18
|
-
public static let
|
|
19
|
-
public static let
|
|
20
|
-
public static let
|
|
21
|
-
public static let
|
|
22
|
-
public static let
|
|
23
|
-
public static let
|
|
24
|
-
public static let
|
|
25
|
-
public static let
|
|
26
|
-
public static let
|
|
27
|
-
public static let
|
|
28
|
-
public static let
|
|
29
|
-
public static let
|
|
30
|
-
public static let
|
|
31
|
-
public static let
|
|
32
|
-
public static let
|
|
33
|
-
public static let
|
|
34
|
-
public static let
|
|
35
|
-
public static let
|
|
36
|
-
public static let
|
|
37
|
-
public static let
|
|
38
|
-
public static let
|
|
39
|
-
public static let
|
|
40
|
-
public static let
|
|
41
|
-
public static let
|
|
42
|
-
public static let
|
|
43
|
-
public static let
|
|
44
|
-
public static let
|
|
13
|
+
public static let dtActionColorBackgroundBaseActive = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 0.1411764705882353)
|
|
14
|
+
public static let dtActionColorBackgroundBaseDefault = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
15
|
+
public static let dtActionColorBackgroundBaseHover = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 0.0392156862745098)
|
|
16
|
+
public static let dtActionColorBackgroundBasePrimaryActive = UIColor(red: 0.302, green: 0.078, blue: 1.000, alpha: 1)
|
|
17
|
+
public static let dtActionColorBackgroundBasePrimaryDefault = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
18
|
+
public static let dtActionColorBackgroundBasePrimaryHover = UIColor(red: 0.396, green: 0.200, blue: 1.000, alpha: 1)
|
|
19
|
+
public static let dtActionColorBackgroundCriticalActive = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 0.09019607843137255)
|
|
20
|
+
public static let dtActionColorBackgroundCriticalDefault = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
21
|
+
public static let dtActionColorBackgroundCriticalHover = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 0.03137254901960784)
|
|
22
|
+
public static let dtActionColorBackgroundCriticalPrimaryActive = UIColor(red: 0.773, green: 0.047, blue: 0.047, alpha: 1)
|
|
23
|
+
public static let dtActionColorBackgroundCriticalPrimaryDefault = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
24
|
+
public static let dtActionColorBackgroundCriticalPrimaryHover = UIColor(red: 0.851, green: 0.051, blue: 0.051, alpha: 1)
|
|
25
|
+
public static let dtActionColorBackgroundDisabledDefault = UIColor(red: 0.824, green: 0.824, blue: 0.824, alpha: 1)
|
|
26
|
+
public static let dtActionColorBackgroundInvertedActive = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.30196078431372547)
|
|
27
|
+
public static let dtActionColorBackgroundInvertedDefault = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
28
|
+
public static let dtActionColorBackgroundInvertedHover = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.14901960784313725)
|
|
29
|
+
public static let dtActionColorBackgroundInvertedPrimaryActive = UIColor(red: 0.882, green: 0.820, blue: 1.000, alpha: 1)
|
|
30
|
+
public static let dtActionColorBackgroundInvertedPrimaryDefault = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
31
|
+
public static let dtActionColorBackgroundInvertedPrimaryHover = UIColor(red: 0.961, green: 0.941, blue: 1.000, alpha: 1)
|
|
32
|
+
public static let dtActionColorBackgroundMutedActive = UIColor(red: 0.133, green: 0.133, blue: 0.133, alpha: 0.10196078431372549)
|
|
33
|
+
public static let dtActionColorBackgroundMutedDefault = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
34
|
+
public static let dtActionColorBackgroundMutedHover = UIColor(red: 0.133, green: 0.133, blue: 0.133, alpha: 0.050980392156862744)
|
|
35
|
+
public static let dtActionColorBorderBaseOutlinedDefault = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
36
|
+
public static let dtActionColorBorderCriticalOutlinedDefault = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
37
|
+
public static let dtActionColorBorderInvertedOutlinedDefault = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha: 1)
|
|
38
|
+
public static let dtActionColorBorderMutedOutlinedDefault = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
39
|
+
public static let dtActionColorForegroundBaseActive = UIColor(red: 0.333, green: 0.122, blue: 1.000, alpha: 1)
|
|
40
|
+
public static let dtActionColorForegroundBaseDefault = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
41
|
+
public static let dtActionColorForegroundBaseHover = UIColor(red: 0.333, green: 0.122, blue: 1.000, alpha: 1)
|
|
42
|
+
public static let dtActionColorForegroundBasePrimaryDefault = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
43
|
+
public static let dtActionColorForegroundCriticalActive = UIColor(red: 0.851, green: 0.051, blue: 0.051, alpha: 1)
|
|
44
|
+
public static let dtActionColorForegroundCriticalDefault = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
45
|
+
public static let dtActionColorForegroundCriticalHover = UIColor(red: 0.851, green: 0.051, blue: 0.051, alpha: 1)
|
|
46
|
+
public static let dtActionColorForegroundCriticalPrimaryDefault = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
47
|
+
public static let dtActionColorForegroundDisabledDefault = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
48
|
+
public static let dtActionColorForegroundInvertedActive = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
49
|
+
public static let dtActionColorForegroundInvertedDefault = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
50
|
+
public static let dtActionColorForegroundInvertedHover = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
51
|
+
public static let dtActionColorForegroundInvertedPrimaryActive = UIColor(red: 0.227, green: 0.114, blue: 0.584, alpha: 1)
|
|
52
|
+
public static let dtActionColorForegroundInvertedPrimaryDefault = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
53
|
+
public static let dtActionColorForegroundInvertedPrimaryHover = UIColor(red: 0.227, green: 0.114, blue: 0.584, alpha: 1)
|
|
54
|
+
public static let dtActionColorForegroundMutedActive = UIColor(red: 0.227, green: 0.227, blue: 0.227, alpha: 1)
|
|
55
|
+
public static let dtActionColorForegroundMutedDefault = UIColor(red: 0.227, green: 0.227, blue: 0.227, alpha: 1)
|
|
56
|
+
public static let dtActionColorForegroundMutedHover = UIColor(red: 0.227, green: 0.227, blue: 0.227, alpha: 1)
|
|
45
57
|
public static let dtColorBlack100 = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha: 1)
|
|
46
58
|
public static let dtColorBlack200 = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 1)
|
|
47
59
|
public static let dtColorBlack300 = UIColor(red: 0.824, green: 0.824, blue: 0.824, alpha: 1)
|
|
@@ -56,6 +68,65 @@ public enum DialtoneTokens {
|
|
|
56
68
|
public static let dtColorBlue300 = UIColor(red: 0.318, green: 0.627, blue: 0.996, alpha: 1)
|
|
57
69
|
public static let dtColorBlue400 = UIColor(red: 0.090, green: 0.408, blue: 0.776, alpha: 1)
|
|
58
70
|
public static let dtColorBlue500 = UIColor(red: 0.004, green: 0.196, blue: 0.427, alpha: 1)
|
|
71
|
+
public static let dtColorBorderAccent = UIColor(red: 0.976, green: 0.000, blue: 0.557, alpha: 1)
|
|
72
|
+
public static let dtColorBorderAi = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
73
|
+
public static let dtColorBorderBold = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.5019607843137255)
|
|
74
|
+
public static let dtColorBorderBoldInverted = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.5019607843137255)
|
|
75
|
+
public static let dtColorBorderBrand = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
76
|
+
public static let dtColorBorderBrandInverted = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
77
|
+
public static let dtColorBorderBrandStrong = UIColor(red: 0.227, green: 0.114, blue: 0.584, alpha: 1)
|
|
78
|
+
public static let dtColorBorderBrandStrongInverted = UIColor(red: 0.855, green: 0.780, blue: 1.000, alpha: 1)
|
|
79
|
+
public static let dtColorBorderBrandSubtle = UIColor(red: 0.855, green: 0.780, blue: 1.000, alpha: 1)
|
|
80
|
+
public static let dtColorBorderBrandSubtleInverted = UIColor(red: 0.227, green: 0.114, blue: 0.584, alpha: 1)
|
|
81
|
+
public static let dtColorBorderCritical = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
82
|
+
public static let dtColorBorderCriticalInverted = UIColor(red: 1.000, green: 0.522, blue: 0.522, alpha: 1)
|
|
83
|
+
public static let dtColorBorderCriticalStrong = UIColor(red: 0.718, green: 0.043, blue: 0.043, alpha: 1)
|
|
84
|
+
public static let dtColorBorderCriticalStrongInverted = UIColor(red: 1.000, green: 0.898, blue: 0.902, alpha: 1)
|
|
85
|
+
public static let dtColorBorderCriticalSubtle = UIColor(red: 1.000, green: 0.522, blue: 0.522, alpha: 1)
|
|
86
|
+
public static let dtColorBorderCriticalSubtleInverted = UIColor(red: 0.718, green: 0.043, blue: 0.043, alpha: 1)
|
|
87
|
+
public static let dtColorBorderDefault = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.1803921568627451)
|
|
88
|
+
public static let dtColorBorderDefaultInverted = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.2196078431372549)
|
|
89
|
+
public static let dtColorBorderFocus = UIColor(red: 0.318, green: 0.627, blue: 0.996, alpha: 1)
|
|
90
|
+
public static let dtColorBorderModerate = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.3411764705882353)
|
|
91
|
+
public static let dtColorBorderModerateInverted = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.3803921568627451)
|
|
92
|
+
public static let dtColorBorderSubtle = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.10196078431372549)
|
|
93
|
+
public static let dtColorBorderSubtleInverted = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.1411764705882353)
|
|
94
|
+
public static let dtColorBorderSuccess = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
95
|
+
public static let dtColorBorderSuccessInverted = UIColor(red: 0.690, green: 1.000, blue: 0.639, alpha: 1)
|
|
96
|
+
public static let dtColorBorderSuccessStrong = UIColor(red: 0.071, green: 0.275, blue: 0.125, alpha: 1)
|
|
97
|
+
public static let dtColorBorderSuccessStrongInverted = UIColor(red: 0.929, green: 0.976, blue: 0.922, alpha: 1)
|
|
98
|
+
public static let dtColorBorderSuccessSubtle = UIColor(red: 0.690, green: 1.000, blue: 0.639, alpha: 1)
|
|
99
|
+
public static let dtColorBorderSuccessSubtleInverted = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
100
|
+
public static let dtColorBorderWarning = UIColor(red: 0.824, green: 0.561, blue: 0.169, alpha: 1)
|
|
101
|
+
public static let dtColorBorderWarningInverted = UIColor(red: 1.000, green: 0.859, blue: 0.502, alpha: 1)
|
|
102
|
+
public static let dtColorBorderWarningStrong = UIColor(red: 0.404, green: 0.251, blue: 0.024, alpha: 1)
|
|
103
|
+
public static let dtColorBorderWarningStrongInverted = UIColor(red: 1.000, green: 0.957, blue: 0.800, alpha: 1)
|
|
104
|
+
public static let dtColorBorderWarningSubtle = UIColor(red: 1.000, green: 0.859, blue: 0.502, alpha: 1)
|
|
105
|
+
public static let dtColorBorderWarningSubtleInverted = UIColor(red: 0.824, green: 0.561, blue: 0.169, alpha: 1)
|
|
106
|
+
public static let dtColorBrandMagenta = UIColor(red: 0.976, green: 0.000, blue: 0.557, alpha: 1)
|
|
107
|
+
public static let dtColorBrandPurple = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
108
|
+
public static let dtColorForegroundCritical = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
109
|
+
public static let dtColorForegroundCriticalInverted = UIColor(red: 1.000, green: 0.522, blue: 0.522, alpha: 1)
|
|
110
|
+
public static let dtColorForegroundCriticalStrong = UIColor(red: 0.718, green: 0.043, blue: 0.043, alpha: 1)
|
|
111
|
+
public static let dtColorForegroundCriticalStrongInverted = UIColor(red: 1.000, green: 0.643, blue: 0.643, alpha: 1)
|
|
112
|
+
public static let dtColorForegroundDisabled = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
113
|
+
public static let dtColorForegroundDisabledInverted = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
114
|
+
public static let dtColorForegroundMuted = UIColor(red: 0.133, green: 0.133, blue: 0.133, alpha: 0.5019607843137255)
|
|
115
|
+
public static let dtColorForegroundMutedInverted = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 0.6)
|
|
116
|
+
public static let dtColorForegroundPlaceholder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
117
|
+
public static let dtColorForegroundPlaceholderInverted = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
118
|
+
public static let dtColorForegroundPrimary = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
119
|
+
public static let dtColorForegroundPrimaryInverted = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
120
|
+
public static let dtColorForegroundSecondary = UIColor(red: 0.227, green: 0.227, blue: 0.227, alpha: 1)
|
|
121
|
+
public static let dtColorForegroundSecondaryInverted = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 1)
|
|
122
|
+
public static let dtColorForegroundSuccess = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
123
|
+
public static let dtColorForegroundSuccessInverted = UIColor(red: 0.690, green: 1.000, blue: 0.639, alpha: 1)
|
|
124
|
+
public static let dtColorForegroundSuccessStrong = UIColor(red: 0.071, green: 0.275, blue: 0.125, alpha: 1)
|
|
125
|
+
public static let dtColorForegroundSuccessStrongInverted = UIColor(red: 0.827, green: 1.000, blue: 0.804, alpha: 1)
|
|
126
|
+
public static let dtColorForegroundTertiary = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
127
|
+
public static let dtColorForegroundTertiaryInverted = UIColor(red: 0.824, green: 0.824, blue: 0.824, alpha: 1)
|
|
128
|
+
public static let dtColorForegroundWarning = UIColor(red: 0.506, green: 0.314, blue: 0.031, alpha: 1)
|
|
129
|
+
public static let dtColorForegroundWarningInverted = UIColor(red: 1.000, green: 0.957, blue: 0.800, alpha: 1)
|
|
59
130
|
public static let dtColorGold100 = UIColor(red: 1.000, green: 0.957, blue: 0.800, alpha: 1)
|
|
60
131
|
public static let dtColorGold200 = UIColor(red: 1.000, green: 0.859, blue: 0.502, alpha: 1)
|
|
61
132
|
public static let dtColorGold300 = UIColor(red: 0.965, green: 0.671, blue: 0.235, alpha: 1)
|
|
@@ -67,12 +138,37 @@ public enum DialtoneTokens {
|
|
|
67
138
|
public static let dtColorGreen300 = UIColor(red: 0.271, green: 0.969, blue: 0.467, alpha: 1)
|
|
68
139
|
public static let dtColorGreen400 = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
69
140
|
public static let dtColorGreen500 = UIColor(red: 0.071, green: 0.275, blue: 0.125, alpha: 1)
|
|
141
|
+
public static let dtColorLinkCritical = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
142
|
+
public static let dtColorLinkCriticalHover = UIColor(red: 0.718, green: 0.043, blue: 0.043, alpha: 1)
|
|
143
|
+
public static let dtColorLinkCriticalInverted = UIColor(red: 1.000, green: 0.522, blue: 0.522, alpha: 1)
|
|
144
|
+
public static let dtColorLinkCriticalInvertedHover = UIColor(red: 1.000, green: 0.643, blue: 0.643, alpha: 1)
|
|
145
|
+
public static let dtColorLinkDisabled = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
146
|
+
public static let dtColorLinkDisabledHover = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
147
|
+
public static let dtColorLinkDisabledInverted = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
148
|
+
public static let dtColorLinkDisabledInvertedHover = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
149
|
+
public static let dtColorLinkMuted = UIColor(red: 0.133, green: 0.133, blue: 0.133, alpha: 0.5019607843137255)
|
|
150
|
+
public static let dtColorLinkMutedHover = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
151
|
+
public static let dtColorLinkMutedInverted = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 0.6)
|
|
152
|
+
public static let dtColorLinkMutedInvertedHover = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha: 1)
|
|
153
|
+
public static let dtColorLinkPrimary = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
154
|
+
public static let dtColorLinkPrimaryHover = UIColor(red: 0.227, green: 0.114, blue: 0.584, alpha: 1)
|
|
155
|
+
public static let dtColorLinkPrimaryInverted = UIColor(red: 0.671, green: 0.494, blue: 1.000, alpha: 1)
|
|
156
|
+
public static let dtColorLinkPrimaryInvertedHover = UIColor(red: 0.855, green: 0.780, blue: 1.000, alpha: 1)
|
|
157
|
+
public static let dtColorLinkSuccess = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
158
|
+
public static let dtColorLinkSuccessHover = UIColor(red: 0.071, green: 0.275, blue: 0.125, alpha: 1)
|
|
159
|
+
public static let dtColorLinkSuccessInverted = UIColor(red: 0.690, green: 1.000, blue: 0.639, alpha: 1)
|
|
160
|
+
public static let dtColorLinkSuccessInvertedHover = UIColor(red: 0.827, green: 1.000, blue: 0.804, alpha: 1)
|
|
161
|
+
public static let dtColorLinkWarning = UIColor(red: 0.506, green: 0.314, blue: 0.031, alpha: 1)
|
|
162
|
+
public static let dtColorLinkWarningHover = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
163
|
+
public static let dtColorLinkWarningInverted = UIColor(red: 1.000, green: 0.957, blue: 0.800, alpha: 1)
|
|
164
|
+
public static let dtColorLinkWarningInvertedHover = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha: 1)
|
|
70
165
|
public static let dtColorMagenta100 = UIColor(red: 1.000, green: 0.878, blue: 0.949, alpha: 1)
|
|
71
166
|
public static let dtColorMagenta200 = UIColor(red: 0.976, green: 0.522, blue: 0.780, alpha: 1)
|
|
72
167
|
public static let dtColorMagenta300 = UIColor(red: 0.976, green: 0.000, blue: 0.557, alpha: 1)
|
|
73
168
|
public static let dtColorMagenta400 = UIColor(red: 0.549, green: 0.055, blue: 0.337, alpha: 1)
|
|
74
169
|
public static let dtColorMagenta500 = UIColor(red: 0.329, green: 0.102, blue: 0.231, alpha: 1)
|
|
75
170
|
public static let dtColorNeutralBlack = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
171
|
+
public static let dtColorNeutralTransparent = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
76
172
|
public static let dtColorNeutralWhite = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
77
173
|
public static let dtColorPurple100 = UIColor(red: 0.961, green: 0.941, blue: 1.000, alpha: 1)
|
|
78
174
|
public static let dtColorPurple200 = UIColor(red: 0.855, green: 0.780, blue: 1.000, alpha: 1)
|
|
@@ -86,32 +182,41 @@ public enum DialtoneTokens {
|
|
|
86
182
|
public static let dtColorRed400 = UIColor(red: 0.718, green: 0.043, blue: 0.043, alpha: 1)
|
|
87
183
|
public static let dtColorRed500 = UIColor(red: 0.357, green: 0.020, blue: 0.020, alpha: 1)
|
|
88
184
|
public static let dtColorSurfaceBold = UIColor(red: 0.824, green: 0.824, blue: 0.824, alpha: 1)
|
|
185
|
+
public static let dtColorSurfaceBoldOpaque = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.1803921568627451)
|
|
89
186
|
public static let dtColorSurfaceContrast = UIColor(red: 0.133, green: 0.133, blue: 0.133, alpha: 1)
|
|
187
|
+
public static let dtColorSurfaceContrastOpaque = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.8705882352941177)
|
|
90
188
|
public static let dtColorSurfaceCritical = UIColor(red: 1.000, green: 0.898, blue: 0.902, alpha: 1)
|
|
189
|
+
public static let dtColorSurfaceCriticalOpaque = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 0.10980392156862745)
|
|
190
|
+
public static let dtColorSurfaceCriticalStrong = UIColor(red: 0.718, green: 0.043, blue: 0.043, alpha: 1)
|
|
191
|
+
public static let dtColorSurfaceCriticalSubtle = UIColor(red: 1.000, green: 0.949, blue: 0.953, alpha: 1)
|
|
192
|
+
public static let dtColorSurfaceCriticalSubtleOpaque = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 0.050980392156862744)
|
|
91
193
|
public static let dtColorSurfaceInfo = UIColor(red: 0.918, green: 0.949, blue: 0.980, alpha: 1)
|
|
194
|
+
public static let dtColorSurfaceInfoOpaque = UIColor(red: 0.090, green: 0.412, blue: 0.776, alpha: 0.09019607843137255)
|
|
195
|
+
public static let dtColorSurfaceInfoStrong = UIColor(red: 0.090, green: 0.408, blue: 0.776, alpha: 1)
|
|
196
|
+
public static let dtColorSurfaceInfoSubtle = UIColor(red: 0.961, green: 0.976, blue: 0.992, alpha: 1)
|
|
197
|
+
public static let dtColorSurfaceInfoSubtleOpaque = UIColor(red: 0.090, green: 0.412, blue: 0.776, alpha: 0.0392156862745098)
|
|
92
198
|
public static let dtColorSurfaceModerate = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 1)
|
|
199
|
+
public static let dtColorSurfaceModerateOpaque = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.09019607843137255)
|
|
93
200
|
public static let dtColorSurfacePrimary = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
94
201
|
public static let dtColorSurfaceSecondary = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha: 1)
|
|
202
|
+
public static let dtColorSurfaceSecondaryOpaque = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.0196078431372549)
|
|
95
203
|
public static let dtColorSurfaceStrong = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
204
|
+
public static let dtColorSurfaceStrongOpaque = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.6705882352941176)
|
|
96
205
|
public static let dtColorSurfaceSuccess = UIColor(red: 0.929, green: 0.976, blue: 0.922, alpha: 1)
|
|
206
|
+
public static let dtColorSurfaceSuccessOpaque = UIColor(red: 0.102, green: 0.639, blue: 0.255, alpha: 0.0784313725490196)
|
|
207
|
+
public static let dtColorSurfaceSuccessStrong = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
208
|
+
public static let dtColorSurfaceSuccessSubtle = UIColor(red: 0.973, green: 0.992, blue: 0.969, alpha: 1)
|
|
209
|
+
public static let dtColorSurfaceSuccessSubtleOpaque = UIColor(red: 0.102, green: 0.639, blue: 0.255, alpha: 0.03137254901960784)
|
|
97
210
|
public static let dtColorSurfaceWarning = UIColor(red: 1.000, green: 0.957, blue: 0.800, alpha: 1)
|
|
211
|
+
public static let dtColorSurfaceWarningOpaque = UIColor(red: 1.000, green: 0.859, blue: 0.502, alpha: 0.3803921568627451)
|
|
212
|
+
public static let dtColorSurfaceWarningStrong = UIColor(red: 1.000, green: 0.859, blue: 0.502, alpha: 1)
|
|
213
|
+
public static let dtColorSurfaceWarningSubtle = UIColor(red: 1.000, green: 0.980, blue: 0.898, alpha: 1)
|
|
214
|
+
public static let dtColorSurfaceWarningSubtleOpaque = UIColor(red: 1.000, green: 0.859, blue: 0.502, alpha: 0.1803921568627451)
|
|
98
215
|
public static let dtColorTan100 = UIColor(red: 0.949, green: 0.941, blue: 0.933, alpha: 1)
|
|
99
216
|
public static let dtColorTan200 = UIColor(red: 0.808, green: 0.784, blue: 0.769, alpha: 1)
|
|
100
217
|
public static let dtColorTan300 = UIColor(red: 0.529, green: 0.502, blue: 0.482, alpha: 1)
|
|
101
218
|
public static let dtColorTan400 = UIColor(red: 0.247, green: 0.239, blue: 0.235, alpha: 1)
|
|
102
219
|
public static let dtColorTan500 = UIColor(red: 0.071, green: 0.071, blue: 0.071, alpha: 1)
|
|
103
|
-
public static let dtColorTextCritical = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
104
|
-
public static let dtColorTextDisabled = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
105
|
-
public static let dtColorTextInvertedPrimary = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
106
|
-
public static let dtColorTextInvertedSecondary = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 1)
|
|
107
|
-
public static let dtColorTextLinkPrimary = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
108
|
-
public static let dtColorTextMuted = UIColor(red: 0.133, green: 0.133, blue: 0.133, alpha: 0.5019607843137255)
|
|
109
|
-
public static let dtColorTextPlaceholder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
110
|
-
public static let dtColorTextPrimary = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
111
|
-
public static let dtColorTextSecondary = UIColor(red: 0.227, green: 0.227, blue: 0.227, alpha: 1)
|
|
112
|
-
public static let dtColorTextSuccess = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
113
|
-
public static let dtColorTextTertiary = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
114
|
-
public static let dtColorTextWarning = UIColor(red: 0.506, green: 0.314, blue: 0.031, alpha: 1)
|
|
115
220
|
public static let dtFontFamilyBody = "-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol"
|
|
116
221
|
public static let dtFontFamilyExpressive = "Archivo,-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol"
|
|
117
222
|
public static let dtFontFamilyMono = "SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace"
|
|
@@ -135,6 +240,31 @@ public enum DialtoneTokens {
|
|
|
135
240
|
public static let dtFontWeightMedium = 500
|
|
136
241
|
public static let dtFontWeightNormal = 400
|
|
137
242
|
public static let dtFontWeightSemiBold = 600
|
|
243
|
+
public static let dtInputsColorBackgroundDefault = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.03137254901960784)
|
|
244
|
+
public static let dtInputsColorBackgroundDisabled = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.12156862745098039)
|
|
245
|
+
public static let dtInputsColorBackgroundFocus = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.011764705882352941)
|
|
246
|
+
public static let dtInputsColorBorderCritical = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
247
|
+
public static let dtInputsColorBorderDefault = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.10196078431372549)
|
|
248
|
+
public static let dtInputsColorBorderDisabled = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
249
|
+
public static let dtInputsColorBorderFocus = UIColor(red: 0.318, green: 0.627, blue: 0.996, alpha: 1)
|
|
250
|
+
public static let dtInputsColorBorderSuccess = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
251
|
+
public static let dtInputsColorBorderWarning = UIColor(red: 0.824, green: 0.561, blue: 0.169, alpha: 1)
|
|
252
|
+
public static let dtInputsColorForegroundDefault = UIColor(red: 0.227, green: 0.227, blue: 0.227, alpha: 1)
|
|
253
|
+
public static let dtInputsColorForegroundDisabled = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
254
|
+
public static let dtInputsColorForegroundPlaceholder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1)
|
|
255
|
+
public static let dtInputsFontSizeLg = CGFloat(19.00)
|
|
256
|
+
public static let dtInputsFontSizeMd = CGFloat(15.00)
|
|
257
|
+
public static let dtInputsFontSizeSm = CGFloat(12.00)
|
|
258
|
+
public static let dtInputsFontSizeXl = CGFloat(27.00)
|
|
259
|
+
public static let dtInputsFontSizeXs = CGFloat(12.00)
|
|
260
|
+
public static let dtInputsLineHeightDefault = CGFloat(120.00)
|
|
261
|
+
public static let dtInputsSizeBorderDefault = CGFloat(1.50)
|
|
262
|
+
public static let dtInputsSizeBorderStatus = CGFloat(2.00)
|
|
263
|
+
public static let dtInputsSizeRadiusLg = CGFloat(12.00)
|
|
264
|
+
public static let dtInputsSizeRadiusMd = CGFloat(8.00)
|
|
265
|
+
public static let dtInputsSizeRadiusSm = CGFloat(8.00)
|
|
266
|
+
public static let dtInputsSizeRadiusXl = CGFloat(16.00)
|
|
267
|
+
public static let dtInputsSizeRadiusXs = CGFloat(4.00)
|
|
138
268
|
public static let dtOpacity0 = CGFloat(0.00)
|
|
139
269
|
public static let dtOpacity100 = CGFloat(0.05)
|
|
140
270
|
public static let dtOpacity1000 = CGFloat(0.75)
|
|
@@ -203,25 +333,11 @@ public enum DialtoneTokens {
|
|
|
203
333
|
public static let dtSizeBase = CGFloat(8.00)
|
|
204
334
|
public static let dtSizeBorder0 = CGFloat(0.00)
|
|
205
335
|
public static let dtSizeBorder100 = CGFloat(1.00)
|
|
336
|
+
public static let dtSizeBorder150 = CGFloat(1.50)
|
|
206
337
|
public static let dtSizeBorder200 = CGFloat(2.00)
|
|
207
338
|
public static let dtSizeBorder300 = CGFloat(4.00)
|
|
208
339
|
public static let dtSizeBorder400 = CGFloat(8.00)
|
|
209
|
-
public static let
|
|
210
|
-
public static let dtSizeBorderIcon200 = CGFloat(1.25)
|
|
211
|
-
public static let dtSizeBorderIcon300 = CGFloat(1.50)
|
|
212
|
-
public static let dtSizeBorderIcon400 = CGFloat(1.75)
|
|
213
|
-
public static let dtSizeBorderIcon500 = CGFloat(1.75)
|
|
214
|
-
public static let dtSizeBorderIcon600 = CGFloat(2.50)
|
|
215
|
-
public static let dtSizeBorderIcon700 = CGFloat(2.75)
|
|
216
|
-
public static let dtSizeBorderIcon800 = CGFloat(3.50)
|
|
217
|
-
public static let dtSizeIcon100 = CGFloat(12.00)
|
|
218
|
-
public static let dtSizeIcon200 = CGFloat(14.00)
|
|
219
|
-
public static let dtSizeIcon300 = CGFloat(18.00)
|
|
220
|
-
public static let dtSizeIcon400 = CGFloat(20.00)
|
|
221
|
-
public static let dtSizeIcon500 = CGFloat(24.00)
|
|
222
|
-
public static let dtSizeIcon600 = CGFloat(32.00)
|
|
223
|
-
public static let dtSizeIcon700 = CGFloat(38.00)
|
|
224
|
-
public static let dtSizeIcon800 = CGFloat(48.00)
|
|
340
|
+
public static let dtSizeBorderFocus = CGFloat(3.00)
|
|
225
341
|
public static let dtSizeRadius0 = CGFloat(0.00)
|
|
226
342
|
public static let dtSizeRadius100 = CGFloat(1.00)
|
|
227
343
|
public static let dtSizeRadius200 = CGFloat(2.00)
|
|
@@ -239,6 +355,21 @@ public enum DialtoneTokens {
|
|
|
239
355
|
public static let dtSpace700 = CGFloat(64.00)
|
|
240
356
|
public static let dtSpace800 = CGFloat(128.00)
|
|
241
357
|
public static let dtSpaceBase = CGFloat(8.00)
|
|
358
|
+
public static let dtThemeMentionColorBackground = UIColor(red: 0.486, green: 0.322, blue: 1.000, alpha: 1)
|
|
359
|
+
public static let dtThemeMentionColorForeground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
360
|
+
public static let dtThemePresenceColorBackgroundAvailable = UIColor(red: 0.102, green: 0.639, blue: 0.251, alpha: 1)
|
|
361
|
+
public static let dtThemePresenceColorBackgroundBusy = UIColor(red: 0.965, green: 0.671, blue: 0.235, alpha: 1)
|
|
362
|
+
public static let dtThemePresenceColorBackgroundBusyUnavailable = UIColor(red: 0.925, green: 0.055, blue: 0.055, alpha: 1)
|
|
363
|
+
public static let dtThemePresenceColorBackgroundOffline = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
364
|
+
public static let dtThemeSidebarColorBackground = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha: 1)
|
|
365
|
+
public static let dtThemeSidebarColorForeground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
366
|
+
public static let dtThemeSidebarIconColorForeground = UIColor(red: 0.227, green: 0.227, blue: 0.227, alpha: 1)
|
|
367
|
+
public static let dtThemeSidebarRowColorBackground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
368
|
+
public static let dtThemeSidebarRowColorBackgroundActive = UIColor(red: 0.824, green: 0.824, blue: 0.824, alpha: 1)
|
|
369
|
+
public static let dtThemeSidebarRowColorBackgroundHover = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.10196078431372549)
|
|
370
|
+
public static let dtThemeSidebarSelectedRowColorBackground = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 1)
|
|
371
|
+
public static let dtThemeSidebarSelectedRowColorForeground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
372
|
+
public static let dtThemeSidebarStatusColorForeground = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
242
373
|
public static let dtTypographyBodyBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
243
374
|
public static let dtTypographyBodyBaseFontSize = CGFloat(15.00)
|
|
244
375
|
public static let dtTypographyBodyBaseFontWeight = 400
|