@instructure/ui-theme-tokens 9.5.2-snapshot-1 → 10.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. package/CHANGELOG.md +11 -2
  2. package/es/canvas/colors.js +33 -17
  3. package/es/canvasHighContrast/colors.js +33 -17
  4. package/es/{instructure/forms.js → common/colors/index.js} +5 -7
  5. package/es/{instructure/index.js → common/colors/primitves.js} +36 -13
  6. package/es/index.js +2 -3
  7. package/es/utils/getUIColors.js +48 -0
  8. package/lib/canvas/colors.js +34 -17
  9. package/lib/canvasHighContrast/colors.js +34 -17
  10. package/lib/{instructure/forms.js → common/colors/index.js} +7 -7
  11. package/lib/{instructure/index.js → common/colors/primitves.js} +37 -13
  12. package/lib/index.js +4 -10
  13. package/lib/utils/getUIColors.js +55 -0
  14. package/package.json +5 -5
  15. package/src/canvas/colors.ts +38 -19
  16. package/src/canvasHighContrast/colors.ts +37 -19
  17. package/src/{instructure/forms.ts → common/colors/index.ts} +5 -8
  18. package/src/{instructure/index.ts → common/colors/primitves.ts} +43 -14
  19. package/src/index.ts +2 -3
  20. package/src/{instructure/spacing.ts → utils/getUIColors.ts} +27 -13
  21. package/tokens/canvas/scss/_variables.scss +0 -49
  22. package/tokens/canvas/source.json +1 -1
  23. package/tokens/canvas-high-contrast/scss/_variables.scss +0 -49
  24. package/tokens/canvas-high-contrast/source.json +1 -1
  25. package/tsconfig.build.tsbuildinfo +1 -1
  26. package/types/canvas/colors.d.ts +1 -1
  27. package/types/canvas/colors.d.ts.map +1 -1
  28. package/types/canvasHighContrast/colors.d.ts +6 -2
  29. package/types/canvasHighContrast/colors.d.ts.map +1 -1
  30. package/types/canvasHighContrast/index.d.ts +5 -1
  31. package/types/canvasHighContrast/index.d.ts.map +1 -1
  32. package/types/common/colors/index.d.ts +5 -0
  33. package/types/common/colors/index.d.ts.map +1 -0
  34. package/types/common/colors/primitves.d.ts +4 -0
  35. package/types/common/colors/primitves.d.ts.map +1 -0
  36. package/types/index.d.ts +2 -3
  37. package/types/index.d.ts.map +1 -1
  38. package/types/utils/getUIColors.d.ts +4 -0
  39. package/types/utils/getUIColors.d.ts.map +1 -0
  40. package/es/instructure/colors.js +0 -56
  41. package/es/instructure/spacing.js +0 -37
  42. package/es/instructure/typography.js +0 -49
  43. package/es/utils/functionalColors.js +0 -79
  44. package/lib/instructure/colors.js +0 -61
  45. package/lib/instructure/spacing.js +0 -42
  46. package/lib/instructure/typography.js +0 -54
  47. package/lib/utils/functionalColors.js +0 -85
  48. package/src/instructure/colors.ts +0 -66
  49. package/src/instructure/typography.ts +0 -57
  50. package/src/utils/functionalColors.ts +0 -90
  51. package/tokens/instructure/scss/_variables.scss +0 -115
  52. package/tokens/instructure/source.json +0 -1
  53. package/types/instructure/colors.d.ts +0 -12
  54. package/types/instructure/colors.d.ts.map +0 -1
  55. package/types/instructure/forms.d.ts +0 -5
  56. package/types/instructure/forms.d.ts.map +0 -1
  57. package/types/instructure/index.d.ts +0 -18
  58. package/types/instructure/index.d.ts.map +0 -1
  59. package/types/instructure/spacing.d.ts +0 -5
  60. package/types/instructure/spacing.d.ts.map +0 -1
  61. package/types/instructure/typography.d.ts +0 -5
  62. package/types/instructure/typography.d.ts.map +0 -1
  63. package/types/utils/functionalColors.d.ts +0 -5
  64. package/types/utils/functionalColors.d.ts.map +0 -1
