@pantheon-systems/pds-design-tokens 1.0.0-dev.10 → 1.0.0-dev.12
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/build/css/pds-design-tokens-dark-mode.css +4 -7
- package/build/css/pds-design-tokens-light-mode.css +4 -7
- package/build/figma/pds-design-tokens-figma.json +2719 -2843
- package/build/json/pds-design-tokens-dark-mode.json +769 -854
- package/build/json/pds-design-tokens-light-mode.json +769 -854
- package/build/json/pds-design-tokens.json +42 -0
- package/build/scss/_pds-design-tokens-dark-mode.scss +4 -7
- package/build/scss/_pds-design-tokens-light-mode.scss +4 -7
- package/package.json +1 -1
|
@@ -21,6 +21,48 @@
|
|
|
21
21
|
]
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
+
"input": {
|
|
25
|
+
"transition": {
|
|
26
|
+
"value": "background-color: 200ms ease-in-out 0s, border-color: 200ms ease-in-out 0s",
|
|
27
|
+
"filePath": "tokens/animation/alias.json",
|
|
28
|
+
"isSource": true,
|
|
29
|
+
"original": {
|
|
30
|
+
"value": "background-color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}, border-color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}"
|
|
31
|
+
},
|
|
32
|
+
"name": "animation-input-transition",
|
|
33
|
+
"attributes": {
|
|
34
|
+
"category": "animation",
|
|
35
|
+
"type": "input",
|
|
36
|
+
"item": "transition"
|
|
37
|
+
},
|
|
38
|
+
"path": [
|
|
39
|
+
"animation",
|
|
40
|
+
"input",
|
|
41
|
+
"transition"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"input-label": {
|
|
46
|
+
"transition": {
|
|
47
|
+
"value": "color: 200ms ease-in-out 0s",
|
|
48
|
+
"filePath": "tokens/animation/alias.json",
|
|
49
|
+
"isSource": true,
|
|
50
|
+
"original": {
|
|
51
|
+
"value": "color: {animation.transition.default.duration.value} {animation.transition.default.timing-function.value} {animation.transition.default.delay.value}"
|
|
52
|
+
},
|
|
53
|
+
"name": "animation-input-label-transition",
|
|
54
|
+
"attributes": {
|
|
55
|
+
"category": "animation",
|
|
56
|
+
"type": "input-label",
|
|
57
|
+
"item": "transition"
|
|
58
|
+
},
|
|
59
|
+
"path": [
|
|
60
|
+
"animation",
|
|
61
|
+
"input-label",
|
|
62
|
+
"transition"
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
},
|
|
24
66
|
"transition": {
|
|
25
67
|
"default": {
|
|
26
68
|
"delay": {
|
|
@@ -61,21 +61,18 @@ $pds-color-gradient-after-hours: linear-gradient(228.64deg, #2B017B 41.87%, #29B
|
|
|
61
61
|
$pds-color-gradient-midnight: linear-gradient(228.64deg, #3017A1 46.34%, #00E0C3 100%);
|
|
62
62
|
$pds-color-gradient-sunrise: linear-gradient(227.79deg, #300068 38.28%, #E65F35 100%);
|
|
63
63
|
$pds-color-gradient-sunset: linear-gradient(48.24deg, #EF13AD 0%, #300068 66.25%);
|
|
64
|
-
$pds-color-input-background-active: #1d1d29;
|
|
65
64
|
$pds-color-input-background-critical: #1d1d29;
|
|
66
65
|
$pds-color-input-background-default: #1d1d29;
|
|
67
|
-
$pds-color-input-background-hover: #282839;
|
|
68
|
-
$pds-color-input-background-success: #1d1d29;
|
|
69
|
-
$pds-color-input-border-active: #858299;
|
|
70
66
|
$pds-color-input-border-critical: #e05757;
|
|
71
67
|
$pds-color-input-border-default: #a6a3b4;
|
|
72
|
-
$pds-color-input-border-hover:
|
|
68
|
+
$pds-color-input-border-hover: $pds-color-interactive-focus;
|
|
73
69
|
$pds-color-input-border-success: #22a06b;
|
|
74
|
-
$pds-color-input-
|
|
70
|
+
$pds-color-input-checked-background: $pds-color-interactive-focus;
|
|
71
|
+
$pds-color-input-checked-foreground: #ffffff;
|
|
75
72
|
$pds-color-input-foreground-critical: #e05757;
|
|
76
73
|
$pds-color-input-foreground-default: #ffffff;
|
|
77
|
-
$pds-color-input-foreground-hover: #ffffff;
|
|
78
74
|
$pds-color-input-foreground-success: #22a06b;
|
|
75
|
+
$pds-color-input-placeholder-text: #a6a3b4;
|
|
79
76
|
$pds-color-interactive-focus: #36a3ff;
|
|
80
77
|
$pds-color-link-active: #2776b9;
|
|
81
78
|
$pds-color-link-default: #36a3ff;
|
|
@@ -61,21 +61,18 @@ $pds-color-gradient-after-hours: linear-gradient(228.64deg, #2B017B 41.87%, #29B
|
|
|
61
61
|
$pds-color-gradient-midnight: linear-gradient(228.64deg, #3017A1 46.34%, #00E0C3 100%);
|
|
62
62
|
$pds-color-gradient-sunrise: linear-gradient(227.79deg, #300068 38.28%, #E65F35 100%);
|
|
63
63
|
$pds-color-gradient-sunset: linear-gradient(48.24deg, #EF13AD 0%, #300068 66.25%);
|
|
64
|
-
$pds-color-input-background-active: #ffffff;
|
|
65
64
|
$pds-color-input-background-critical: #ffebeb;
|
|
66
65
|
$pds-color-input-background-default: #ffffff;
|
|
67
|
-
$pds-color-input-background-hover: #f0ecff;
|
|
68
|
-
$pds-color-input-background-success: #ffffff;
|
|
69
|
-
$pds-color-input-border-active: #5f41e5;
|
|
70
66
|
$pds-color-input-border-critical: #d61f1f;
|
|
71
67
|
$pds-color-input-border-default: #8f8f99;
|
|
72
|
-
$pds-color-input-border-hover:
|
|
68
|
+
$pds-color-input-border-hover: $pds-color-interactive-focus;
|
|
73
69
|
$pds-color-input-border-success: #1f845a;
|
|
74
|
-
$pds-color-input-
|
|
70
|
+
$pds-color-input-checked-background: $pds-color-interactive-focus;
|
|
71
|
+
$pds-color-input-checked-foreground: #ffffff;
|
|
75
72
|
$pds-color-input-foreground-critical: #d61f1f;
|
|
76
73
|
$pds-color-input-foreground-default: #23232d;
|
|
77
|
-
$pds-color-input-foreground-hover: #23232d;
|
|
78
74
|
$pds-color-input-foreground-success: #1f845a;
|
|
75
|
+
$pds-color-input-placeholder-text: #71717c;
|
|
79
76
|
$pds-color-interactive-focus: #0f62fe;
|
|
80
77
|
$pds-color-link-active: #003cac;
|
|
81
78
|
$pds-color-link-default: #0f62fe;
|