@milestone-sys/web-design-system 4.0.6 → 4.0.8
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/colors.list.js +6 -6
- package/design-system.css +61 -6
- package/design-system.js +2 -2
- package/main.css +61 -6
- package/main.js +1 -1
- package/package.json +1 -1
- package/scss/_variables-deprecated.scss +15 -15
- package/scss/_variables.scss +45 -3
package/colors.list.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const fontColors = [
|
|
2
|
-
{ name: 'Milestone
|
|
2
|
+
{ name: 'Milestone Blue', value: 'msds-text-milestone-blue' },
|
|
3
3
|
{ name: 'Dark Gray', value: 'msds-text-dark-gray' },
|
|
4
4
|
{ name: 'Stone Gray', value: 'msds-text-stone-gray' },
|
|
5
5
|
{ name: 'Midnight Blue', value: 'msds-text-midnight-blue' },
|
|
@@ -7,7 +7,7 @@ export const fontColors = [
|
|
|
7
7
|
]
|
|
8
8
|
|
|
9
9
|
export const backgroundColors = [
|
|
10
|
-
{ name: 'Milestone
|
|
10
|
+
{ name: 'Milestone Blue', value: 'msds-bg-milestone-blue' },
|
|
11
11
|
{ name: 'White', value: 'msds-bg-white' },
|
|
12
12
|
{ name: 'Light Gray', value: 'msds-bg-light-gray' },
|
|
13
13
|
{ name: 'Misty Gray', value: 'msds-bg-misty-gray' },
|
|
@@ -21,7 +21,7 @@ export const backgroundColors = [
|
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
export const hexColors = [
|
|
24
|
-
{ name: 'Milestone
|
|
24
|
+
{ name: 'Milestone Blue', value: '#0099da' },
|
|
25
25
|
{ name: 'Midnight Blue', value: '#081927' },
|
|
26
26
|
{ name: 'Cobalt Blue', value: '#0c62ad' },
|
|
27
27
|
{ name: 'Dark Blue', value: '#023852' },
|
|
@@ -36,13 +36,13 @@ export const hexColors = [
|
|
|
36
36
|
{ name: 'Granite Gray', value: '#7C8B95' },
|
|
37
37
|
{ name: 'Stone Gray', value: '#9dadb0' },
|
|
38
38
|
{ name: 'Dark Gray', value: '#252829' },
|
|
39
|
-
{ name: '
|
|
39
|
+
{ name: 'Danger Red', value: '#e52343' }
|
|
40
40
|
]
|
|
41
41
|
|
|
42
42
|
export const iconColors = [
|
|
43
43
|
{ name: 'Midnight Blue', value: 'msds-icon-midnight-blue' },
|
|
44
44
|
{ name: 'Cobalt Blue', value: 'msds-icon-cobalt-blue' },
|
|
45
|
-
{ name: 'Milestone
|
|
45
|
+
{ name: 'Milestone Blue', value: 'msds-icon-milestone-blue' },
|
|
46
46
|
{ name: 'Granite Gray', value: 'msds-icon-granite-gray' },
|
|
47
47
|
{ name: 'Stone Gray', value: 'msds-icon-stone-gray' },
|
|
48
48
|
{ name: 'White', value: 'msds-icon-white' },
|
|
@@ -66,5 +66,5 @@ export const colors = [
|
|
|
66
66
|
{ name: 'Granite Gray', value: 'msds-color-granite-gray' },
|
|
67
67
|
{ name: 'Stone Gray', value: 'msds-color-stone-gray' },
|
|
68
68
|
{ name: 'Dark Gray', value: 'msds-color-dark-gray' },
|
|
69
|
-
{ name: '
|
|
69
|
+
{ name: 'Danger Red', value: 'msds-color-danger-red' }
|
|
70
70
|
]
|