@@ -22,26 +22,45 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- import { functionalColors } from '../utils/functionalColors'
26
- import { BaseColors, Colors } from '@instructure/shared-types'
27
-
28
- const baseColors: BaseColors = {
29
- brand: '#0374B5',
30
- link: '#0374B5',
31
- electric: '#0374B5',
32
- shamrock: '#0B874B',
33
- barney: '#BF32A4',
34
- crimson: '#E0061F',
35
- fire: '#FC5E13',
36
- licorice: '#2D3B45',
37
- oxford: '#394B58',
38
- ash: '#6B7780',
39
- slate: '#8B969E',
40
- tiara: '#C7CDD1',
41
- porcelain: '#F5F5F5',
42
- white: '#FFFFFF'
25
+ import primitives from '../common/colors/primitves'
26
+ import getUIColors from '../utils/getUIColors'
27
+
28
+ import type { Colors, Contrasts, UI } from '@instructure/shared-types'
29
+
30
+ const contrasts: Contrasts = {
31
+ white1010: primitives.white,
32
+ white1010op75: primitives.white10op75,
33
+
34
+ grey1111: primitives.grey11,
35
+ grey1214: primitives.grey12,
36
+ grey1424: primitives.grey14,
37
+ grey2424: primitives.grey24,
38
+ grey4570: primitives.grey45,
39
+ grey5782: primitives.grey57,
40
+ grey100100: primitives.grey100,
41
+ grey100100op75: primitives.grey100op75,
42
+ grey125125: primitives.grey125,
43
+
44
+ blue1212: primitives.blue12,
45
+ blue4570: primitives.blue45,
46
+ blue5782: primitives.blue57,
47
+
48
+ green1212: primitives.green12,
49
+ green4570: primitives.green45,
50
+ green5782: primitives.green57,
51
+
52
+ orange1212: primitives.orange12,
53
+ orange3045: primitives.orange30,
54
+ orange4570: primitives.orange45,
55
+ orange5782: primitives.orange57,
56
+
57
+ red1212: primitives.red12,
58
+ red4570: primitives.red45,
59
+ red5782: primitives.red57
43
60
  }
44
61
 
45
- const colors: Colors = Object.freeze(functionalColors(baseColors))
62
+ const ui: UI = getUIColors(contrasts)
63
+
64
+ const colors: Colors = { primitives, contrasts, ui }
46
65
  export default colors
47
66
  export { colors }
@@ -22,27 +22,45 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- import { functionalColors } from '../utils/functionalColors'
26
- import { BaseColors, Colors } from '@instructure/shared-types'
27
-
28
- const baseColors: BaseColors = {
29
- brand: '#0770A3',
30
- link: '#0770A3',
31
- electric: '#0770A3',
32
- shamrock: '#127A1B',
33
- barney: '#B8309E',
34
- crimson: '#D01A19',
35
- fire: '#C23C0D',
36
- licorice: '#2D3B45',
37
- oxford: '#394B58',
38
- ash: '#556572',
39
- slate: '#556572',
40
- tiara: '#556572',
41
- porcelain: '#FFFFFF',
42
- white: '#FFFFFF'
25
+ import primitives from '../common/colors/primitves'
26
+ import getUIColors from '../utils/getUIColors'
27
+
28
+ import type { UI, Contrasts } from '@instructure/shared-types'
29
+
30
+ const contrasts: Contrasts = {
31
+ white1010: primitives.white,
32
+ white1010op75: primitives.white10op75,
33
+
34
+ grey1111: primitives.grey11,
35
+ grey1214: primitives.grey14,
36
+ grey1424: primitives.grey24,
37
+ grey2424: primitives.grey24,
38
+ grey4570: primitives.grey70,
39
+ grey5782: primitives.grey82,
40
+ grey100100: primitives.grey100,
41
+ grey100100op75: primitives.grey100op75,
42
+ grey125125: primitives.grey125,
43
+
44
+ blue1212: primitives.blue12,
45
+ blue4570: primitives.blue70,
46
+ blue5782: primitives.blue82,
47
+
48
+ green1212: primitives.green12,
49
+ green4570: primitives.green70,
50
+ green5782: primitives.green82,
51
+
52
+ orange1212: primitives.orange12,
53
+ orange3045: primitives.orange45,
54
+ orange4570: primitives.orange70,
55
+ orange5782: primitives.orange82,
56
+
57
+ red1212: primitives.red12,
58
+ red4570: primitives.red70,
59
+ red5782: primitives.red82
43
60
  }
44
61
 
45
- const colors: Colors = Object.freeze(functionalColors(baseColors))
62
+ const ui: UI = getUIColors(contrasts)
46
63
 
64
+ const colors = { primitives, contrasts, ui }
47
65
  export default colors
48
66
  export { colors }
@@ -22,13 +22,10 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- import { Forms } from '@instructure/shared-types'
25
+ import primitives from './primitves'
26
26
 
27
- const forms: Forms = Object.freeze({
28
- inputHeightSmall: '2rem',
29
- inputHeightMedium: '2.75rem',
30
- inputHeightLarge: '3.375rem'
31
- } as const)
27
+ const colors = {
28
+ primitives
29
+ }
32
30
 
33
- export default forms
34
- export { forms }
31
+ export default colors
@@ -22,19 +22,48 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- import { canvas } from '../canvas'
26
- import { colors } from './colors'
27
- import { forms } from './forms'
28
- import { spacing } from './spacing'
29
- import { typography } from './typography'
30
-
31
- const instructure = {
32
- ...canvas,
33
- colors,
34
- forms,
35
- spacing,
36
- typography
25
+ import { Primitives } from '@instructure/shared-types'
26
+
27
+ const primitives: Primitives = {
28
+ white: '#FFFFFF',
29
+ white10op75: '#FFFFFFBF',
30
+
31
+ grey11: '#F2F4F4',
32
+ grey12: '#E8EAEC',
33
+ grey14: '#D7DADE',
34
+ grey24: '#9EA6AD',
35
+ grey45: '#6A7883',
36
+ grey57: '#586874',
37
+ grey70: '#4A5B68',
38
+ grey82: '#3F515E',
39
+ grey100: '#334451',
40
+ grey100op75: '#334451BF',
41
+ grey125: '#273540',
42
+
43
+ blue12: '#E0EBF5',
44
+ blue45: '#2B7ABC',
45
+ blue57: '#0E68B3',
46
+ blue70: '#0A5A9E',
47
+ blue82: '#09508C',
48
+
49
+ green12: '#DCEEE4',
50
+ green45: '#03893D',
51
+ green57: '#027634',
52
+ green70: '#02672D',
53
+ green82: '#015B28',
54
+
55
+ orange12: '#FCE5D9',
56
+ orange30: '#F06E26',
57
+ orange45: '#CF4A00',
58
+ orange57: '#B34000',
59
+ orange70: '#9C3800',
60
+ orange82: '#8B3200',
61
+
62
+ red12: '#FCE4E5',
63
+ red45: '#E62429',
64
+ red57: '#C71F23',
65
+ red70: '#AE1B1F',
66
+ red82: '#9B181C'
37
67
  }
38
68
 
39
- export default instructure
40
- export { instructure }
69
+ export default primitives
package/src/index.ts CHANGED
@@ -24,7 +24,6 @@
24
24
 
25
25
  import { canvas } from './canvas'
26
26
  import { canvasHighContrast } from './canvasHighContrast'
27
- import { instructure } from './instructure'
28
- import { functionalColors } from './utils/functionalColors'
27
+ import primitives from './common/colors/primitves'
29
28
 
30
- export { canvas, canvasHighContrast, instructure, functionalColors }
29
+ export { canvas, canvasHighContrast, primitives }
@@ -22,19 +22,33 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- import { Spacing } from '@instructure/shared-types'
25
+ import type { Contrasts, UI } from '@instructure/shared-types'
26
26
 
27
- const spacing: Spacing = Object.freeze({
28
- xxxSmall: '0.125rem',
29
- xxSmall: '0.375rem',
30
- xSmall: '0.75rem',
31
- small: '1rem',
32
- mediumSmall: '1.25rem',
33
- medium: '1.5rem',
34
- large: '2.25rem',
35
- xLarge: '3rem',
36
- xxLarge: '3.75rem'
27
+ export const getUIColors = (contrasts: Contrasts): UI => ({
28
+ surfacePagePrimary: contrasts?.white1010,
29
+ surfacePageSecondary: contrasts?.grey1111,
30
+ surfaceCardPrimary: contrasts?.white1010,
31
+ surfaceCardSecondary: contrasts?.grey1111,
32
+ surfaceDark: contrasts?.grey100100,
33
+
34
+ textTitle: contrasts?.grey125125,
35
+ textDescription: contrasts?.grey125125,
36
+ textBody: contrasts?.grey125125,
37
+ textTimestamp: contrasts?.grey5782,
38
+ textAuthor: contrasts?.grey5782,
39
+ textDatapoint: contrasts?.grey5782,
40
+ textLink: contrasts?.blue4570,
41
+ textPlaceholder: contrasts?.grey2424,
42
+ textSuccess: contrasts?.green4570,
43
+ textWarning: contrasts?.orange4570,
44
+ textError: contrasts?.red4570,
45
+
46
+ lineStroke: contrasts?.grey1424,
47
+ lineDivider: contrasts?.grey1214,
48
+
49
+ surfaceOverlayGrey: contrasts?.grey100100op75,
50
+ surfaceOverlayWhite: contrasts?.white1010op75,
51
+ surfaceDivider: contrasts?.grey1424
37
52
  })
38
53
 
39
- export default spacing
40
- export { spacing }
54
+ export default getUIColors
@@ -1,55 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
3
 
4
- $instui-canvas-colors-brand: #0374B5;
5
- $instui-canvas-colors-link: #0374B5;
6
- $instui-canvas-colors-electric: #0374B5;
7
- $instui-canvas-colors-shamrock: #0B874B;
8
- $instui-canvas-colors-barney: #BF32A4;
9
- $instui-canvas-colors-crimson: #E0061F;
10
- $instui-canvas-colors-fire: #FC5E13;
11
- $instui-canvas-colors-licorice: #2D3B45;
12
- $instui-canvas-colors-oxford: #394B58;
13
- $instui-canvas-colors-ash: #6B7780;
14
- $instui-canvas-colors-slate: #8B969E;
15
- $instui-canvas-colors-tiara: #C7CDD1;
16
- $instui-canvas-colors-porcelain: #F5F5F5;
17
- $instui-canvas-colors-white: #FFFFFF;
18
- $instui-canvas-colors-text-darkest: #2D3B45;
19
- $instui-canvas-colors-text-dark: #6B7780;
20
- $instui-canvas-colors-text-light: #F5F5F5;
21
- $instui-canvas-colors-text-lightest: #FFFFFF;
22
- $instui-canvas-colors-text-brand: #0374B5;
23
- $instui-canvas-colors-text-link: #0374B5;
24
- $instui-canvas-colors-text-alert: #BF32A4;
25
- $instui-canvas-colors-text-info: #0374B5;
26
- $instui-canvas-colors-text-success: #0B874B;
27
- $instui-canvas-colors-text-danger: #E0061F;
28
- $instui-canvas-colors-text-warning: #FC5E13;
29
- $instui-canvas-colors-background-darkest: #2D3B45;
30
- $instui-canvas-colors-background-dark: #6B7780;
31
- $instui-canvas-colors-background-medium: #C7CDD1;
32
- $instui-canvas-colors-background-light: #F5F5F5;
33
- $instui-canvas-colors-background-lightest: #FFFFFF;
34
- $instui-canvas-colors-background-brand: #0374B5;
35
- $instui-canvas-colors-background-brand-secondary: #394B58;
36
- $instui-canvas-colors-background-alert: #BF32A4;
37
- $instui-canvas-colors-background-info: #0374B5;
38
- $instui-canvas-colors-background-success: #0B874B;
39
- $instui-canvas-colors-background-danger: #E0061F;
40
- $instui-canvas-colors-background-warning: #FC5E13;
41
- $instui-canvas-colors-border-lightest: #FFFFFF;
42
- $instui-canvas-colors-border-light: #F5F5F5;
43
- $instui-canvas-colors-border-medium: #C7CDD1;
44
- $instui-canvas-colors-border-dark: #6B7780;
45
- $instui-canvas-colors-border-darkest: #2D3B45;
46
- $instui-canvas-colors-border-brand: #0374B5;
47
- $instui-canvas-colors-border-alert: #BF32A4;
48
- $instui-canvas-colors-border-info: #0374B5;
49
- $instui-canvas-colors-border-success: #0B874B;
50
- $instui-canvas-colors-border-danger: #E0061F;
51
- $instui-canvas-colors-border-warning: #FC5E13;
52
- $instui-canvas-colors-border-debug: #E0061F;
53
4
  $instui-canvas-borders-radius-small: 0.125rem;
54
5
  $instui-canvas-borders-radius-medium: 0.25rem;
55
6
  $instui-canvas-borders-radius-large: 0.5rem;
@@ -1 +1 @@
1
- {"colors":{"brand":{"value":"#0374B5"},"link":{"value":"#0374B5"},"electric":{"value":"#0374B5"},"shamrock":{"value":"#0B874B"},"barney":{"value":"#BF32A4"},"crimson":{"value":"#E0061F"},"fire":{"value":"#FC5E13"},"licorice":{"value":"#2D3B45"},"oxford":{"value":"#394B58"},"ash":{"value":"#6B7780"},"slate":{"value":"#8B969E"},"tiara":{"value":"#C7CDD1"},"porcelain":{"value":"#F5F5F5"},"white":{"value":"#FFFFFF"},"textDarkest":{"value":"#2D3B45"},"textDark":{"value":"#6B7780"},"textLight":{"value":"#F5F5F5"},"textLightest":{"value":"#FFFFFF"},"textBrand":{"value":"#0374B5"},"textLink":{"value":"#0374B5"},"textAlert":{"value":"#BF32A4"},"textInfo":{"value":"#0374B5"},"textSuccess":{"value":"#0B874B"},"textDanger":{"value":"#E0061F"},"textWarning":{"value":"#FC5E13"},"backgroundDarkest":{"value":"#2D3B45"},"backgroundDark":{"value":"#6B7780"},"backgroundMedium":{"value":"#C7CDD1"},"backgroundLight":{"value":"#F5F5F5"},"backgroundLightest":{"value":"#FFFFFF"},"backgroundBrand":{"value":"#0374B5"},"backgroundBrandSecondary":{"value":"#394B58"},"backgroundAlert":{"value":"#BF32A4"},"backgroundInfo":{"value":"#0374B5"},"backgroundSuccess":{"value":"#0B874B"},"backgroundDanger":{"value":"#E0061F"},"backgroundWarning":{"value":"#FC5E13"},"borderLightest":{"value":"#FFFFFF"},"borderLight":{"value":"#F5F5F5"},"borderMedium":{"value":"#C7CDD1"},"borderDark":{"value":"#6B7780"},"borderDarkest":{"value":"#2D3B45"},"borderBrand":{"value":"#0374B5"},"borderAlert":{"value":"#BF32A4"},"borderInfo":{"value":"#0374B5"},"borderSuccess":{"value":"#0B874B"},"borderDanger":{"value":"#E0061F"},"borderWarning":{"value":"#FC5E13"},"borderDebug":{"value":"#E0061F"}},"borders":{"radiusSmall":{"value":"0.125rem"},"radiusMedium":{"value":"0.25rem"},"radiusLarge":{"value":"0.5rem"},"widthSmall":{"value":"0.0625rem"},"widthMedium":{"value":"0.125rem"},"widthLarge":{"value":"0.25rem"},"style":{"value":"solid"}},"transitions":{"duration":{"value":"300ms"},"timing":{"value":"ease-in-out"}},"typography":{"fontFamily":{"value":"LatoWeb, Lato, \"Helvetica Neue\", Helvetica, Arial, sans-serif"},"fontFamilyMonospace":{"value":"Menlo, Consolas, Monaco, \"Andale Mono\", monospace"},"fontSizeXSmall":{"value":"0.75rem"},"fontSizeSmall":{"value":"0.875rem"},"fontSizeMedium":{"value":"1rem"},"fontSizeLarge":{"value":"1.375rem"},"fontSizeXLarge":{"value":"1.75rem"},"fontSizeXXLarge":{"value":"2.375rem"},"fontWeightLight":{"value":300},"fontWeightNormal":{"value":400},"fontWeightBold":{"value":700},"lineHeight":{"value":1.5},"lineHeightFit":{"value":1.125},"lineHeightCondensed":{"value":1.25},"lineHeightDouble":{"value":2},"letterSpacingNormal":{"value":0},"letterSpacingCondensed":{"value":"-0.0625rem"},"letterSpacingExpanded":{"value":"0.0625rem"}},"spacing":{"xxxSmall":{"value":"0.125rem"},"xxSmall":{"value":"0.375rem"},"xSmall":{"value":"0.5rem"},"small":{"value":"0.75rem"},"mediumSmall":{"value":"1rem"},"medium":{"value":"1.5rem"},"large":{"value":"2.25rem"},"xLarge":{"value":"3rem"},"xxLarge":{"value":"3.75rem"}},"forms":{"inputHeightSmall":{"value":"1.75rem"},"inputHeightMedium":{"value":"2.375rem"},"inputHeightLarge":{"value":"3rem"}},"breakpoints":{"xxSmall":{"value":"8em"},"xSmall":{"value":"16em"},"small":{"value":"30em"},"medium":{"value":"48em"},"tablet":{"value":"48em"},"large":{"value":"62em"},"desktop":{"value":"64em"},"xLarge":{"value":"75em"},"maxWidth":{"value":"61.9375em"}},"shadows":{"depth1":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"depth2":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"depth3":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"},"resting":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"above":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"topmost":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"}},"stacking":{"topmost":{"value":9999},"above":{"value":1},"below":{"value":-1},"deepest":{"value":-9999}}}
1
+ {"colors":{},"borders":{"radiusSmall":{"value":"0.125rem"},"radiusMedium":{"value":"0.25rem"},"radiusLarge":{"value":"0.5rem"},"widthSmall":{"value":"0.0625rem"},"widthMedium":{"value":"0.125rem"},"widthLarge":{"value":"0.25rem"},"style":{"value":"solid"}},"transitions":{"duration":{"value":"300ms"},"timing":{"value":"ease-in-out"}},"typography":{"fontFamily":{"value":"LatoWeb, Lato, \"Helvetica Neue\", Helvetica, Arial, sans-serif"},"fontFamilyMonospace":{"value":"Menlo, Consolas, Monaco, \"Andale Mono\", monospace"},"fontSizeXSmall":{"value":"0.75rem"},"fontSizeSmall":{"value":"0.875rem"},"fontSizeMedium":{"value":"1rem"},"fontSizeLarge":{"value":"1.375rem"},"fontSizeXLarge":{"value":"1.75rem"},"fontSizeXXLarge":{"value":"2.375rem"},"fontWeightLight":{"value":300},"fontWeightNormal":{"value":400},"fontWeightBold":{"value":700},"lineHeight":{"value":1.5},"lineHeightFit":{"value":1.125},"lineHeightCondensed":{"value":1.25},"lineHeightDouble":{"value":2},"letterSpacingNormal":{"value":0},"letterSpacingCondensed":{"value":"-0.0625rem"},"letterSpacingExpanded":{"value":"0.0625rem"}},"spacing":{"xxxSmall":{"value":"0.125rem"},"xxSmall":{"value":"0.375rem"},"xSmall":{"value":"0.5rem"},"small":{"value":"0.75rem"},"mediumSmall":{"value":"1rem"},"medium":{"value":"1.5rem"},"large":{"value":"2.25rem"},"xLarge":{"value":"3rem"},"xxLarge":{"value":"3.75rem"}},"forms":{"inputHeightSmall":{"value":"1.75rem"},"inputHeightMedium":{"value":"2.375rem"},"inputHeightLarge":{"value":"3rem"}},"breakpoints":{"xxSmall":{"value":"8em"},"xSmall":{"value":"16em"},"small":{"value":"30em"},"medium":{"value":"48em"},"tablet":{"value":"48em"},"large":{"value":"62em"},"desktop":{"value":"64em"},"xLarge":{"value":"75em"},"maxWidth":{"value":"61.9375em"}},"shadows":{"depth1":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"depth2":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"depth3":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"},"resting":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"above":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"topmost":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"}},"stacking":{"topmost":{"value":9999},"above":{"value":1},"below":{"value":-1},"deepest":{"value":-9999}}}
@@ -1,55 +1,6 @@
1
1
 
2
2
  // Do not edit directly, this file was auto-generated.
3
3
 
4
- $instui-canvas-high-contrast-colors-brand: #0770A3;
5
- $instui-canvas-high-contrast-colors-link: #0770A3;
6
- $instui-canvas-high-contrast-colors-electric: #0770A3;
7
- $instui-canvas-high-contrast-colors-shamrock: #127A1B;
8
- $instui-canvas-high-contrast-colors-barney: #B8309E;
9
- $instui-canvas-high-contrast-colors-crimson: #D01A19;
10
- $instui-canvas-high-contrast-colors-fire: #C23C0D;
11
- $instui-canvas-high-contrast-colors-licorice: #2D3B45;
12
- $instui-canvas-high-contrast-colors-oxford: #394B58;
13
- $instui-canvas-high-contrast-colors-ash: #556572;
14
- $instui-canvas-high-contrast-colors-slate: #556572;
15
- $instui-canvas-high-contrast-colors-tiara: #556572;
16
- $instui-canvas-high-contrast-colors-porcelain: #FFFFFF;
17
- $instui-canvas-high-contrast-colors-white: #FFFFFF;
18
- $instui-canvas-high-contrast-colors-text-darkest: #2D3B45;
19
- $instui-canvas-high-contrast-colors-text-dark: #556572;
20
- $instui-canvas-high-contrast-colors-text-light: #FFFFFF;
21
- $instui-canvas-high-contrast-colors-text-lightest: #FFFFFF;
22
- $instui-canvas-high-contrast-colors-text-brand: #0770A3;
23
- $instui-canvas-high-contrast-colors-text-link: #0770A3;
24
- $instui-canvas-high-contrast-colors-text-alert: #B8309E;
25
- $instui-canvas-high-contrast-colors-text-info: #0770A3;
26
- $instui-canvas-high-contrast-colors-text-success: #127A1B;
27
- $instui-canvas-high-contrast-colors-text-danger: #D01A19;
28
- $instui-canvas-high-contrast-colors-text-warning: #C23C0D;
29
- $instui-canvas-high-contrast-colors-background-darkest: #2D3B45;
30
- $instui-canvas-high-contrast-colors-background-dark: #556572;
31
- $instui-canvas-high-contrast-colors-background-medium: #556572;
32
- $instui-canvas-high-contrast-colors-background-light: #FFFFFF;
33
- $instui-canvas-high-contrast-colors-background-lightest: #FFFFFF;
34
- $instui-canvas-high-contrast-colors-background-brand: #0770A3;
35
- $instui-canvas-high-contrast-colors-background-brand-secondary: #394B58;
36
- $instui-canvas-high-contrast-colors-background-alert: #B8309E;
37
- $instui-canvas-high-contrast-colors-background-info: #0770A3;
38
- $instui-canvas-high-contrast-colors-background-success: #127A1B;
39
- $instui-canvas-high-contrast-colors-background-danger: #D01A19;
40
- $instui-canvas-high-contrast-colors-background-warning: #C23C0D;
41
- $instui-canvas-high-contrast-colors-border-lightest: #FFFFFF;
42
- $instui-canvas-high-contrast-colors-border-light: #FFFFFF;
43
- $instui-canvas-high-contrast-colors-border-medium: #556572;
44
- $instui-canvas-high-contrast-colors-border-dark: #556572;
45
- $instui-canvas-high-contrast-colors-border-darkest: #2D3B45;
46
- $instui-canvas-high-contrast-colors-border-brand: #0770A3;
47
- $instui-canvas-high-contrast-colors-border-alert: #B8309E;
48
- $instui-canvas-high-contrast-colors-border-info: #0770A3;
49
- $instui-canvas-high-contrast-colors-border-success: #127A1B;
50
- $instui-canvas-high-contrast-colors-border-danger: #D01A19;
51
- $instui-canvas-high-contrast-colors-border-warning: #C23C0D;
52
- $instui-canvas-high-contrast-colors-border-debug: #D01A19;
53
4
  $instui-canvas-high-contrast-borders-radius-small: 0.125rem;
54
5
  $instui-canvas-high-contrast-borders-radius-medium: 0.25rem;
55
6
  $instui-canvas-high-contrast-borders-radius-large: 0.5rem;
@@ -1 +1 @@
1
- {"colors":{"brand":{"value":"#0770A3"},"link":{"value":"#0770A3"},"electric":{"value":"#0770A3"},"shamrock":{"value":"#127A1B"},"barney":{"value":"#B8309E"},"crimson":{"value":"#D01A19"},"fire":{"value":"#C23C0D"},"licorice":{"value":"#2D3B45"},"oxford":{"value":"#394B58"},"ash":{"value":"#556572"},"slate":{"value":"#556572"},"tiara":{"value":"#556572"},"porcelain":{"value":"#FFFFFF"},"white":{"value":"#FFFFFF"},"textDarkest":{"value":"#2D3B45"},"textDark":{"value":"#556572"},"textLight":{"value":"#FFFFFF"},"textLightest":{"value":"#FFFFFF"},"textBrand":{"value":"#0770A3"},"textLink":{"value":"#0770A3"},"textAlert":{"value":"#B8309E"},"textInfo":{"value":"#0770A3"},"textSuccess":{"value":"#127A1B"},"textDanger":{"value":"#D01A19"},"textWarning":{"value":"#C23C0D"},"backgroundDarkest":{"value":"#2D3B45"},"backgroundDark":{"value":"#556572"},"backgroundMedium":{"value":"#556572"},"backgroundLight":{"value":"#FFFFFF"},"backgroundLightest":{"value":"#FFFFFF"},"backgroundBrand":{"value":"#0770A3"},"backgroundBrandSecondary":{"value":"#394B58"},"backgroundAlert":{"value":"#B8309E"},"backgroundInfo":{"value":"#0770A3"},"backgroundSuccess":{"value":"#127A1B"},"backgroundDanger":{"value":"#D01A19"},"backgroundWarning":{"value":"#C23C0D"},"borderLightest":{"value":"#FFFFFF"},"borderLight":{"value":"#FFFFFF"},"borderMedium":{"value":"#556572"},"borderDark":{"value":"#556572"},"borderDarkest":{"value":"#2D3B45"},"borderBrand":{"value":"#0770A3"},"borderAlert":{"value":"#B8309E"},"borderInfo":{"value":"#0770A3"},"borderSuccess":{"value":"#127A1B"},"borderDanger":{"value":"#D01A19"},"borderWarning":{"value":"#C23C0D"},"borderDebug":{"value":"#D01A19"}},"borders":{"radiusSmall":{"value":"0.125rem"},"radiusMedium":{"value":"0.25rem"},"radiusLarge":{"value":"0.5rem"},"widthSmall":{"value":"0.0625rem"},"widthMedium":{"value":"0.125rem"},"widthLarge":{"value":"0.25rem"},"style":{"value":"solid"}},"transitions":{"duration":{"value":"300ms"},"timing":{"value":"ease-in-out"}},"typography":{"fontFamily":{"value":"LatoWeb, Lato, \"Helvetica Neue\", Helvetica, Arial, sans-serif"},"fontFamilyMonospace":{"value":"Menlo, Consolas, Monaco, \"Andale Mono\", monospace"},"fontSizeXSmall":{"value":"0.75rem"},"fontSizeSmall":{"value":"0.875rem"},"fontSizeMedium":{"value":"1rem"},"fontSizeLarge":{"value":"1.375rem"},"fontSizeXLarge":{"value":"1.75rem"},"fontSizeXXLarge":{"value":"2.375rem"},"fontWeightLight":{"value":300},"fontWeightNormal":{"value":400},"fontWeightBold":{"value":700},"lineHeight":{"value":1.5},"lineHeightFit":{"value":1.125},"lineHeightCondensed":{"value":1.25},"lineHeightDouble":{"value":2},"letterSpacingNormal":{"value":0},"letterSpacingCondensed":{"value":"-0.0625rem"},"letterSpacingExpanded":{"value":"0.0625rem"}},"spacing":{"xxxSmall":{"value":"0.125rem"},"xxSmall":{"value":"0.375rem"},"xSmall":{"value":"0.5rem"},"small":{"value":"0.75rem"},"mediumSmall":{"value":"1rem"},"medium":{"value":"1.5rem"},"large":{"value":"2.25rem"},"xLarge":{"value":"3rem"},"xxLarge":{"value":"3.75rem"}},"forms":{"inputHeightSmall":{"value":"1.75rem"},"inputHeightMedium":{"value":"2.375rem"},"inputHeightLarge":{"value":"3rem"}},"breakpoints":{"xxSmall":{"value":"8em"},"xSmall":{"value":"16em"},"small":{"value":"30em"},"medium":{"value":"48em"},"tablet":{"value":"48em"},"large":{"value":"62em"},"desktop":{"value":"64em"},"xLarge":{"value":"75em"},"maxWidth":{"value":"61.9375em"}},"shadows":{"depth1":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"depth2":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"depth3":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"},"resting":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"above":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"topmost":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"}},"stacking":{"topmost":{"value":9999},"above":{"value":1},"below":{"value":-1},"deepest":{"value":-9999}}}
1
+ {"colors":{},"borders":{"radiusSmall":{"value":"0.125rem"},"radiusMedium":{"value":"0.25rem"},"radiusLarge":{"value":"0.5rem"},"widthSmall":{"value":"0.0625rem"},"widthMedium":{"value":"0.125rem"},"widthLarge":{"value":"0.25rem"},"style":{"value":"solid"}},"transitions":{"duration":{"value":"300ms"},"timing":{"value":"ease-in-out"}},"typography":{"fontFamily":{"value":"LatoWeb, Lato, \"Helvetica Neue\", Helvetica, Arial, sans-serif"},"fontFamilyMonospace":{"value":"Menlo, Consolas, Monaco, \"Andale Mono\", monospace"},"fontSizeXSmall":{"value":"0.75rem"},"fontSizeSmall":{"value":"0.875rem"},"fontSizeMedium":{"value":"1rem"},"fontSizeLarge":{"value":"1.375rem"},"fontSizeXLarge":{"value":"1.75rem"},"fontSizeXXLarge":{"value":"2.375rem"},"fontWeightLight":{"value":300},"fontWeightNormal":{"value":400},"fontWeightBold":{"value":700},"lineHeight":{"value":1.5},"lineHeightFit":{"value":1.125},"lineHeightCondensed":{"value":1.25},"lineHeightDouble":{"value":2},"letterSpacingNormal":{"value":0},"letterSpacingCondensed":{"value":"-0.0625rem"},"letterSpacingExpanded":{"value":"0.0625rem"}},"spacing":{"xxxSmall":{"value":"0.125rem"},"xxSmall":{"value":"0.375rem"},"xSmall":{"value":"0.5rem"},"small":{"value":"0.75rem"},"mediumSmall":{"value":"1rem"},"medium":{"value":"1.5rem"},"large":{"value":"2.25rem"},"xLarge":{"value":"3rem"},"xxLarge":{"value":"3.75rem"}},"forms":{"inputHeightSmall":{"value":"1.75rem"},"inputHeightMedium":{"value":"2.375rem"},"inputHeightLarge":{"value":"3rem"}},"breakpoints":{"xxSmall":{"value":"8em"},"xSmall":{"value":"16em"},"small":{"value":"30em"},"medium":{"value":"48em"},"tablet":{"value":"48em"},"large":{"value":"62em"},"desktop":{"value":"64em"},"xLarge":{"value":"75em"},"maxWidth":{"value":"61.9375em"}},"shadows":{"depth1":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"depth2":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"depth3":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"},"resting":{"value":"0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)"},"above":{"value":"0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16)"},"topmost":{"value":"0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25)"}},"stacking":{"topmost":{"value":9999},"above":{"value":1},"below":{"value":-1},"deepest":{"value":-9999}}}