@pantheon-systems/pds-design-tokens 1.0.0-dev.9 → 1.0.0-dev.91
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/README.md +2 -3
- package/build/css/pds-design-tokens-dark-mode.css +137 -42
- package/build/css/pds-design-tokens-light-mode.css +155 -50
- package/build/css/pds-design-tokens.css +73 -3
- package/build/figma/pds-design-tokens-figma.json +9060 -4540
- package/build/json/pds-design-tokens-dark-mode.json +3853 -1764
- package/build/json/pds-design-tokens-light-mode.json +3555 -1226
- package/build/json/pds-design-tokens.json +1094 -243
- package/package.json +1 -1
- package/build/scss/_pds-design-tokens-dark-mode.scss +0 -106
- package/build/scss/_pds-design-tokens-light-mode.scss +0 -106
- package/build/scss/_pds-design-tokens.scss +0 -16
package/README.md
CHANGED
|
@@ -11,7 +11,6 @@ Compiled tokens can be found in the `build` directory.
|
|
|
11
11
|
PDS Design Tokens are provided in the following formats:
|
|
12
12
|
|
|
13
13
|
- CSS Custom Properties
|
|
14
|
-
- SASS Variables
|
|
15
14
|
- JSON
|
|
16
15
|
- Figma (formatted to sync to Figma styles)
|
|
17
16
|
|
|
@@ -21,11 +20,11 @@ Design tokens are specifically intended for the purpose of design and will be tr
|
|
|
21
20
|
|
|
22
21
|
By default, tokens values should be unitless unless that unit is universal (such as percentages). Many PDS design tokens will be assigned a default unit type under the hood, but those unit designations will only be provided for the output formats where appropriate.
|
|
23
22
|
|
|
24
|
-
For example, CSS
|
|
23
|
+
For example, CSS variable tokens will be output with unit-specific values. While JSON output tokens will always be unitless. However, if a default unit is assigned it will be available via the `defaultUnit` key for any token object.
|
|
25
24
|
|
|
26
25
|
## Public and Private Tokens
|
|
27
26
|
|
|
28
|
-
All tokens are considered private unless specifically designated as public. All tokens may be accessed via JSON token files, but only public tokens will be output to CSS
|
|
27
|
+
All tokens are considered private unless specifically designated as public. All tokens may be accessed via JSON token files, but only public tokens will be output to CSS stylesheets.
|
|
29
28
|
|
|
30
29
|
We typically only designate tokens as public when they need to be available to override for theming purposes such as switching between light and dark mode or for other custom themes.
|
|
31
30
|
|
|
@@ -10,11 +10,40 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
:root {
|
|
13
|
+
--pds-color-background-brand-secondary: #4e39a8;
|
|
13
14
|
--pds-color-background-default: #1d1d29;
|
|
15
|
+
--pds-color-background-default-secondary: #282839;
|
|
16
|
+
--pds-color-background-reverse: #e7e7eb;
|
|
17
|
+
--pds-color-badge-border: #a6a3b4;
|
|
18
|
+
--pds-color-badge-label: #e7e7eb;
|
|
19
|
+
--pds-color-badge-status-critical: var(--pds-color-semantic-critical-foreground);
|
|
20
|
+
--pds-color-badge-status-default: #858299;
|
|
21
|
+
--pds-color-badge-status-discovery: var(--pds-color-semantic-discovery-foreground);
|
|
22
|
+
--pds-color-badge-status-frozen: #d0c6ff;
|
|
23
|
+
--pds-color-badge-status-info: var(--pds-color-semantic-info-foreground);
|
|
24
|
+
--pds-color-badge-status-success: var(--pds-color-semantic-success-foreground);
|
|
25
|
+
--pds-color-badge-status-warning: var(--pds-color-semantic-warning-foreground);
|
|
26
|
+
--pds-color-badge-tier-diamond-background: #f0fdff;
|
|
27
|
+
--pds-color-badge-tier-diamond-foreground: #8a70ff;
|
|
28
|
+
--pds-color-badge-tier-gold-background: #fff1a9;
|
|
29
|
+
--pds-color-badge-tier-gold-foreground: #705e00;
|
|
30
|
+
--pds-color-badge-tier-platinum-background: #d0c6ff;
|
|
31
|
+
--pds-color-badge-tier-platinum-foreground: #4e39a8;
|
|
32
|
+
--pds-color-badge-tier-silver-background: #e7e7eb;
|
|
33
|
+
--pds-color-badge-tier-silver-foreground: #504e62;
|
|
34
|
+
--pds-color-banner-critical-background: linear-gradient(135deg, #CA3521 0%, #B95898 100%);
|
|
35
|
+
--pds-color-banner-critical-foreground: #ffffff;
|
|
36
|
+
--pds-color-banner-info-background: linear-gradient(315deg, #1265DA 0%, #5F41E5 100%);
|
|
37
|
+
--pds-color-banner-info-foreground: #ffffff;
|
|
38
|
+
--pds-color-banner-warning-background: linear-gradient(135deg, #DDBD16 0%, #DB7612 100%);
|
|
39
|
+
--pds-color-banner-warning-foreground: #121219;
|
|
14
40
|
--pds-color-border-default: #504e62;
|
|
15
41
|
--pds-color-brand-accent-default: #de0093;
|
|
16
42
|
--pds-color-brand-primary-default: #ffdc28;
|
|
17
|
-
--pds-color-brand-secondary-default: #
|
|
43
|
+
--pds-color-brand-secondary-default: #8a70ff;
|
|
44
|
+
--pds-color-breadcrumb-link: var(--pds-color-link-default);
|
|
45
|
+
--pds-color-breadcrumb-separator: #858299;
|
|
46
|
+
--pds-color-breadcrumb-text: var(--pds-color-text-default-secondary);
|
|
18
47
|
--pds-color-button-brand-background-active: #ddbd16;
|
|
19
48
|
--pds-color-button-brand-background-default: #ffdc28;
|
|
20
49
|
--pds-color-button-brand-background-hover: #ffe668;
|
|
@@ -24,21 +53,33 @@
|
|
|
24
53
|
--pds-color-button-brand-foreground-active: #121219;
|
|
25
54
|
--pds-color-button-brand-foreground-default: #121219;
|
|
26
55
|
--pds-color-button-brand-foreground-hover: #121219;
|
|
27
|
-
--pds-color-button-
|
|
28
|
-
--pds-color-button-
|
|
29
|
-
--pds-color-button-
|
|
30
|
-
--pds-color-button-
|
|
31
|
-
--pds-color-button-
|
|
32
|
-
--pds-color-button-
|
|
56
|
+
--pds-color-button-brand-secondary-background-active: #282839;
|
|
57
|
+
--pds-color-button-brand-secondary-background-default: rgba(0, 0, 0, 0);
|
|
58
|
+
--pds-color-button-brand-secondary-background-hover: #504e62;
|
|
59
|
+
--pds-color-button-brand-secondary-border-active: #504e62;
|
|
60
|
+
--pds-color-button-brand-secondary-border-default: #a6a3b4;
|
|
61
|
+
--pds-color-button-brand-secondary-border-hover: #ffffff;
|
|
62
|
+
--pds-color-button-brand-secondary-foreground-active: #e7e7eb;
|
|
63
|
+
--pds-color-button-brand-secondary-foreground-default: #e7e7eb;
|
|
64
|
+
--pds-color-button-brand-secondary-foreground-hover: #ffffff;
|
|
65
|
+
--pds-color-button-critical-background-active: #a22a1a;
|
|
66
|
+
--pds-color-button-critical-background-default: #ca3521;
|
|
67
|
+
--pds-color-button-critical-background-hover: #b6301e;
|
|
68
|
+
--pds-color-button-critical-border-active: #a22a1a;
|
|
69
|
+
--pds-color-button-critical-border-default: #ca3521;
|
|
70
|
+
--pds-color-button-critical-border-hover: #b6301e;
|
|
33
71
|
--pds-color-button-critical-foreground-active: #ffffff;
|
|
34
72
|
--pds-color-button-critical-foreground-default: #ffffff;
|
|
35
73
|
--pds-color-button-critical-foreground-hover: #ffffff;
|
|
36
|
-
--pds-color-button-
|
|
37
|
-
--pds-color-button-
|
|
38
|
-
--pds-color-button-
|
|
39
|
-
--pds-color-button-primary-
|
|
40
|
-
--pds-color-button-primary-
|
|
41
|
-
--pds-color-button-primary-
|
|
74
|
+
--pds-color-button-navbar-foreground-active: #8a70ff;
|
|
75
|
+
--pds-color-button-navbar-foreground-default: #ffffff;
|
|
76
|
+
--pds-color-button-navbar-foreground-hover: #8a70ff;
|
|
77
|
+
--pds-color-button-primary-background-active: #4e39a8;
|
|
78
|
+
--pds-color-button-primary-background-default: #8a70ff;
|
|
79
|
+
--pds-color-button-primary-background-hover: #ad9bff;
|
|
80
|
+
--pds-color-button-primary-border-active: #4e39a8;
|
|
81
|
+
--pds-color-button-primary-border-default: #8a70ff;
|
|
82
|
+
--pds-color-button-primary-border-hover: #ad9bff;
|
|
42
83
|
--pds-color-button-primary-foreground-active: #ffffff;
|
|
43
84
|
--pds-color-button-primary-foreground-default: #ffffff;
|
|
44
85
|
--pds-color-button-primary-foreground-hover: #ffffff;
|
|
@@ -58,31 +99,46 @@
|
|
|
58
99
|
--pds-color-button-subtle-foreground-active: #e7e7eb;
|
|
59
100
|
--pds-color-button-subtle-foreground-default: #e7e7eb;
|
|
60
101
|
--pds-color-button-subtle-foreground-hover: #ffffff;
|
|
102
|
+
--pds-color-card-border: #504e62;
|
|
103
|
+
--pds-color-code-inline-background: #282839;
|
|
104
|
+
--pds-color-code-inline-border: #504e62;
|
|
105
|
+
--pds-color-code-inline-text: #ffffff;
|
|
106
|
+
--pds-color-expansion-panel-hover: #282839;
|
|
107
|
+
--pds-color-expansion-panel-open: #282839;
|
|
61
108
|
--pds-color-foreground-default: #ffffff;
|
|
62
|
-
--pds-color-
|
|
63
|
-
--pds-color-gradient-
|
|
64
|
-
--pds-color-gradient-
|
|
65
|
-
--pds-color-gradient-
|
|
66
|
-
--pds-color-
|
|
109
|
+
--pds-color-foreground-reverse: #1d1d29;
|
|
110
|
+
--pds-color-gradient-after-hours: linear-gradient(228.64deg, #1B0874 41.87%, #29B2FF 100%);
|
|
111
|
+
--pds-color-gradient-midnight: linear-gradient(228.64deg, #1B0874 46.34%, #00E0C3 100%);
|
|
112
|
+
--pds-color-gradient-sunrise: linear-gradient(227.79deg, #1B0874 38.28%, #E65F35 100%);
|
|
113
|
+
--pds-color-gradient-sunset: linear-gradient(48.24deg, #EF13AD 0%, #1B0874 66.25%);
|
|
114
|
+
--pds-color-input-action-background-hover: #504e62;
|
|
67
115
|
--pds-color-input-background-critical: #1d1d29;
|
|
68
116
|
--pds-color-input-background-default: #1d1d29;
|
|
69
117
|
--pds-color-input-background-hover: #282839;
|
|
70
|
-
--pds-color-input-
|
|
71
|
-
--pds-color-input-border-
|
|
72
|
-
--pds-color-input-border-
|
|
73
|
-
--pds-color-input-border-
|
|
74
|
-
--pds-color-input-
|
|
75
|
-
--pds-color-input-
|
|
76
|
-
--pds-color-input-foreground-
|
|
77
|
-
--pds-color-input-foreground-critical: #e05757;
|
|
118
|
+
--pds-color-input-border-critical: #ca3521;
|
|
119
|
+
--pds-color-input-border-default: #858299;
|
|
120
|
+
--pds-color-input-border-hover: #ad9bff;
|
|
121
|
+
--pds-color-input-border-success: #2abb7f;
|
|
122
|
+
--pds-color-input-checked-background: var(--pds-color-interactive-focus);
|
|
123
|
+
--pds-color-input-checked-foreground: #ffffff;
|
|
124
|
+
--pds-color-input-foreground-critical: #ca3521;
|
|
78
125
|
--pds-color-input-foreground-default: #ffffff;
|
|
79
|
-
--pds-color-input-foreground-
|
|
80
|
-
--pds-color-input-
|
|
126
|
+
--pds-color-input-foreground-success: #2abb7f;
|
|
127
|
+
--pds-color-input-placeholder-text: #a6a3b4;
|
|
128
|
+
--pds-color-input-toggle-switch-icon: #ffffff;
|
|
129
|
+
--pds-color-input-toggle-switch-off: #504e62;
|
|
130
|
+
--pds-color-input-toggle-switch-on: var(--pds-color-interactive-focus);
|
|
81
131
|
--pds-color-interactive-focus: #36a3ff;
|
|
82
|
-
--pds-color-link
|
|
132
|
+
--pds-color-interactive-link: #36a3ff;
|
|
133
|
+
--pds-color-interactive-reverse-focus: #36a3ff;
|
|
134
|
+
--pds-color-interactive-reverse-link: #36a3ff;
|
|
135
|
+
--pds-color-link-active: #8a70ff;
|
|
136
|
+
--pds-color-link-cta-active: #d0c6ff;
|
|
137
|
+
--pds-color-link-cta-default: #8a70ff;
|
|
138
|
+
--pds-color-link-cta-hover: #ad9bff;
|
|
83
139
|
--pds-color-link-default: #36a3ff;
|
|
84
|
-
--pds-color-link-hover: #
|
|
85
|
-
--pds-color-link-visited: #
|
|
140
|
+
--pds-color-link-hover: #8a70ff;
|
|
141
|
+
--pds-color-link-visited: #8a70ff;
|
|
86
142
|
--pds-color-menu-background: #282839;
|
|
87
143
|
--pds-color-menu-item-background-active: #858299;
|
|
88
144
|
--pds-color-menu-item-background-default: #282839;
|
|
@@ -90,20 +146,59 @@
|
|
|
90
146
|
--pds-color-menu-item-description-text: #a6a3b4;
|
|
91
147
|
--pds-color-menu-item-foreground: #ffffff;
|
|
92
148
|
--pds-color-menu-item-heading-text: #a6a3b4;
|
|
149
|
+
--pds-color-overlay: rgba(9, 0, 48, 0.45);
|
|
93
150
|
--pds-color-panel-default-background: var(--pds-color-background-default);
|
|
94
151
|
--pds-color-panel-default-border: var(--pds-color-border-default);
|
|
95
|
-
--pds-color-panel-overlay-background: #282839;
|
|
96
|
-
--pds-color-panel-overlay-border: #282839;
|
|
97
|
-
--pds-color-panel-raised-background: #282839;
|
|
98
|
-
--pds-color-panel-raised-border: var(--pds-color-border-default);
|
|
99
152
|
--pds-color-panel-sunken-background: #121219;
|
|
100
|
-
--pds-color-
|
|
101
|
-
--pds-color-
|
|
102
|
-
--pds-color-
|
|
103
|
-
--pds-color-
|
|
104
|
-
--pds-color-
|
|
105
|
-
--pds-color-
|
|
106
|
-
--pds-color-
|
|
153
|
+
--pds-color-progress-complete: #2abb7f;
|
|
154
|
+
--pds-color-progress-empty: #a6a3b4;
|
|
155
|
+
--pds-color-progress-partial: #388bff;
|
|
156
|
+
--pds-color-semantic-critical-background: #391813;
|
|
157
|
+
--pds-color-semantic-critical-foreground: #ca3521;
|
|
158
|
+
--pds-color-semantic-discovery-background: #231c3f;
|
|
159
|
+
--pds-color-semantic-discovery-foreground: #8f7ee7;
|
|
160
|
+
--pds-color-semantic-info-background: #082145;
|
|
161
|
+
--pds-color-semantic-info-foreground: #388bff;
|
|
162
|
+
--pds-color-semantic-success-background: #133527;
|
|
163
|
+
--pds-color-semantic-success-foreground: #2abb7f;
|
|
164
|
+
--pds-color-semantic-warning-background: #3d2e00;
|
|
165
|
+
--pds-color-semantic-warning-foreground: #cf9f02;
|
|
166
|
+
--pds-color-strength-fair: #cf9f02;
|
|
167
|
+
--pds-color-strength-strong: #2abb7f;
|
|
168
|
+
--pds-color-strength-very-weak: #a6a3b4;
|
|
169
|
+
--pds-color-strength-weak: #ca3521;
|
|
170
|
+
--pds-color-table-sort-arrow-active: #8a70ff;
|
|
171
|
+
--pds-color-table-sort-arrow-inactive: #a6a3b4;
|
|
172
|
+
--pds-color-tabs-accent: #ad9bff;
|
|
173
|
+
--pds-color-tag-1-background: #705e00;
|
|
174
|
+
--pds-color-tag-1-foreground: #fffbe9;
|
|
175
|
+
--pds-color-tag-2-background: #4e39a8;
|
|
176
|
+
--pds-color-tag-2-foreground: #f3f0ff;
|
|
177
|
+
--pds-color-tag-3-background: #560039;
|
|
178
|
+
--pds-color-tag-3-foreground: #ffe5f6;
|
|
179
|
+
--pds-color-tag-4-background: #504e62;
|
|
180
|
+
--pds-color-tag-4-foreground: #e7e7eb;
|
|
181
|
+
--pds-color-tag-5-background: #700000;
|
|
182
|
+
--pds-color-tag-5-foreground: #ffebeb;
|
|
183
|
+
--pds-color-tag-6-background: #b15902;
|
|
184
|
+
--pds-color-tag-6-foreground: #fffae6;
|
|
185
|
+
--pds-color-tag-7-background: #164b35;
|
|
186
|
+
--pds-color-tag-7-foreground: #dffcf0;
|
|
187
|
+
--pds-color-tag-8-background: #0f5f6a;
|
|
188
|
+
--pds-color-tag-8-foreground: #f0fdff;
|
|
189
|
+
--pds-color-text-default: var(--pds-color-foreground-default);
|
|
190
|
+
--pds-color-text-default-secondary: #a6a3b4;
|
|
191
|
+
--pds-color-text-reverse: var(--pds-color-foreground-reverse);
|
|
192
|
+
--pds-color-tile-background-active: #858299;
|
|
193
|
+
--pds-color-tile-background-hover: #504e62;
|
|
194
|
+
--pds-color-tile-separator: #504e62;
|
|
195
|
+
--pds-color-toggle-button-background-off: #504e62;
|
|
196
|
+
--pds-color-toggle-button-foreground-off: #e7e7eb;
|
|
197
|
+
--pds-color-tooltip-background: #a6a3b4;
|
|
198
|
+
--pds-color-tooltip-text: #121219;
|
|
199
|
+
--pds-color-tooltip-trigger-icon-critical: #ca3521;
|
|
200
|
+
--pds-color-tooltip-trigger-icon-default: #e7e7eb;
|
|
201
|
+
--pds-elevation-dropdown: 0px 8px 12px 0px rgba(18, 18, 25, 0.6);
|
|
107
202
|
--pds-elevation-overlay: 0px 8px 12px 0px rgba(18, 18, 25, 0.6);
|
|
108
203
|
--pds-elevation-raised: 0px 1px 1px 0px rgba(18, 18, 25, 0.95);
|
|
109
204
|
}
|
|
@@ -10,11 +10,40 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
:root {
|
|
13
|
+
--pds-color-background-brand-secondary: #e5dbff;
|
|
13
14
|
--pds-color-background-default: #ffffff;
|
|
14
|
-
--pds-color-
|
|
15
|
+
--pds-color-background-default-secondary: #f8f8f8;
|
|
16
|
+
--pds-color-background-reverse: #23232d;
|
|
17
|
+
--pds-color-badge-border: var(--pds-color-border-default);
|
|
18
|
+
--pds-color-badge-label: var(--pds-color-text-default-secondary);
|
|
19
|
+
--pds-color-badge-status-critical: var(--pds-color-semantic-critical-foreground);
|
|
20
|
+
--pds-color-badge-status-default: #cfcfd3;
|
|
21
|
+
--pds-color-badge-status-discovery: var(--pds-color-semantic-discovery-foreground);
|
|
22
|
+
--pds-color-badge-status-frozen: #e5dbff;
|
|
23
|
+
--pds-color-badge-status-info: var(--pds-color-semantic-info-foreground);
|
|
24
|
+
--pds-color-badge-status-success: var(--pds-color-semantic-success-foreground);
|
|
25
|
+
--pds-color-badge-status-warning: var(--pds-color-semantic-warning-foreground);
|
|
26
|
+
--pds-color-badge-tier-diamond-background: #f0fdff;
|
|
27
|
+
--pds-color-badge-tier-diamond-foreground: #5f41e5;
|
|
28
|
+
--pds-color-badge-tier-gold-background: #fff1a9;
|
|
29
|
+
--pds-color-badge-tier-gold-foreground: #705e00;
|
|
30
|
+
--pds-color-badge-tier-platinum-background: #f0ecff;
|
|
31
|
+
--pds-color-badge-tier-platinum-foreground: #3017a1;
|
|
32
|
+
--pds-color-badge-tier-silver-background: #f1f1f1;
|
|
33
|
+
--pds-color-badge-tier-silver-foreground: var(--pds-color-text-default-secondary);
|
|
34
|
+
--pds-color-banner-critical-background: linear-gradient(135deg, #CA3521 0%, #B95898 100%);
|
|
35
|
+
--pds-color-banner-critical-foreground: #ffffff;
|
|
36
|
+
--pds-color-banner-info-background: linear-gradient(315deg, #1265DA 0%, #5F41E5 100%);
|
|
37
|
+
--pds-color-banner-info-foreground: #ffffff;
|
|
38
|
+
--pds-color-banner-warning-background: linear-gradient(135deg, #DDBD16 0%, #DB7612 100%);
|
|
39
|
+
--pds-color-banner-warning-foreground: #23232d;
|
|
40
|
+
--pds-color-border-default: rgba(0, 0, 0, 0.11);
|
|
15
41
|
--pds-color-brand-accent-default: #de0093;
|
|
16
42
|
--pds-color-brand-primary-default: #ffdc28;
|
|
17
43
|
--pds-color-brand-secondary-default: #3017a1;
|
|
44
|
+
--pds-color-breadcrumb-link: var(--pds-color-link-default);
|
|
45
|
+
--pds-color-breadcrumb-separator: #cfcfd3;
|
|
46
|
+
--pds-color-breadcrumb-text: var(--pds-color-text-default-secondary);
|
|
18
47
|
--pds-color-button-brand-background-active: #ddbd16;
|
|
19
48
|
--pds-color-button-brand-background-default: #ffdc28;
|
|
20
49
|
--pds-color-button-brand-background-hover: #ffe668;
|
|
@@ -24,21 +53,33 @@
|
|
|
24
53
|
--pds-color-button-brand-foreground-active: #23232d;
|
|
25
54
|
--pds-color-button-brand-foreground-default: #23232d;
|
|
26
55
|
--pds-color-button-brand-foreground-hover: #23232d;
|
|
27
|
-
--pds-color-button-
|
|
28
|
-
--pds-color-button-
|
|
29
|
-
--pds-color-button-
|
|
30
|
-
--pds-color-button-
|
|
31
|
-
--pds-color-button-
|
|
32
|
-
--pds-color-button-
|
|
56
|
+
--pds-color-button-brand-secondary-background-active: #f1f1f1;
|
|
57
|
+
--pds-color-button-brand-secondary-background-default: rgba(0, 0, 0, 0);
|
|
58
|
+
--pds-color-button-brand-secondary-background-hover: #f8f8f8;
|
|
59
|
+
--pds-color-button-brand-secondary-border-active: #23232d;
|
|
60
|
+
--pds-color-button-brand-secondary-border-default: #6d6d78;
|
|
61
|
+
--pds-color-button-brand-secondary-border-hover: #23232d;
|
|
62
|
+
--pds-color-button-brand-secondary-foreground-active: #23232d;
|
|
63
|
+
--pds-color-button-brand-secondary-foreground-default: #23232d;
|
|
64
|
+
--pds-color-button-brand-secondary-foreground-hover: #23232d;
|
|
65
|
+
--pds-color-button-critical-background-active: #b6301e;
|
|
66
|
+
--pds-color-button-critical-background-default: #ca3521;
|
|
67
|
+
--pds-color-button-critical-background-hover: #cf4937;
|
|
68
|
+
--pds-color-button-critical-border-active: #b6301e;
|
|
69
|
+
--pds-color-button-critical-border-default: #ca3521;
|
|
70
|
+
--pds-color-button-critical-border-hover: #cf4937;
|
|
33
71
|
--pds-color-button-critical-foreground-active: #ffffff;
|
|
34
72
|
--pds-color-button-critical-foreground-default: #ffffff;
|
|
35
73
|
--pds-color-button-critical-foreground-hover: #ffffff;
|
|
74
|
+
--pds-color-button-navbar-foreground-active: #5f41e5;
|
|
75
|
+
--pds-color-button-navbar-foreground-default: #23232d;
|
|
76
|
+
--pds-color-button-navbar-foreground-hover: #5f41e5;
|
|
36
77
|
--pds-color-button-primary-background-active: #11005d;
|
|
37
78
|
--pds-color-button-primary-background-default: #3017a1;
|
|
38
|
-
--pds-color-button-primary-background-hover: #
|
|
79
|
+
--pds-color-button-primary-background-hover: #5f41e5;
|
|
39
80
|
--pds-color-button-primary-border-active: #11005d;
|
|
40
81
|
--pds-color-button-primary-border-default: #3017a1;
|
|
41
|
-
--pds-color-button-primary-border-hover: #
|
|
82
|
+
--pds-color-button-primary-border-hover: #5f41e5;
|
|
42
83
|
--pds-color-button-primary-foreground-active: #ffffff;
|
|
43
84
|
--pds-color-button-primary-foreground-default: #ffffff;
|
|
44
85
|
--pds-color-button-primary-foreground-hover: #ffffff;
|
|
@@ -47,63 +88,127 @@
|
|
|
47
88
|
--pds-color-button-secondary-background-hover: #f0ecff;
|
|
48
89
|
--pds-color-button-secondary-border-active: #11005d;
|
|
49
90
|
--pds-color-button-secondary-border-default: #3017a1;
|
|
50
|
-
--pds-color-button-secondary-border-hover: #
|
|
91
|
+
--pds-color-button-secondary-border-hover: #5f41e5;
|
|
51
92
|
--pds-color-button-secondary-foreground-active: #11005d;
|
|
52
93
|
--pds-color-button-secondary-foreground-default: #3017a1;
|
|
53
94
|
--pds-color-button-secondary-foreground-hover: #3017a1;
|
|
54
|
-
--pds-color-button-subtle-background-active: #
|
|
95
|
+
--pds-color-button-subtle-background-active: #cfcfd3;
|
|
55
96
|
--pds-color-button-subtle-background-default: rgba(0, 0, 0, 0);
|
|
56
|
-
--pds-color-button-subtle-background-hover: #
|
|
97
|
+
--pds-color-button-subtle-background-hover: #f1f1f1;
|
|
57
98
|
--pds-color-button-subtle-border-default: rgba(0, 0, 0, 0);
|
|
58
|
-
--pds-color-button-subtle-foreground-active: #
|
|
59
|
-
--pds-color-button-subtle-foreground-default: #
|
|
60
|
-
--pds-color-button-subtle-foreground-hover: #
|
|
99
|
+
--pds-color-button-subtle-foreground-active: #23232d;
|
|
100
|
+
--pds-color-button-subtle-foreground-default: #23232d;
|
|
101
|
+
--pds-color-button-subtle-foreground-hover: #23232d;
|
|
102
|
+
--pds-color-card-border: var(--pds-color-border-default);
|
|
103
|
+
--pds-color-code-inline-background: #f0ecff;
|
|
104
|
+
--pds-color-code-inline-border: #e5dbff;
|
|
105
|
+
--pds-color-code-inline-text: #000000;
|
|
106
|
+
--pds-color-expansion-panel-hover: #f1f1f1;
|
|
107
|
+
--pds-color-expansion-panel-open: #f1f1f1;
|
|
61
108
|
--pds-color-foreground-default: #23232d;
|
|
62
|
-
--pds-color-
|
|
63
|
-
--pds-color-gradient-
|
|
64
|
-
--pds-color-gradient-
|
|
65
|
-
--pds-color-gradient-
|
|
66
|
-
--pds-color-
|
|
67
|
-
--pds-color-input-background-
|
|
109
|
+
--pds-color-foreground-reverse: #ffffff;
|
|
110
|
+
--pds-color-gradient-after-hours: linear-gradient(228.64deg, #1B0874 41.87%, #29B2FF 100%);
|
|
111
|
+
--pds-color-gradient-midnight: linear-gradient(228.64deg, #1B0874 46.34%, #00E0C3 100%);
|
|
112
|
+
--pds-color-gradient-sunrise: linear-gradient(227.79deg, #1B0874 38.28%, #E65F35 100%);
|
|
113
|
+
--pds-color-gradient-sunset: linear-gradient(48.24deg, #EF13AD 0%, #1B0874 66.25%);
|
|
114
|
+
--pds-color-input-action-background-hover: #f8f8f8;
|
|
115
|
+
--pds-color-input-background-critical: #ffedeb;
|
|
68
116
|
--pds-color-input-background-default: #ffffff;
|
|
69
117
|
--pds-color-input-background-hover: #f0ecff;
|
|
70
|
-
--pds-color-input-
|
|
71
|
-
--pds-color-input-border-
|
|
72
|
-
--pds-color-input-border-
|
|
73
|
-
--pds-color-input-border-
|
|
74
|
-
--pds-color-input-
|
|
75
|
-
--pds-color-input-
|
|
76
|
-
--pds-color-input-foreground-
|
|
77
|
-
--pds-color-input-foreground-critical: #d61f1f;
|
|
118
|
+
--pds-color-input-border-critical: #ca3521;
|
|
119
|
+
--pds-color-input-border-default: #cfcfd3;
|
|
120
|
+
--pds-color-input-border-hover: #5f41e5;
|
|
121
|
+
--pds-color-input-border-success: #218c5f;
|
|
122
|
+
--pds-color-input-checked-background: var(--pds-color-interactive-focus);
|
|
123
|
+
--pds-color-input-checked-foreground: #ffffff;
|
|
124
|
+
--pds-color-input-foreground-critical: #ca3521;
|
|
78
125
|
--pds-color-input-foreground-default: #23232d;
|
|
79
|
-
--pds-color-input-foreground-
|
|
80
|
-
--pds-color-input-
|
|
126
|
+
--pds-color-input-foreground-success: #218c5f;
|
|
127
|
+
--pds-color-input-placeholder-text: #6d6d78;
|
|
128
|
+
--pds-color-input-toggle-switch-icon: #ffffff;
|
|
129
|
+
--pds-color-input-toggle-switch-off: #6d6d78;
|
|
130
|
+
--pds-color-input-toggle-switch-on: var(--pds-color-interactive-focus);
|
|
81
131
|
--pds-color-interactive-focus: #0f62fe;
|
|
82
|
-
--pds-color-link
|
|
132
|
+
--pds-color-interactive-link: #0f62fe;
|
|
133
|
+
--pds-color-interactive-reverse-focus: #36a3ff;
|
|
134
|
+
--pds-color-interactive-reverse-link: #36a3ff;
|
|
135
|
+
--pds-color-link-active: #5f41e5;
|
|
136
|
+
--pds-color-link-cta-active: #11005d;
|
|
137
|
+
--pds-color-link-cta-default: #3017a1;
|
|
138
|
+
--pds-color-link-cta-hover: #5f41e5;
|
|
83
139
|
--pds-color-link-default: #0f62fe;
|
|
84
|
-
--pds-color-link-hover: #
|
|
85
|
-
--pds-color-link-visited: #
|
|
140
|
+
--pds-color-link-hover: #5f41e5;
|
|
141
|
+
--pds-color-link-visited: #5f41e5;
|
|
86
142
|
--pds-color-menu-background: #ffffff;
|
|
87
|
-
--pds-color-menu-item-background-active: #
|
|
143
|
+
--pds-color-menu-item-background-active: #f1f1f1;
|
|
88
144
|
--pds-color-menu-item-background-default: #ffffff;
|
|
89
145
|
--pds-color-menu-item-background-hover: #f1f1f1;
|
|
90
|
-
--pds-color-menu-item-description-text: #
|
|
146
|
+
--pds-color-menu-item-description-text: #6d6d78;
|
|
91
147
|
--pds-color-menu-item-foreground: #23232d;
|
|
92
|
-
--pds-color-menu-item-heading-text: #
|
|
148
|
+
--pds-color-menu-item-heading-text: #6d6d78;
|
|
149
|
+
--pds-color-neutral-000: #ffffff;
|
|
150
|
+
--pds-color-neutral-100: #f8f8f8;
|
|
151
|
+
--pds-color-neutral-200: #f1f1f1;
|
|
152
|
+
--pds-color-neutral-300: #cfcfd3;
|
|
153
|
+
--pds-color-neutral-400: #6d6d78;
|
|
154
|
+
--pds-color-neutral-500: #23232d;
|
|
155
|
+
--pds-color-overlay: rgba(9, 0, 48, 0.45);
|
|
156
|
+
--pds-color-pager-background-active: #f0ecff;
|
|
157
|
+
--pds-color-pager-background-hover: #f1f1f1;
|
|
158
|
+
--pds-color-pager-foreground-active: #5f41e5;
|
|
93
159
|
--pds-color-panel-default-background: var(--pds-color-background-default);
|
|
94
160
|
--pds-color-panel-default-border: var(--pds-color-border-default);
|
|
95
|
-
--pds-color-panel-overlay-background: var(--pds-color-background-default);
|
|
96
|
-
--pds-color-panel-overlay-border: var(--pds-color-border-default);
|
|
97
|
-
--pds-color-panel-raised-background: var(--pds-color-background-default);
|
|
98
|
-
--pds-color-panel-raised-border: var(--pds-color-border-default);
|
|
99
161
|
--pds-color-panel-sunken-background: #f1f1f1;
|
|
100
|
-
--pds-color-
|
|
101
|
-
--pds-color-
|
|
102
|
-
--pds-color-
|
|
103
|
-
--pds-color-
|
|
104
|
-
--pds-color-
|
|
105
|
-
--pds-color-
|
|
106
|
-
--pds-color-
|
|
107
|
-
--pds-
|
|
108
|
-
--pds-
|
|
162
|
+
--pds-color-progress-complete: #218c5f;
|
|
163
|
+
--pds-color-progress-empty: #cfcfd3;
|
|
164
|
+
--pds-color-progress-partial: #1d7afc;
|
|
165
|
+
--pds-color-semantic-critical-background: #ffedeb;
|
|
166
|
+
--pds-color-semantic-critical-foreground: #ca3521;
|
|
167
|
+
--pds-color-semantic-discovery-background: #eae6ff;
|
|
168
|
+
--pds-color-semantic-discovery-foreground: #8270db;
|
|
169
|
+
--pds-color-semantic-info-background: #e9f2ff;
|
|
170
|
+
--pds-color-semantic-info-foreground: #1d7afc;
|
|
171
|
+
--pds-color-semantic-success-background: #e3fcef;
|
|
172
|
+
--pds-color-semantic-success-foreground: #218c5f;
|
|
173
|
+
--pds-color-semantic-warning-background: #fff7d6;
|
|
174
|
+
--pds-color-semantic-warning-foreground: #d97008;
|
|
175
|
+
--pds-color-strength-fair: #d97008;
|
|
176
|
+
--pds-color-strength-strong: #218c5f;
|
|
177
|
+
--pds-color-strength-very-weak: #cfcfd3;
|
|
178
|
+
--pds-color-strength-weak: #ca3521;
|
|
179
|
+
--pds-color-table-sort-arrow-active: #5f41e5;
|
|
180
|
+
--pds-color-table-sort-arrow-inactive: #cfcfd3;
|
|
181
|
+
--pds-color-tabs-accent: #5f41e5;
|
|
182
|
+
--pds-color-tag-1-background: #fffbe9;
|
|
183
|
+
--pds-color-tag-1-foreground: #705e00;
|
|
184
|
+
--pds-color-tag-2-background: #f0ecff;
|
|
185
|
+
--pds-color-tag-2-foreground: #3017a1;
|
|
186
|
+
--pds-color-tag-3-background: #ffe5f6;
|
|
187
|
+
--pds-color-tag-3-foreground: #9a0066;
|
|
188
|
+
--pds-color-tag-4-background: #f1f1f1;
|
|
189
|
+
--pds-color-tag-4-foreground: #6d6d78;
|
|
190
|
+
--pds-color-tag-5-background: #ffebeb;
|
|
191
|
+
--pds-color-tag-5-foreground: #700000;
|
|
192
|
+
--pds-color-tag-6-background: #fffae6;
|
|
193
|
+
--pds-color-tag-6-foreground: #b15902;
|
|
194
|
+
--pds-color-tag-7-background: #dffcf0;
|
|
195
|
+
--pds-color-tag-7-foreground: #164b35;
|
|
196
|
+
--pds-color-tag-8-background: #f0fdff;
|
|
197
|
+
--pds-color-tag-8-foreground: #0f5f6a;
|
|
198
|
+
--pds-color-text-default: var(--pds-color-foreground-default);
|
|
199
|
+
--pds-color-text-default-secondary: #6d6d78;
|
|
200
|
+
--pds-color-text-reverse: var(--pds-color-foreground-reverse);
|
|
201
|
+
--pds-color-tile-background-active: #f1f1f1;
|
|
202
|
+
--pds-color-tile-background-hover: #f8f8f8;
|
|
203
|
+
--pds-color-tile-separator: #cfcfd3;
|
|
204
|
+
--pds-color-toggle-button-background-off: #f1f1f1;
|
|
205
|
+
--pds-color-toggle-button-foreground-off: #6d6d78;
|
|
206
|
+
--pds-color-tooltip-background: #23232d;
|
|
207
|
+
--pds-color-tooltip-text: #ffffff;
|
|
208
|
+
--pds-color-tooltip-trigger-icon-critical: #ca3521;
|
|
209
|
+
--pds-color-tooltip-trigger-icon-default: #23232d;
|
|
210
|
+
--pds-elevation-active: 0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
|
|
211
|
+
--pds-elevation-dropdown: 0px 1px 0px 1px rgba(0, 0, 0, 0.08), 0px 6px 14px 0px rgba(0, 0, 0, 0.08);
|
|
212
|
+
--pds-elevation-overlay: 0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.02), 0px 8px 16px -4px rgba(0, 0, 0, 0.04), 0px 24px 32px -8px rgba(0, 0, 0, 0.06);
|
|
213
|
+
--pds-elevation-raised: 0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 2px 2px 0px rgba(0, 0, 0, 0.04), 0px 8px 8px -8px rgba(0, 0, 0, 0.04);
|
|
109
214
|
}
|
|
@@ -10,10 +10,80 @@
|
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
:root {
|
|
13
|
-
--pds-animation-transition-delay
|
|
14
|
-
--pds-animation-transition-duration
|
|
15
|
-
--pds-animation-transition-timing-function
|
|
13
|
+
--pds-animation-button-transition: all var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay);
|
|
14
|
+
--pds-animation-focus-transition: outline var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay);
|
|
15
|
+
--pds-animation-input-transition: background-color var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay), border-color var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay);
|
|
16
|
+
--pds-animation-link-transition: all var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay);
|
|
17
|
+
--pds-animation-reveal-transition: all var(--pds-animation-transition-reveal-duration) var(--pds-animation-transition-default-timing-function);
|
|
18
|
+
--pds-animation-rotation-transition: transform var(--pds-animation-transition-default-duration) var(--pds-animation-transition-default-timing-function) var(--pds-animation-transition-default-delay);
|
|
19
|
+
--pds-animation-transition-default-delay: 0s;
|
|
20
|
+
--pds-animation-transition-default-duration: 200ms;
|
|
21
|
+
--pds-animation-transition-default-timing-function: ease-in-out;
|
|
22
|
+
--pds-animation-transition-dropdown-duration: 300ms;
|
|
23
|
+
--pds-animation-transition-reveal-duration: 300ms;
|
|
24
|
+
--pds-border-radius-bar: 3.5rem;
|
|
25
|
+
--pds-border-radius-container: 0.375rem;
|
|
16
26
|
--pds-border-radius-default: 0.1875rem;
|
|
17
27
|
--pds-border-width-default: 1px;
|
|
28
|
+
--pds-container-max-width-narrow: 1024px;
|
|
29
|
+
--pds-container-max-width-standard: 1200px;
|
|
30
|
+
--pds-container-max-width-wide: 1440px;
|
|
31
|
+
--pds-container-max-width-x-wide: 1600px;
|
|
32
|
+
--pds-container-modal-width-large: 44rem;
|
|
33
|
+
--pds-container-modal-width-medium: 36rem;
|
|
34
|
+
--pds-container-modal-width-small: 25rem;
|
|
35
|
+
--pds-container-padding-large: 4%;
|
|
36
|
+
--pds-container-padding-medium: 4%;
|
|
37
|
+
--pds-container-padding-small: 5%;
|
|
38
|
+
--pds-grid-marketing-column-medium-large: 5.125%;
|
|
39
|
+
--pds-grid-marketing-column-small: 21.34375%;
|
|
40
|
+
--pds-grid-marketing-gap-medium-large: 3.5%;
|
|
41
|
+
--pds-grid-marketing-gap-small: 4.875%;
|
|
42
|
+
--pds-spacing-2xl: 1.953rem;
|
|
43
|
+
--pds-spacing-2xs: 0.512rem;
|
|
44
|
+
--pds-spacing-3xl: 2.441rem;
|
|
45
|
+
--pds-spacing-3xs: 0.41rem;
|
|
46
|
+
--pds-spacing-4xl: 3.052rem;
|
|
47
|
+
--pds-spacing-4xs: 0.328rem;
|
|
48
|
+
--pds-spacing-5xl: 3.815rem;
|
|
49
|
+
--pds-spacing-5xs: 0.25rem;
|
|
50
|
+
--pds-spacing-6xl: 4.678rem;
|
|
51
|
+
--pds-spacing-6xs: 0.125rem;
|
|
52
|
+
--pds-spacing-7xl: 5.96rem;
|
|
53
|
+
--pds-spacing-8xl: 7.451rem;
|
|
54
|
+
--pds-spacing-l: 1.25rem;
|
|
55
|
+
--pds-spacing-m: 1rem;
|
|
56
|
+
--pds-spacing-s: 0.8rem;
|
|
57
|
+
--pds-spacing-xl: 1.563rem;
|
|
58
|
+
--pds-spacing-xs: 0.64rem;
|
|
59
|
+
--pds-typography-font-code: 'Source Code Pro', monospace;
|
|
18
60
|
--pds-typography-font-default: 'Poppins', sans-serif;
|
|
61
|
+
--pds-typography-font-secondary: 'Aleo', serif;
|
|
62
|
+
--pds-typography-font-weight-bold: 700;
|
|
63
|
+
--pds-typography-font-weight-extrabold: 800;
|
|
64
|
+
--pds-typography-font-weight-regular: 400;
|
|
65
|
+
--pds-typography-font-weight-semibold: 600;
|
|
66
|
+
--pds-typography-letter-spacing-l: 0.04rem;
|
|
67
|
+
--pds-typography-letter-spacing-m: 0.02rem;
|
|
68
|
+
--pds-typography-letter-spacing-s: 0.01rem;
|
|
69
|
+
--pds-typography-letter-spacing-xl: 0.06rem;
|
|
70
|
+
--pds-typography-line-height-l: 170%;
|
|
71
|
+
--pds-typography-line-height-m: 140%;
|
|
72
|
+
--pds-typography-line-height-s: 120%;
|
|
73
|
+
--pds-typography-line-height-xl: 195%;
|
|
74
|
+
--pds-typography-multiplier-medium: 0.85;
|
|
75
|
+
--pds-typography-multiplier-small: 0.75;
|
|
76
|
+
--pds-typography-size-2xl: 1.728rem;
|
|
77
|
+
--pds-typography-size-3xl: 2.074rem;
|
|
78
|
+
--pds-typography-size-4xl: 3.052rem;
|
|
79
|
+
--pds-typography-size-l: 1.2rem;
|
|
80
|
+
--pds-typography-size-m: 1rem;
|
|
81
|
+
--pds-typography-size-s: 0.875rem;
|
|
82
|
+
--pds-typography-size-xl: 1.44rem;
|
|
83
|
+
--pds-typography-size-xs: 0.75rem;
|
|
84
|
+
--pds-z-index-dropdown: 200;
|
|
85
|
+
--pds-z-index-modal: 500;
|
|
86
|
+
--pds-z-index-navigation: 100;
|
|
87
|
+
--pds-z-index-notifications: 300;
|
|
88
|
+
--pds-z-index-overlay: 400;
|
|
19
89
|
}
|