@volue/design-colors 3.0.0-next.2 → 3.0.0-next.3
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/flat.common.js +10 -7
- package/dist/flat.d.ts +12 -10
- package/dist/flat.module.js +8 -6
- package/dist/generic.common.js +23 -11
- package/dist/generic.d.ts +17 -10
- package/dist/generic.module.js +23 -11
- package/dist/index.common.js +7 -6
- package/dist/index.cssmodules.css +6 -5
- package/dist/index.custom-properties.css +7 -6
- package/dist/index.d.ts +7 -6
- package/dist/index.json +6 -5
- package/dist/index.map.scss +7 -6
- package/dist/index.module.js +7 -6
- package/dist/index.scss +7 -6
- package/flat/package.json +3 -2
- package/generic/package.json +3 -2
- package/package.json +1 -1
- package/src/functional.json +10 -6
package/dist/flat.common.js
CHANGED
|
@@ -183,7 +183,7 @@ const backgroundInfoStrongHover = "#005e72";
|
|
|
183
183
|
const backgroundDisabled = "#e6ebec";
|
|
184
184
|
const backgroundDisabledSubtle = "#f3f5f6";
|
|
185
185
|
const backgroundInverse = "rgba(255, 255, 255, 0.113)";
|
|
186
|
-
const
|
|
186
|
+
const foregroundBody = "#082d35";
|
|
187
187
|
const foregroundLink = "#11596a";
|
|
188
188
|
const foregroundNeutral = "#082d35";
|
|
189
189
|
const foregroundNeutralModerate = "#223f44";
|
|
@@ -191,19 +191,20 @@ const foregroundNeutralSubtle = "#53747b";
|
|
|
191
191
|
const foregroundNeutralMinimal = "#9dafb3";
|
|
192
192
|
const foregroundAccent = "#0c4957";
|
|
193
193
|
const foregroundAccentModerate = "#11596a";
|
|
194
|
+
const foregroundAccentSubtle = "#388597";
|
|
194
195
|
const foregroundDanger = "#9d0012";
|
|
195
196
|
const foregroundDangerModerate = "#b20016";
|
|
196
|
-
const foregroundDangerSubtle = "#
|
|
197
|
+
const foregroundDangerSubtle = "#ff3b3d";
|
|
197
198
|
const foregroundWarning = "#805400";
|
|
198
199
|
const foregroundWarningModerate = "#b17600";
|
|
199
|
-
const foregroundWarningSubtle = "#
|
|
200
|
+
const foregroundWarningSubtle = "#ffb900";
|
|
200
201
|
const foregroundWarningInverse = "#082d35";
|
|
201
202
|
const foregroundSuccess = "#006626";
|
|
202
203
|
const foregroundSuccessModerate = "#1b8238";
|
|
203
|
-
const foregroundSuccessSubtle = "#
|
|
204
|
+
const foregroundSuccessSubtle = "#1fc052";
|
|
204
205
|
const foregroundInfo = "#005e72";
|
|
205
206
|
const foregroundInfoModerate = "#007a92";
|
|
206
|
-
const foregroundInfoSubtle = "#
|
|
207
|
+
const foregroundInfoSubtle = "#00b4d1";
|
|
207
208
|
const foregroundDisabled = "#9dafb3";
|
|
208
209
|
const foregroundDisabledSubtle = "#c2cdd0";
|
|
209
210
|
const foregroundInverse = "#ffffff";
|
|
@@ -439,7 +440,7 @@ module.exports = {
|
|
|
439
440
|
backgroundDisabled,
|
|
440
441
|
backgroundDisabledSubtle,
|
|
441
442
|
backgroundInverse,
|
|
442
|
-
|
|
443
|
+
foregroundBody,
|
|
443
444
|
foregroundLink,
|
|
444
445
|
foregroundNeutral,
|
|
445
446
|
foregroundNeutralModerate,
|
|
@@ -447,6 +448,7 @@ module.exports = {
|
|
|
447
448
|
foregroundNeutralMinimal,
|
|
448
449
|
foregroundAccent,
|
|
449
450
|
foregroundAccentModerate,
|
|
451
|
+
foregroundAccentSubtle,
|
|
450
452
|
foregroundDanger,
|
|
451
453
|
foregroundDangerModerate,
|
|
452
454
|
foregroundDangerSubtle,
|
|
@@ -700,7 +702,7 @@ module.exports = {
|
|
|
700
702
|
backgroundInverse
|
|
701
703
|
},
|
|
702
704
|
foreground: {
|
|
703
|
-
|
|
705
|
+
foregroundBody,
|
|
704
706
|
foregroundLink,
|
|
705
707
|
foregroundNeutral,
|
|
706
708
|
foregroundNeutralModerate,
|
|
@@ -708,6 +710,7 @@ module.exports = {
|
|
|
708
710
|
foregroundNeutralMinimal,
|
|
709
711
|
foregroundAccent,
|
|
710
712
|
foregroundAccentModerate,
|
|
713
|
+
foregroundAccentSubtle,
|
|
711
714
|
foregroundDanger,
|
|
712
715
|
foregroundDangerModerate,
|
|
713
716
|
foregroundDangerSubtle,
|
package/dist/flat.d.ts
CHANGED
|
@@ -183,7 +183,7 @@ export declare const backgroundInfoStrongHover = "#005e72";
|
|
|
183
183
|
export declare const backgroundDisabled = "#e6ebec";
|
|
184
184
|
export declare const backgroundDisabledSubtle = "#f3f5f6";
|
|
185
185
|
export declare const backgroundInverse = "rgba(255, 255, 255, 0.113)";
|
|
186
|
-
export declare const
|
|
186
|
+
export declare const foregroundBody = "#082d35";
|
|
187
187
|
export declare const foregroundLink = "#11596a";
|
|
188
188
|
export declare const foregroundNeutral = "#082d35";
|
|
189
189
|
export declare const foregroundNeutralModerate = "#223f44";
|
|
@@ -191,19 +191,20 @@ export declare const foregroundNeutralSubtle = "#53747b";
|
|
|
191
191
|
export declare const foregroundNeutralMinimal = "#9dafb3";
|
|
192
192
|
export declare const foregroundAccent = "#0c4957";
|
|
193
193
|
export declare const foregroundAccentModerate = "#11596a";
|
|
194
|
+
export declare const foregroundAccentSubtle = "#388597";
|
|
194
195
|
export declare const foregroundDanger = "#9d0012";
|
|
195
196
|
export declare const foregroundDangerModerate = "#b20016";
|
|
196
|
-
export declare const foregroundDangerSubtle = "#
|
|
197
|
+
export declare const foregroundDangerSubtle = "#ff3b3d";
|
|
197
198
|
export declare const foregroundWarning = "#805400";
|
|
198
199
|
export declare const foregroundWarningModerate = "#b17600";
|
|
199
|
-
export declare const foregroundWarningSubtle = "#
|
|
200
|
+
export declare const foregroundWarningSubtle = "#ffb900";
|
|
200
201
|
export declare const foregroundWarningInverse = "#082d35";
|
|
201
202
|
export declare const foregroundSuccess = "#006626";
|
|
202
203
|
export declare const foregroundSuccessModerate = "#1b8238";
|
|
203
|
-
export declare const foregroundSuccessSubtle = "#
|
|
204
|
+
export declare const foregroundSuccessSubtle = "#1fc052";
|
|
204
205
|
export declare const foregroundInfo = "#005e72";
|
|
205
206
|
export declare const foregroundInfoModerate = "#007a92";
|
|
206
|
-
export declare const foregroundInfoSubtle = "#
|
|
207
|
+
export declare const foregroundInfoSubtle = "#00b4d1";
|
|
207
208
|
export declare const foregroundDisabled = "#9dafb3";
|
|
208
209
|
export declare const foregroundDisabledSubtle = "#c2cdd0";
|
|
209
210
|
export declare const foregroundInverse = "#ffffff";
|
|
@@ -444,7 +445,7 @@ export declare const background: {
|
|
|
444
445
|
backgroundInverse: "rgba(255, 255, 255, 0.113)";
|
|
445
446
|
};
|
|
446
447
|
export declare const foreground: {
|
|
447
|
-
|
|
448
|
+
foregroundBody: "#082d35";
|
|
448
449
|
foregroundLink: "#11596a";
|
|
449
450
|
foregroundNeutral: "#082d35";
|
|
450
451
|
foregroundNeutralModerate: "#223f44";
|
|
@@ -452,19 +453,20 @@ export declare const foreground: {
|
|
|
452
453
|
foregroundNeutralMinimal: "#9dafb3";
|
|
453
454
|
foregroundAccent: "#0c4957";
|
|
454
455
|
foregroundAccentModerate: "#11596a";
|
|
456
|
+
foregroundAccentSubtle: "#388597";
|
|
455
457
|
foregroundDanger: "#9d0012";
|
|
456
458
|
foregroundDangerModerate: "#b20016";
|
|
457
|
-
foregroundDangerSubtle: "#
|
|
459
|
+
foregroundDangerSubtle: "#ff3b3d";
|
|
458
460
|
foregroundWarning: "#805400";
|
|
459
461
|
foregroundWarningModerate: "#b17600";
|
|
460
|
-
foregroundWarningSubtle: "#
|
|
462
|
+
foregroundWarningSubtle: "#ffb900";
|
|
461
463
|
foregroundWarningInverse: "#082d35";
|
|
462
464
|
foregroundSuccess: "#006626";
|
|
463
465
|
foregroundSuccessModerate: "#1b8238";
|
|
464
|
-
foregroundSuccessSubtle: "#
|
|
466
|
+
foregroundSuccessSubtle: "#1fc052";
|
|
465
467
|
foregroundInfo: "#005e72";
|
|
466
468
|
foregroundInfoModerate: "#007a92";
|
|
467
|
-
foregroundInfoSubtle: "#
|
|
469
|
+
foregroundInfoSubtle: "#00b4d1";
|
|
468
470
|
foregroundDisabled: "#9dafb3";
|
|
469
471
|
foregroundDisabledSubtle: "#c2cdd0";
|
|
470
472
|
foregroundInverse: "#ffffff";
|
package/dist/flat.module.js
CHANGED
|
@@ -183,7 +183,7 @@ export const backgroundInfoStrongHover = "#005e72";
|
|
|
183
183
|
export const backgroundDisabled = "#e6ebec";
|
|
184
184
|
export const backgroundDisabledSubtle = "#f3f5f6";
|
|
185
185
|
export const backgroundInverse = "rgba(255, 255, 255, 0.113)";
|
|
186
|
-
export const
|
|
186
|
+
export const foregroundBody = "#082d35";
|
|
187
187
|
export const foregroundLink = "#11596a";
|
|
188
188
|
export const foregroundNeutral = "#082d35";
|
|
189
189
|
export const foregroundNeutralModerate = "#223f44";
|
|
@@ -191,19 +191,20 @@ export const foregroundNeutralSubtle = "#53747b";
|
|
|
191
191
|
export const foregroundNeutralMinimal = "#9dafb3";
|
|
192
192
|
export const foregroundAccent = "#0c4957";
|
|
193
193
|
export const foregroundAccentModerate = "#11596a";
|
|
194
|
+
export const foregroundAccentSubtle = "#388597";
|
|
194
195
|
export const foregroundDanger = "#9d0012";
|
|
195
196
|
export const foregroundDangerModerate = "#b20016";
|
|
196
|
-
export const foregroundDangerSubtle = "#
|
|
197
|
+
export const foregroundDangerSubtle = "#ff3b3d";
|
|
197
198
|
export const foregroundWarning = "#805400";
|
|
198
199
|
export const foregroundWarningModerate = "#b17600";
|
|
199
|
-
export const foregroundWarningSubtle = "#
|
|
200
|
+
export const foregroundWarningSubtle = "#ffb900";
|
|
200
201
|
export const foregroundWarningInverse = "#082d35";
|
|
201
202
|
export const foregroundSuccess = "#006626";
|
|
202
203
|
export const foregroundSuccessModerate = "#1b8238";
|
|
203
|
-
export const foregroundSuccessSubtle = "#
|
|
204
|
+
export const foregroundSuccessSubtle = "#1fc052";
|
|
204
205
|
export const foregroundInfo = "#005e72";
|
|
205
206
|
export const foregroundInfoModerate = "#007a92";
|
|
206
|
-
export const foregroundInfoSubtle = "#
|
|
207
|
+
export const foregroundInfoSubtle = "#00b4d1";
|
|
207
208
|
export const foregroundDisabled = "#9dafb3";
|
|
208
209
|
export const foregroundDisabledSubtle = "#c2cdd0";
|
|
209
210
|
export const foregroundInverse = "#ffffff";
|
|
@@ -444,7 +445,7 @@ export const background = {
|
|
|
444
445
|
backgroundInverse
|
|
445
446
|
};
|
|
446
447
|
export const foreground = {
|
|
447
|
-
|
|
448
|
+
foregroundBody,
|
|
448
449
|
foregroundLink,
|
|
449
450
|
foregroundNeutral,
|
|
450
451
|
foregroundNeutralModerate,
|
|
@@ -452,6 +453,7 @@ export const foreground = {
|
|
|
452
453
|
foregroundNeutralMinimal,
|
|
453
454
|
foregroundAccent,
|
|
454
455
|
foregroundAccentModerate,
|
|
456
|
+
foregroundAccentSubtle,
|
|
455
457
|
foregroundDanger,
|
|
456
458
|
foregroundDangerModerate,
|
|
457
459
|
foregroundDangerSubtle,
|
package/dist/generic.common.js
CHANGED
|
@@ -1891,13 +1891,13 @@ module.exports = {
|
|
|
1891
1891
|
"foreground": [
|
|
1892
1892
|
{
|
|
1893
1893
|
"value": "#082d35",
|
|
1894
|
-
"name": "
|
|
1895
|
-
"description": "
|
|
1894
|
+
"name": "foregroundBody",
|
|
1895
|
+
"description": "Body foreground. Used for the default body text of your app.",
|
|
1896
1896
|
"originalName": "foregroundNeutral",
|
|
1897
1897
|
"path": [
|
|
1898
1898
|
"color",
|
|
1899
1899
|
"foreground",
|
|
1900
|
-
"
|
|
1900
|
+
"body"
|
|
1901
1901
|
]
|
|
1902
1902
|
},
|
|
1903
1903
|
{
|
|
@@ -1983,6 +1983,18 @@ module.exports = {
|
|
|
1983
1983
|
"moderate"
|
|
1984
1984
|
]
|
|
1985
1985
|
},
|
|
1986
|
+
{
|
|
1987
|
+
"value": "#388597",
|
|
1988
|
+
"name": "foregroundAccentSubtle",
|
|
1989
|
+
"description": "Subtle accent foreground.",
|
|
1990
|
+
"originalName": "colorAccent70",
|
|
1991
|
+
"path": [
|
|
1992
|
+
"color",
|
|
1993
|
+
"foreground",
|
|
1994
|
+
"accent",
|
|
1995
|
+
"subtle"
|
|
1996
|
+
]
|
|
1997
|
+
},
|
|
1986
1998
|
{
|
|
1987
1999
|
"value": "#9d0012",
|
|
1988
2000
|
"name": "foregroundDanger",
|
|
@@ -2008,10 +2020,10 @@ module.exports = {
|
|
|
2008
2020
|
]
|
|
2009
2021
|
},
|
|
2010
2022
|
{
|
|
2011
|
-
"value": "#
|
|
2023
|
+
"value": "#ff3b3d",
|
|
2012
2024
|
"name": "foregroundDangerSubtle",
|
|
2013
2025
|
"description": "Subtle danger foreground.",
|
|
2014
|
-
"originalName": "
|
|
2026
|
+
"originalName": "colorRed70",
|
|
2015
2027
|
"path": [
|
|
2016
2028
|
"color",
|
|
2017
2029
|
"foreground",
|
|
@@ -2044,10 +2056,10 @@ module.exports = {
|
|
|
2044
2056
|
]
|
|
2045
2057
|
},
|
|
2046
2058
|
{
|
|
2047
|
-
"value": "#
|
|
2059
|
+
"value": "#ffb900",
|
|
2048
2060
|
"name": "foregroundWarningSubtle",
|
|
2049
2061
|
"description": "Subtle danger foreground.",
|
|
2050
|
-
"originalName": "
|
|
2062
|
+
"originalName": "colorOrange70",
|
|
2051
2063
|
"path": [
|
|
2052
2064
|
"color",
|
|
2053
2065
|
"foreground",
|
|
@@ -2092,10 +2104,10 @@ module.exports = {
|
|
|
2092
2104
|
]
|
|
2093
2105
|
},
|
|
2094
2106
|
{
|
|
2095
|
-
"value": "#
|
|
2107
|
+
"value": "#1fc052",
|
|
2096
2108
|
"name": "foregroundSuccessSubtle",
|
|
2097
2109
|
"description": "Subtle success foreground.",
|
|
2098
|
-
"originalName": "
|
|
2110
|
+
"originalName": "colorGreen70",
|
|
2099
2111
|
"path": [
|
|
2100
2112
|
"color",
|
|
2101
2113
|
"foreground",
|
|
@@ -2128,10 +2140,10 @@ module.exports = {
|
|
|
2128
2140
|
]
|
|
2129
2141
|
},
|
|
2130
2142
|
{
|
|
2131
|
-
"value": "#
|
|
2143
|
+
"value": "#00b4d1",
|
|
2132
2144
|
"name": "foregroundInfoSubtle",
|
|
2133
2145
|
"description": "Subtle info foreground.",
|
|
2134
|
-
"originalName": "
|
|
2146
|
+
"originalName": "colorBlue70",
|
|
2135
2147
|
"path": [
|
|
2136
2148
|
"color",
|
|
2137
2149
|
"foreground",
|
package/dist/generic.d.ts
CHANGED
|
@@ -1058,8 +1058,8 @@ declare const tokens: {
|
|
|
1058
1058
|
"foreground": [
|
|
1059
1059
|
{
|
|
1060
1060
|
value: "#082d35"
|
|
1061
|
-
name: "
|
|
1062
|
-
description: "
|
|
1061
|
+
name: "foregroundBody"
|
|
1062
|
+
description: "Body foreground. Used for the default body text of your app."
|
|
1063
1063
|
originalName: "foregroundNeutral"
|
|
1064
1064
|
path: string[]
|
|
1065
1065
|
},
|
|
@@ -1112,6 +1112,13 @@ declare const tokens: {
|
|
|
1112
1112
|
originalName: "colorAccent90"
|
|
1113
1113
|
path: string[]
|
|
1114
1114
|
},
|
|
1115
|
+
{
|
|
1116
|
+
value: "#388597"
|
|
1117
|
+
name: "foregroundAccentSubtle"
|
|
1118
|
+
description: "Subtle accent foreground."
|
|
1119
|
+
originalName: "colorAccent70"
|
|
1120
|
+
path: string[]
|
|
1121
|
+
},
|
|
1115
1122
|
{
|
|
1116
1123
|
value: "#9d0012"
|
|
1117
1124
|
name: "foregroundDanger"
|
|
@@ -1127,10 +1134,10 @@ declare const tokens: {
|
|
|
1127
1134
|
path: string[]
|
|
1128
1135
|
},
|
|
1129
1136
|
{
|
|
1130
|
-
value: "#
|
|
1137
|
+
value: "#ff3b3d"
|
|
1131
1138
|
name: "foregroundDangerSubtle"
|
|
1132
1139
|
description: "Subtle danger foreground."
|
|
1133
|
-
originalName: "
|
|
1140
|
+
originalName: "colorRed70"
|
|
1134
1141
|
path: string[]
|
|
1135
1142
|
},
|
|
1136
1143
|
{
|
|
@@ -1148,10 +1155,10 @@ declare const tokens: {
|
|
|
1148
1155
|
path: string[]
|
|
1149
1156
|
},
|
|
1150
1157
|
{
|
|
1151
|
-
value: "#
|
|
1158
|
+
value: "#ffb900"
|
|
1152
1159
|
name: "foregroundWarningSubtle"
|
|
1153
1160
|
description: "Subtle danger foreground."
|
|
1154
|
-
originalName: "
|
|
1161
|
+
originalName: "colorOrange70"
|
|
1155
1162
|
path: string[]
|
|
1156
1163
|
},
|
|
1157
1164
|
{
|
|
@@ -1176,10 +1183,10 @@ declare const tokens: {
|
|
|
1176
1183
|
path: string[]
|
|
1177
1184
|
},
|
|
1178
1185
|
{
|
|
1179
|
-
value: "#
|
|
1186
|
+
value: "#1fc052"
|
|
1180
1187
|
name: "foregroundSuccessSubtle"
|
|
1181
1188
|
description: "Subtle success foreground."
|
|
1182
|
-
originalName: "
|
|
1189
|
+
originalName: "colorGreen70"
|
|
1183
1190
|
path: string[]
|
|
1184
1191
|
},
|
|
1185
1192
|
{
|
|
@@ -1197,10 +1204,10 @@ declare const tokens: {
|
|
|
1197
1204
|
path: string[]
|
|
1198
1205
|
},
|
|
1199
1206
|
{
|
|
1200
|
-
value: "#
|
|
1207
|
+
value: "#00b4d1"
|
|
1201
1208
|
name: "foregroundInfoSubtle"
|
|
1202
1209
|
description: "Subtle info foreground."
|
|
1203
|
-
originalName: "
|
|
1210
|
+
originalName: "colorBlue70"
|
|
1204
1211
|
path: string[]
|
|
1205
1212
|
},
|
|
1206
1213
|
{
|
package/dist/generic.module.js
CHANGED
|
@@ -1891,13 +1891,13 @@ export default {
|
|
|
1891
1891
|
"foreground": [
|
|
1892
1892
|
{
|
|
1893
1893
|
"value": "#082d35",
|
|
1894
|
-
"name": "
|
|
1895
|
-
"description": "
|
|
1894
|
+
"name": "foregroundBody",
|
|
1895
|
+
"description": "Body foreground. Used for the default body text of your app.",
|
|
1896
1896
|
"originalName": "foregroundNeutral",
|
|
1897
1897
|
"path": [
|
|
1898
1898
|
"color",
|
|
1899
1899
|
"foreground",
|
|
1900
|
-
"
|
|
1900
|
+
"body"
|
|
1901
1901
|
]
|
|
1902
1902
|
},
|
|
1903
1903
|
{
|
|
@@ -1983,6 +1983,18 @@ export default {
|
|
|
1983
1983
|
"moderate"
|
|
1984
1984
|
]
|
|
1985
1985
|
},
|
|
1986
|
+
{
|
|
1987
|
+
"value": "#388597",
|
|
1988
|
+
"name": "foregroundAccentSubtle",
|
|
1989
|
+
"description": "Subtle accent foreground.",
|
|
1990
|
+
"originalName": "colorAccent70",
|
|
1991
|
+
"path": [
|
|
1992
|
+
"color",
|
|
1993
|
+
"foreground",
|
|
1994
|
+
"accent",
|
|
1995
|
+
"subtle"
|
|
1996
|
+
]
|
|
1997
|
+
},
|
|
1986
1998
|
{
|
|
1987
1999
|
"value": "#9d0012",
|
|
1988
2000
|
"name": "foregroundDanger",
|
|
@@ -2008,10 +2020,10 @@ export default {
|
|
|
2008
2020
|
]
|
|
2009
2021
|
},
|
|
2010
2022
|
{
|
|
2011
|
-
"value": "#
|
|
2023
|
+
"value": "#ff3b3d",
|
|
2012
2024
|
"name": "foregroundDangerSubtle",
|
|
2013
2025
|
"description": "Subtle danger foreground.",
|
|
2014
|
-
"originalName": "
|
|
2026
|
+
"originalName": "colorRed70",
|
|
2015
2027
|
"path": [
|
|
2016
2028
|
"color",
|
|
2017
2029
|
"foreground",
|
|
@@ -2044,10 +2056,10 @@ export default {
|
|
|
2044
2056
|
]
|
|
2045
2057
|
},
|
|
2046
2058
|
{
|
|
2047
|
-
"value": "#
|
|
2059
|
+
"value": "#ffb900",
|
|
2048
2060
|
"name": "foregroundWarningSubtle",
|
|
2049
2061
|
"description": "Subtle danger foreground.",
|
|
2050
|
-
"originalName": "
|
|
2062
|
+
"originalName": "colorOrange70",
|
|
2051
2063
|
"path": [
|
|
2052
2064
|
"color",
|
|
2053
2065
|
"foreground",
|
|
@@ -2092,10 +2104,10 @@ export default {
|
|
|
2092
2104
|
]
|
|
2093
2105
|
},
|
|
2094
2106
|
{
|
|
2095
|
-
"value": "#
|
|
2107
|
+
"value": "#1fc052",
|
|
2096
2108
|
"name": "foregroundSuccessSubtle",
|
|
2097
2109
|
"description": "Subtle success foreground.",
|
|
2098
|
-
"originalName": "
|
|
2110
|
+
"originalName": "colorGreen70",
|
|
2099
2111
|
"path": [
|
|
2100
2112
|
"color",
|
|
2101
2113
|
"foreground",
|
|
@@ -2128,10 +2140,10 @@ export default {
|
|
|
2128
2140
|
]
|
|
2129
2141
|
},
|
|
2130
2142
|
{
|
|
2131
|
-
"value": "#
|
|
2143
|
+
"value": "#00b4d1",
|
|
2132
2144
|
"name": "foregroundInfoSubtle",
|
|
2133
2145
|
"description": "Subtle info foreground.",
|
|
2134
|
-
"originalName": "
|
|
2146
|
+
"originalName": "colorBlue70",
|
|
2135
2147
|
"path": [
|
|
2136
2148
|
"color",
|
|
2137
2149
|
"foreground",
|
package/dist/index.common.js
CHANGED
|
@@ -235,7 +235,7 @@ module.exports = {
|
|
|
235
235
|
"inverse": "rgba(255, 255, 255, 0.113)"
|
|
236
236
|
},
|
|
237
237
|
"foreground": {
|
|
238
|
-
"
|
|
238
|
+
"body": "#082d35",
|
|
239
239
|
"link": "#11596a",
|
|
240
240
|
"neutral": {
|
|
241
241
|
"default": "#082d35",
|
|
@@ -245,28 +245,29 @@ module.exports = {
|
|
|
245
245
|
},
|
|
246
246
|
"accent": {
|
|
247
247
|
"default": "#0c4957",
|
|
248
|
-
"moderate": "#11596a"
|
|
248
|
+
"moderate": "#11596a",
|
|
249
|
+
"subtle": "#388597"
|
|
249
250
|
},
|
|
250
251
|
"danger": {
|
|
251
252
|
"default": "#9d0012",
|
|
252
253
|
"moderate": "#b20016",
|
|
253
|
-
"subtle": "#
|
|
254
|
+
"subtle": "#ff3b3d"
|
|
254
255
|
},
|
|
255
256
|
"warning": {
|
|
256
257
|
"default": "#805400",
|
|
257
258
|
"moderate": "#b17600",
|
|
258
|
-
"subtle": "#
|
|
259
|
+
"subtle": "#ffb900",
|
|
259
260
|
"inverse": "#082d35"
|
|
260
261
|
},
|
|
261
262
|
"success": {
|
|
262
263
|
"default": "#006626",
|
|
263
264
|
"moderate": "#1b8238",
|
|
264
|
-
"subtle": "#
|
|
265
|
+
"subtle": "#1fc052"
|
|
265
266
|
},
|
|
266
267
|
"info": {
|
|
267
268
|
"default": "#005e72",
|
|
268
269
|
"moderate": "#007a92",
|
|
269
|
-
"subtle": "#
|
|
270
|
+
"subtle": "#00b4d1"
|
|
270
271
|
},
|
|
271
272
|
"disabled": {
|
|
272
273
|
"default": "#9dafb3",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
@value color-background-disabled: #e6ebec;
|
|
184
184
|
@value color-background-disabled-subtle: #f3f5f6;
|
|
185
185
|
@value color-background-inverse: rgba(255, 255, 255, 0.113);
|
|
186
|
-
@value color-foreground-
|
|
186
|
+
@value color-foreground-body: #082d35;
|
|
187
187
|
@value color-foreground-link: #11596a;
|
|
188
188
|
@value color-foreground-neutral: #082d35;
|
|
189
189
|
@value color-foreground-neutral-moderate: #223f44;
|
|
@@ -191,19 +191,20 @@
|
|
|
191
191
|
@value color-foreground-neutral-minimal: #9dafb3;
|
|
192
192
|
@value color-foreground-accent: #0c4957;
|
|
193
193
|
@value color-foreground-accent-moderate: #11596a;
|
|
194
|
+
@value color-foreground-accent-subtle: #388597;
|
|
194
195
|
@value color-foreground-danger: #9d0012;
|
|
195
196
|
@value color-foreground-danger-moderate: #b20016;
|
|
196
|
-
@value color-foreground-danger-subtle: #
|
|
197
|
+
@value color-foreground-danger-subtle: #ff3b3d;
|
|
197
198
|
@value color-foreground-warning: #805400;
|
|
198
199
|
@value color-foreground-warning-moderate: #b17600;
|
|
199
|
-
@value color-foreground-warning-subtle: #
|
|
200
|
+
@value color-foreground-warning-subtle: #ffb900;
|
|
200
201
|
@value color-foreground-warning-inverse: #082d35;
|
|
201
202
|
@value color-foreground-success: #006626;
|
|
202
203
|
@value color-foreground-success-moderate: #1b8238;
|
|
203
|
-
@value color-foreground-success-subtle: #
|
|
204
|
+
@value color-foreground-success-subtle: #1fc052;
|
|
204
205
|
@value color-foreground-info: #005e72;
|
|
205
206
|
@value color-foreground-info-moderate: #007a92;
|
|
206
|
-
@value color-foreground-info-subtle: #
|
|
207
|
+
@value color-foreground-info-subtle: #00b4d1;
|
|
207
208
|
@value color-foreground-disabled: #9dafb3;
|
|
208
209
|
@value color-foreground-disabled-subtle: #c2cdd0;
|
|
209
210
|
@value color-foreground-inverse: #ffffff;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Fri,
|
|
3
|
+
* Generated on Fri, 11 Aug 2023 11:40:32 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
--color-background-disabled: #e6ebec;
|
|
190
190
|
--color-background-disabled-subtle: #f3f5f6;
|
|
191
191
|
--color-background-inverse: rgba(255, 255, 255, 0.113);
|
|
192
|
-
--color-foreground-
|
|
192
|
+
--color-foreground-body: #082d35;
|
|
193
193
|
--color-foreground-link: #11596a;
|
|
194
194
|
--color-foreground-neutral: #082d35;
|
|
195
195
|
--color-foreground-neutral-moderate: #223f44;
|
|
@@ -197,19 +197,20 @@
|
|
|
197
197
|
--color-foreground-neutral-minimal: #9dafb3;
|
|
198
198
|
--color-foreground-accent: #0c4957;
|
|
199
199
|
--color-foreground-accent-moderate: #11596a;
|
|
200
|
+
--color-foreground-accent-subtle: #388597;
|
|
200
201
|
--color-foreground-danger: #9d0012;
|
|
201
202
|
--color-foreground-danger-moderate: #b20016;
|
|
202
|
-
--color-foreground-danger-subtle: #
|
|
203
|
+
--color-foreground-danger-subtle: #ff3b3d;
|
|
203
204
|
--color-foreground-warning: #805400;
|
|
204
205
|
--color-foreground-warning-moderate: #b17600;
|
|
205
|
-
--color-foreground-warning-subtle: #
|
|
206
|
+
--color-foreground-warning-subtle: #ffb900;
|
|
206
207
|
--color-foreground-warning-inverse: #082d35;
|
|
207
208
|
--color-foreground-success: #006626;
|
|
208
209
|
--color-foreground-success-moderate: #1b8238;
|
|
209
|
-
--color-foreground-success-subtle: #
|
|
210
|
+
--color-foreground-success-subtle: #1fc052;
|
|
210
211
|
--color-foreground-info: #005e72;
|
|
211
212
|
--color-foreground-info-moderate: #007a92;
|
|
212
|
-
--color-foreground-info-subtle: #
|
|
213
|
+
--color-foreground-info-subtle: #00b4d1;
|
|
213
214
|
--color-foreground-disabled: #9dafb3;
|
|
214
215
|
--color-foreground-disabled-subtle: #c2cdd0;
|
|
215
216
|
--color-foreground-inverse: #ffffff;
|
package/dist/index.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ declare const tokens: {
|
|
|
236
236
|
"inverse": "rgba(255, 255, 255, 0.113)"
|
|
237
237
|
},
|
|
238
238
|
"foreground": {
|
|
239
|
-
"
|
|
239
|
+
"body": "#082d35",
|
|
240
240
|
"link": "#11596a",
|
|
241
241
|
"neutral": {
|
|
242
242
|
"default": "#082d35",
|
|
@@ -246,28 +246,29 @@ declare const tokens: {
|
|
|
246
246
|
},
|
|
247
247
|
"accent": {
|
|
248
248
|
"default": "#0c4957",
|
|
249
|
-
"moderate": "#11596a"
|
|
249
|
+
"moderate": "#11596a",
|
|
250
|
+
"subtle": "#388597"
|
|
250
251
|
},
|
|
251
252
|
"danger": {
|
|
252
253
|
"default": "#9d0012",
|
|
253
254
|
"moderate": "#b20016",
|
|
254
|
-
"subtle": "#
|
|
255
|
+
"subtle": "#ff3b3d"
|
|
255
256
|
},
|
|
256
257
|
"warning": {
|
|
257
258
|
"default": "#805400",
|
|
258
259
|
"moderate": "#b17600",
|
|
259
|
-
"subtle": "#
|
|
260
|
+
"subtle": "#ffb900",
|
|
260
261
|
"inverse": "#082d35"
|
|
261
262
|
},
|
|
262
263
|
"success": {
|
|
263
264
|
"default": "#006626",
|
|
264
265
|
"moderate": "#1b8238",
|
|
265
|
-
"subtle": "#
|
|
266
|
+
"subtle": "#1fc052"
|
|
266
267
|
},
|
|
267
268
|
"info": {
|
|
268
269
|
"default": "#005e72",
|
|
269
270
|
"moderate": "#007a92",
|
|
270
|
-
"subtle": "#
|
|
271
|
+
"subtle": "#00b4d1"
|
|
271
272
|
},
|
|
272
273
|
"disabled": {
|
|
273
274
|
"default": "#9dafb3",
|
package/dist/index.json
CHANGED
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
"COLOR_BACKGROUND_DISABLED": "#e6ebec",
|
|
185
185
|
"COLOR_BACKGROUND_DISABLED_SUBTLE": "#f3f5f6",
|
|
186
186
|
"COLOR_BACKGROUND_INVERSE": "rgba(255, 255, 255, 0.113)",
|
|
187
|
-
"
|
|
187
|
+
"COLOR_FOREGROUND_BODY": "#082d35",
|
|
188
188
|
"COLOR_FOREGROUND_LINK": "#11596a",
|
|
189
189
|
"COLOR_FOREGROUND_NEUTRAL": "#082d35",
|
|
190
190
|
"COLOR_FOREGROUND_NEUTRAL_MODERATE": "#223f44",
|
|
@@ -192,19 +192,20 @@
|
|
|
192
192
|
"COLOR_FOREGROUND_NEUTRAL_MINIMAL": "#9dafb3",
|
|
193
193
|
"COLOR_FOREGROUND_ACCENT": "#0c4957",
|
|
194
194
|
"COLOR_FOREGROUND_ACCENT_MODERATE": "#11596a",
|
|
195
|
+
"COLOR_FOREGROUND_ACCENT_SUBTLE": "#388597",
|
|
195
196
|
"COLOR_FOREGROUND_DANGER": "#9d0012",
|
|
196
197
|
"COLOR_FOREGROUND_DANGER_MODERATE": "#b20016",
|
|
197
|
-
"COLOR_FOREGROUND_DANGER_SUBTLE": "#
|
|
198
|
+
"COLOR_FOREGROUND_DANGER_SUBTLE": "#ff3b3d",
|
|
198
199
|
"COLOR_FOREGROUND_WARNING": "#805400",
|
|
199
200
|
"COLOR_FOREGROUND_WARNING_MODERATE": "#b17600",
|
|
200
|
-
"COLOR_FOREGROUND_WARNING_SUBTLE": "#
|
|
201
|
+
"COLOR_FOREGROUND_WARNING_SUBTLE": "#ffb900",
|
|
201
202
|
"COLOR_FOREGROUND_WARNING_INVERSE": "#082d35",
|
|
202
203
|
"COLOR_FOREGROUND_SUCCESS": "#006626",
|
|
203
204
|
"COLOR_FOREGROUND_SUCCESS_MODERATE": "#1b8238",
|
|
204
|
-
"COLOR_FOREGROUND_SUCCESS_SUBTLE": "#
|
|
205
|
+
"COLOR_FOREGROUND_SUCCESS_SUBTLE": "#1fc052",
|
|
205
206
|
"COLOR_FOREGROUND_INFO": "#005e72",
|
|
206
207
|
"COLOR_FOREGROUND_INFO_MODERATE": "#007a92",
|
|
207
|
-
"COLOR_FOREGROUND_INFO_SUBTLE": "#
|
|
208
|
+
"COLOR_FOREGROUND_INFO_SUBTLE": "#00b4d1",
|
|
208
209
|
"COLOR_FOREGROUND_DISABLED": "#9dafb3",
|
|
209
210
|
"COLOR_FOREGROUND_DISABLED_SUBTLE": "#c2cdd0",
|
|
210
211
|
"COLOR_FOREGROUND_INVERSE": "#ffffff",
|
package/dist/index.map.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on Fri,
|
|
4
|
+
* Generated on Fri, 11 Aug 2023 11:40:32 GMT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
$colors-map: (
|
|
@@ -190,7 +190,7 @@ $colors-map: (
|
|
|
190
190
|
'color-background-disabled': #e6ebec,
|
|
191
191
|
'color-background-disabled-subtle': #f3f5f6,
|
|
192
192
|
'color-background-inverse': rgba(255, 255, 255, 0.113),
|
|
193
|
-
'color-foreground-
|
|
193
|
+
'color-foreground-body': #082d35,
|
|
194
194
|
'color-foreground-link': #11596a,
|
|
195
195
|
'color-foreground-neutral': #082d35,
|
|
196
196
|
'color-foreground-neutral-moderate': #223f44,
|
|
@@ -198,19 +198,20 @@ $colors-map: (
|
|
|
198
198
|
'color-foreground-neutral-minimal': #9dafb3,
|
|
199
199
|
'color-foreground-accent': #0c4957,
|
|
200
200
|
'color-foreground-accent-moderate': #11596a,
|
|
201
|
+
'color-foreground-accent-subtle': #388597,
|
|
201
202
|
'color-foreground-danger': #9d0012,
|
|
202
203
|
'color-foreground-danger-moderate': #b20016,
|
|
203
|
-
'color-foreground-danger-subtle': #
|
|
204
|
+
'color-foreground-danger-subtle': #ff3b3d,
|
|
204
205
|
'color-foreground-warning': #805400,
|
|
205
206
|
'color-foreground-warning-moderate': #b17600,
|
|
206
|
-
'color-foreground-warning-subtle': #
|
|
207
|
+
'color-foreground-warning-subtle': #ffb900,
|
|
207
208
|
'color-foreground-warning-inverse': #082d35,
|
|
208
209
|
'color-foreground-success': #006626,
|
|
209
210
|
'color-foreground-success-moderate': #1b8238,
|
|
210
|
-
'color-foreground-success-subtle': #
|
|
211
|
+
'color-foreground-success-subtle': #1fc052,
|
|
211
212
|
'color-foreground-info': #005e72,
|
|
212
213
|
'color-foreground-info-moderate': #007a92,
|
|
213
|
-
'color-foreground-info-subtle': #
|
|
214
|
+
'color-foreground-info-subtle': #00b4d1,
|
|
214
215
|
'color-foreground-disabled': #9dafb3,
|
|
215
216
|
'color-foreground-disabled-subtle': #c2cdd0,
|
|
216
217
|
'color-foreground-inverse': #ffffff,
|
package/dist/index.module.js
CHANGED
|
@@ -235,7 +235,7 @@ export default {
|
|
|
235
235
|
"inverse": "rgba(255, 255, 255, 0.113)"
|
|
236
236
|
},
|
|
237
237
|
"foreground": {
|
|
238
|
-
"
|
|
238
|
+
"body": "#082d35",
|
|
239
239
|
"link": "#11596a",
|
|
240
240
|
"neutral": {
|
|
241
241
|
"default": "#082d35",
|
|
@@ -245,28 +245,29 @@ export default {
|
|
|
245
245
|
},
|
|
246
246
|
"accent": {
|
|
247
247
|
"default": "#0c4957",
|
|
248
|
-
"moderate": "#11596a"
|
|
248
|
+
"moderate": "#11596a",
|
|
249
|
+
"subtle": "#388597"
|
|
249
250
|
},
|
|
250
251
|
"danger": {
|
|
251
252
|
"default": "#9d0012",
|
|
252
253
|
"moderate": "#b20016",
|
|
253
|
-
"subtle": "#
|
|
254
|
+
"subtle": "#ff3b3d"
|
|
254
255
|
},
|
|
255
256
|
"warning": {
|
|
256
257
|
"default": "#805400",
|
|
257
258
|
"moderate": "#b17600",
|
|
258
|
-
"subtle": "#
|
|
259
|
+
"subtle": "#ffb900",
|
|
259
260
|
"inverse": "#082d35"
|
|
260
261
|
},
|
|
261
262
|
"success": {
|
|
262
263
|
"default": "#006626",
|
|
263
264
|
"moderate": "#1b8238",
|
|
264
|
-
"subtle": "#
|
|
265
|
+
"subtle": "#1fc052"
|
|
265
266
|
},
|
|
266
267
|
"info": {
|
|
267
268
|
"default": "#005e72",
|
|
268
269
|
"moderate": "#007a92",
|
|
269
|
-
"subtle": "#
|
|
270
|
+
"subtle": "#00b4d1"
|
|
270
271
|
},
|
|
271
272
|
"disabled": {
|
|
272
273
|
"default": "#9dafb3",
|
package/dist/index.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on Fri,
|
|
3
|
+
// Generated on Fri, 11 Aug 2023 11:40:32 GMT
|
|
4
4
|
|
|
5
5
|
$color-white: #ffffff;
|
|
6
6
|
$color-gray0: #f9fafb;
|
|
@@ -187,7 +187,7 @@ $color-background-info-strong-hover: #005e72;
|
|
|
187
187
|
$color-background-disabled: #e6ebec;
|
|
188
188
|
$color-background-disabled-subtle: #f3f5f6;
|
|
189
189
|
$color-background-inverse: rgba(255, 255, 255, 0.113);
|
|
190
|
-
$color-foreground-
|
|
190
|
+
$color-foreground-body: #082d35;
|
|
191
191
|
$color-foreground-link: #11596a;
|
|
192
192
|
$color-foreground-neutral: #082d35;
|
|
193
193
|
$color-foreground-neutral-moderate: #223f44;
|
|
@@ -195,19 +195,20 @@ $color-foreground-neutral-subtle: #53747b;
|
|
|
195
195
|
$color-foreground-neutral-minimal: #9dafb3;
|
|
196
196
|
$color-foreground-accent: #0c4957;
|
|
197
197
|
$color-foreground-accent-moderate: #11596a;
|
|
198
|
+
$color-foreground-accent-subtle: #388597;
|
|
198
199
|
$color-foreground-danger: #9d0012;
|
|
199
200
|
$color-foreground-danger-moderate: #b20016;
|
|
200
|
-
$color-foreground-danger-subtle: #
|
|
201
|
+
$color-foreground-danger-subtle: #ff3b3d;
|
|
201
202
|
$color-foreground-warning: #805400;
|
|
202
203
|
$color-foreground-warning-moderate: #b17600;
|
|
203
|
-
$color-foreground-warning-subtle: #
|
|
204
|
+
$color-foreground-warning-subtle: #ffb900;
|
|
204
205
|
$color-foreground-warning-inverse: #082d35;
|
|
205
206
|
$color-foreground-success: #006626;
|
|
206
207
|
$color-foreground-success-moderate: #1b8238;
|
|
207
|
-
$color-foreground-success-subtle: #
|
|
208
|
+
$color-foreground-success-subtle: #1fc052;
|
|
208
209
|
$color-foreground-info: #005e72;
|
|
209
210
|
$color-foreground-info-moderate: #007a92;
|
|
210
|
-
$color-foreground-info-subtle: #
|
|
211
|
+
$color-foreground-info-subtle: #00b4d1;
|
|
211
212
|
$color-foreground-disabled: #9dafb3;
|
|
212
213
|
$color-foreground-disabled-subtle: #c2cdd0;
|
|
213
214
|
$color-foreground-inverse: #ffffff;
|
package/flat/package.json
CHANGED
package/generic/package.json
CHANGED
package/package.json
CHANGED
package/src/functional.json
CHANGED
|
@@ -296,9 +296,9 @@
|
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
298
|
"foreground": {
|
|
299
|
-
"
|
|
299
|
+
"body": {
|
|
300
300
|
"value": "{color.foreground.neutral.@.value}",
|
|
301
|
-
"description": "
|
|
301
|
+
"description": "Body foreground. Used for the default body text of your app."
|
|
302
302
|
},
|
|
303
303
|
"link": {
|
|
304
304
|
"value": "{color.foreground.accent.moderate.value}",
|
|
@@ -330,6 +330,10 @@
|
|
|
330
330
|
"moderate": {
|
|
331
331
|
"value": "{color.core.accent90.value}",
|
|
332
332
|
"description": "Moderate accent foreground."
|
|
333
|
+
},
|
|
334
|
+
"subtle": {
|
|
335
|
+
"value": "{color.core.accent70.value}",
|
|
336
|
+
"description": "Subtle accent foreground."
|
|
333
337
|
}
|
|
334
338
|
},
|
|
335
339
|
"danger": {
|
|
@@ -342,7 +346,7 @@
|
|
|
342
346
|
"description": "Moderate danger foreground."
|
|
343
347
|
},
|
|
344
348
|
"subtle": {
|
|
345
|
-
"value": "{color.core.
|
|
349
|
+
"value": "{color.core.red70.value}",
|
|
346
350
|
"description": "Subtle danger foreground."
|
|
347
351
|
}
|
|
348
352
|
},
|
|
@@ -356,7 +360,7 @@
|
|
|
356
360
|
"description": "Moderate warning foreground."
|
|
357
361
|
},
|
|
358
362
|
"subtle": {
|
|
359
|
-
"value": "{color.core.
|
|
363
|
+
"value": "{color.core.orange70.value}",
|
|
360
364
|
"description": "Subtle danger foreground."
|
|
361
365
|
},
|
|
362
366
|
"inverse": {
|
|
@@ -374,7 +378,7 @@
|
|
|
374
378
|
"description": "Moderate success foreground."
|
|
375
379
|
},
|
|
376
380
|
"subtle": {
|
|
377
|
-
"value": "{color.core.
|
|
381
|
+
"value": "{color.core.green70.value}",
|
|
378
382
|
"description": "Subtle success foreground."
|
|
379
383
|
}
|
|
380
384
|
},
|
|
@@ -388,7 +392,7 @@
|
|
|
388
392
|
"description": "Moderate info foreground."
|
|
389
393
|
},
|
|
390
394
|
"subtle": {
|
|
391
|
-
"value": "{color.core.
|
|
395
|
+
"value": "{color.core.blue70.value}",
|
|
392
396
|
"description": "Subtle info foreground."
|
|
393
397
|
}
|
|
394
398
|
},
|