@helsenorge/designsystem-react 10.6.0 → 10.6.2

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.
Files changed (73) hide show
  1. package/CHANGELOG.md +852 -1402
  2. package/components/AnchorLink/styles.module.scss +9 -8
  3. package/components/Avatar/styles.module.scss +9 -9
  4. package/components/Badge/styles.module.scss +9 -9
  5. package/components/Button/styles.module.scss +59 -65
  6. package/components/Checkbox/styles.module.scss +103 -103
  7. package/components/Chip/styles.module.scss +22 -22
  8. package/components/Close/styles.module.scss +4 -4
  9. package/components/DictionaryTrigger/styles.module.scss +5 -5
  10. package/components/Drawer/styles.module.scss +16 -16
  11. package/components/Dropdown/styles.module.scss +51 -51
  12. package/components/Duolist/styles.module.scss +4 -5
  13. package/components/EmptyState/styles.module.scss +12 -12
  14. package/components/Expander/styles.module.scss +46 -46
  15. package/components/ExpanderHierarchy/expander.module.scss +29 -29
  16. package/components/ExpanderHierarchy/styles.module.scss +5 -4
  17. package/components/ExpanderList/styles.module.scss +30 -30
  18. package/components/EyebrowHeader/styles.module.scss +2 -0
  19. package/components/FormGroup/styles.module.scss +9 -9
  20. package/components/FormLayout/styles.module.scss +5 -4
  21. package/components/HelpBubble/styles.module.scss +13 -13
  22. package/components/HelpPanel/styles.module.scss +2 -2
  23. package/components/HelpQuestion/styles.module.scss +19 -19
  24. package/components/HighlightPanel/styles.module.scss +20 -20
  25. package/components/HorizontalScroll/styles.module.scss +3 -4
  26. package/components/Input/styles.module.scss +12 -12
  27. package/components/Label/styles.module.scss +15 -15
  28. package/components/LinkList/styles.module.scss +33 -33
  29. package/components/ListHeader/styles.module.scss +8 -8
  30. package/components/Loader/styles.module.scss +14 -14
  31. package/components/MaxCharacters/styles.module.scss +11 -11
  32. package/components/Modal/styles.module.scss +34 -34
  33. package/components/NotificationPanel/styles.module.scss +33 -33
  34. package/components/Panel/styles.module.scss +45 -45
  35. package/components/PanelList/styles.module.scss +5 -5
  36. package/components/PopMenu/styles.module.scss +15 -15
  37. package/components/PopOver/styles.module.scss +14 -13
  38. package/components/PopOver/styles.module.scss.d.ts +3 -0
  39. package/components/Progressbar/styles.module.scss +4 -4
  40. package/components/PromoPanel/styles.module.scss +22 -22
  41. package/components/RadioButton/styles.module.scss +99 -99
  42. package/components/Select/styles.module.scss +21 -21
  43. package/components/ServiceMessage/styles.module.scss +49 -49
  44. package/components/SharingStatus/styles.module.scss +13 -13
  45. package/components/Slider/styles.module.scss +24 -24
  46. package/components/Spacer/styles.module.scss +14 -14
  47. package/components/StatusDot/styles.module.scss +22 -22
  48. package/components/Step/styles.module.scss +3 -3
  49. package/components/StepButtons/styles.module.scss +9 -9
  50. package/components/Stepper/styles.module.scss +15 -23
  51. package/components/StickyNote/styles.module.scss +3 -3
  52. package/components/Table/styles.module.scss +32 -32
  53. package/components/Tabs/TabList/styles.module.scss +1 -1
  54. package/components/Tabs/TabPanel/styles.module.scss +5 -5
  55. package/components/Tabs/styles.module.scss +1 -1
  56. package/components/Tag/styles.module.scss +16 -16
  57. package/components/TagList/styles.module.scss +4 -4
  58. package/components/Textarea/styles.module.scss +9 -9
  59. package/components/Tile/styles.module.scss +25 -25
  60. package/components/Title/styles.module.scss +8 -8
  61. package/components/Toggle/styles.module.scss +14 -14
  62. package/components/Tooltip/TooltipWord/styles.module.scss +4 -4
  63. package/components/Trigger/styles.module.scss +21 -21
  64. package/components/Validation/styles.module.scss +10 -10
  65. package/package.json +1 -1
  66. package/scss/_body.scss +6 -5
  67. package/scss/_breakpoints.scss +2 -2
  68. package/scss/_font-mixins.scss +2 -2
  69. package/scss/_fonts.scss +2 -0
  70. package/scss/_input.scss +50 -53
  71. package/scss/_print.scss +2 -2
  72. package/scss/layout.module.scss +2 -2
  73. package/scss/typography.module.scss +43 -44
@@ -1,9 +1,9 @@
1
1
  @use 'sass:map';
2
- @use '../../scss/spacers' as spacers;
3
- @use '../../scss/palette' as palette;
4
- @use '../../scss/font-settings' as font-settings;
5
- @use '../../scss/screen-reader' as *;
6
- @use '../../scss/breakpoints' as *;
2
+ @import '../../scss/spacers';
3
+ @import '../../scss/breakpoints';
4
+ @import '../../scss/palette';
5
+ @import '../../scss/font-settings';
6
+ @import '../../scss/screen-reader';
7
7
 
8
8
  .dropdown {
9
9
  position: relative;
@@ -20,14 +20,14 @@
20
20
  border-radius: 0;
21
21
  border-width: 2px;
22
22
  border-style: solid;
23
- padding: 0 spacers.getSpacer(3xs) 0 spacers.getSpacer(s);
23
+ padding: 0 getSpacer(3xs) 0 getSpacer(s);
24
24
  font-family: inherit;
25
- font-size: font-settings.$font-size-sm;
25
+ font-size: $font-size-sm;
26
26
  line-height: 1.3rem; // Custom fordi teksten skal henge bedre sammen om den går over to linjer
27
27
 
28
28
  @media (min-width: map.get($grid-breakpoints, md)) {
29
- padding: spacers.getSpacer(3xs) spacers.getSpacer(3xs) spacers.getSpacer(3xs) spacers.getSpacer(s);
30
- font-size: font-settings.$font-size-md;
29
+ padding: getSpacer(3xs) getSpacer(3xs) getSpacer(3xs) getSpacer(s);
30
+ font-size: $font-size-md;
31
31
  line-height: 1.5rem;
32
32
  }
33
33
 
@@ -37,80 +37,80 @@
37
37
 
38
38
  &:disabled {
39
39
  cursor: initial;
40
- color: palette.$neutral700;
40
+ color: $neutral700;
41
41
  background-color: transparent;
42
- border-color: palette.$neutral600;
42
+ border-color: $neutral600;
43
43
  border-style: dashed;
44
44
  }
45
45
 
46
46
  &--on-white,
47
47
  &--on-grey {
48
- border-color: palette.$neutral700;
49
- background-color: palette.$white;
48
+ border-color: $neutral700;
49
+ background-color: $white;
50
50
 
51
51
  &:hover {
52
- background-color: palette.$neutral50;
53
- box-shadow: 0 0 0 1px palette.$neutral700;
52
+ background-color: $neutral50;
53
+ box-shadow: 0 0 0 1px $neutral700;
54
54
  }
55
55
 
56
56
  &:focus {
57
- border-color: palette.$black;
58
- box-shadow: 0 0 0 1px palette.$black;
57
+ border-color: $black;
58
+ box-shadow: 0 0 0 1px $black;
59
59
  }
60
60
  }
61
61
 
62
62
  &--on-blueberry {
63
- border-color: palette.$blueberry500;
64
- background-color: palette.$white;
63
+ border-color: $blueberry500;
64
+ background-color: $white;
65
65
 
66
66
  &:hover {
67
- background-color: palette.$blueberry50;
68
- box-shadow: 0 0 0 1px palette.$blueberry500;
67
+ background-color: $blueberry50;
68
+ box-shadow: 0 0 0 1px $blueberry500;
69
69
  }
70
70
 
71
71
  &:focus {
72
- border-color: palette.$black;
73
- box-shadow: 0 0 0 1px palette.$black;
72
+ border-color: $black;
73
+ box-shadow: 0 0 0 1px $black;
74
74
  }
75
75
  }
76
76
 
77
77
  &--on-cherry {
78
- border-color: palette.$cherry500;
79
- background-color: palette.$white;
78
+ border-color: $cherry500;
79
+ background-color: $white;
80
80
 
81
81
  &:hover {
82
- background-color: palette.$cherry50;
83
- box-shadow: 0 0 0 1px palette.$cherry500;
82
+ background-color: $cherry50;
83
+ box-shadow: 0 0 0 1px $cherry500;
84
84
  }
85
85
 
86
86
  &:focus {
87
- border-color: palette.$black;
88
- box-shadow: 0 0 0 1px palette.$black;
87
+ border-color: $black;
88
+ box-shadow: 0 0 0 1px $black;
89
89
  }
90
90
  }
91
91
 
92
92
  &--open#{&}--on-white,
93
93
  &--open#{&}--on-grey {
94
- background-color: palette.$neutral50;
94
+ background-color: $neutral50;
95
95
 
96
96
  &:hover {
97
- background-color: palette.$white;
97
+ background-color: $white;
98
98
  }
99
99
  }
100
100
 
101
101
  &--open#{&}--on-blueberry {
102
- background-color: palette.$blueberry50;
102
+ background-color: $blueberry50;
103
103
 
104
104
  &:hover {
105
- background-color: palette.$white;
105
+ background-color: $white;
106
106
  }
107
107
  }
108
108
 
109
109
  &--open#{&}--on-cherry {
110
- background-color: palette.$cherry50;
110
+ background-color: $cherry50;
111
111
 
112
112
  &:hover {
113
- background-color: palette.$white;
113
+ background-color: $white;
114
114
  }
115
115
  }
116
116
 
@@ -120,24 +120,24 @@
120
120
 
121
121
  &--transparent#{&}--on-grey {
122
122
  &:hover {
123
- background-color: palette.$neutral100;
123
+ background-color: $neutral100;
124
124
  }
125
125
  }
126
126
 
127
127
  &--transparent#{&}--on-blueberry {
128
128
  &:hover {
129
- background-color: palette.$blueberry100;
129
+ background-color: $blueberry100;
130
130
  }
131
131
  }
132
132
 
133
133
  &--transparent#{&}--on-cherry {
134
134
  &:hover {
135
- background-color: palette.$cherry100;
135
+ background-color: $cherry100;
136
136
  }
137
137
  }
138
138
 
139
139
  &--transparent#{&}--open#{&}--on-grey {
140
- background-color: palette.$neutral100;
140
+ background-color: $neutral100;
141
141
 
142
142
  &:hover {
143
143
  background-color: transparent;
@@ -145,7 +145,7 @@
145
145
  }
146
146
 
147
147
  &--transparent#{&}--open#{&}--on-blueberry {
148
- background-color: palette.$blueberry100;
148
+ background-color: $blueberry100;
149
149
 
150
150
  &:hover {
151
151
  background-color: transparent;
@@ -153,7 +153,7 @@
153
153
  }
154
154
 
155
155
  &--transparent#{&}--open#{&}--on-cherry {
156
- background-color: palette.$cherry100;
156
+ background-color: $cherry100;
157
157
 
158
158
  &:hover {
159
159
  background-color: transparent;
@@ -165,24 +165,24 @@
165
165
  }
166
166
 
167
167
  &__label {
168
- padding: spacers.getSpacer(3xs) 0;
168
+ padding: getSpacer(3xs) 0;
169
169
 
170
170
  @media (min-width: map.get($grid-breakpoints, md)) {
171
- padding: spacers.getSpacer(2xs) 0;
171
+ padding: getSpacer(2xs) 0;
172
172
  }
173
173
  }
174
174
  }
175
175
 
176
176
  &__icon {
177
- margin-left: spacers.getSpacer(2xs);
177
+ margin-left: getSpacer(2xs);
178
178
  }
179
179
 
180
180
  &__content {
181
181
  display: none;
182
182
  position: absolute;
183
- background-color: palette.$white;
184
- margin-top: spacers.getSpacer(2xs);
185
- box-shadow: 0 0 0 2px palette.$blueberry500;
183
+ background-color: $white;
184
+ margin-top: getSpacer(2xs);
185
+ box-shadow: 0 0 0 2px $blueberry500;
186
186
  z-index: 1;
187
187
 
188
188
  &--open {
@@ -203,15 +203,15 @@
203
203
  }
204
204
 
205
205
  &__close {
206
- padding: spacers.getSpacer(s);
206
+ padding: getSpacer(s);
207
207
  }
208
208
 
209
209
  &__input {
210
- border-bottom: 1px solid palette.$neutral300;
211
- padding: spacers.getSpacer(2xs) spacers.getSpacer(s);
210
+ border-bottom: 1px solid $neutral300;
211
+ padding: getSpacer(2xs) getSpacer(s);
212
212
 
213
213
  @media (min-width: map.get($grid-breakpoints, md)) {
214
- padding: spacers.getSpacer(s);
214
+ padding: getSpacer(s);
215
215
  }
216
216
 
217
217
  &:last-child {
@@ -1,15 +1,14 @@
1
1
  @use 'sass:map';
2
2
  @use '../../scss/font-mixins' as fonts;
3
3
  @use '../../scss/spacers' as spacers;
4
- @use '../../scss/font-settings' as font-settings;
5
- @use '../../scss/palette' as palette;
6
- @use '../../scss/breakpoints' as *;
7
- @import '../../scss/supernova/styles/colors';
4
+ @import '../../scss/breakpoints';
5
+ @import '../../scss/font-settings';
6
+ @import '../../scss/palette';
8
7
 
9
8
  .duolist-wrapper {
10
9
  &--border {
11
10
  padding: spacers.getSpacer(s) spacers.getSpacer(s) spacers.getSpacer(l);
12
- border: 0.062rem solid palette.$neutral500;
11
+ border: 0.062rem solid $neutral500;
13
12
  }
14
13
 
15
14
  &--extra-padding-top {
@@ -1,19 +1,19 @@
1
1
  @use 'sass:map';
2
2
  @use '../../scss/font-mixins' as fonts;
3
- @use '../../scss/spacers' as spacers;
4
- @use '../../scss/breakpoints' as *;
3
+ @import '../../scss/spacers';
4
+ @import '../../scss/breakpoints';
5
5
  @import '../../scss/supernova/styles/colors';
6
6
 
7
7
  .emptystate {
8
8
  display: flex;
9
9
  flex-flow: row;
10
- gap: spacers.getSpacer(s);
11
- padding: spacers.getSpacer(s);
10
+ gap: getSpacer(s);
11
+ padding: getSpacer(s);
12
12
  align-items: center;
13
13
 
14
14
  @media (min-width: map.get($grid-breakpoints, md)) {
15
- gap: spacers.getSpacer(m);
16
- padding: spacers.getSpacer(l);
15
+ gap: getSpacer(m);
16
+ padding: getSpacer(l);
17
17
  }
18
18
 
19
19
  &--dashed {
@@ -27,15 +27,15 @@
27
27
  border: none;
28
28
 
29
29
  @media (min-width: map.get($grid-breakpoints, md)) {
30
- padding-left: spacers.getSpacer(2xs);
30
+ padding-left: getSpacer(2xs);
31
31
  }
32
32
  }
33
33
 
34
34
  &--compact {
35
35
  border-radius: 4px;
36
- gap: spacers.getSpacer(3xs);
37
- padding: spacers.getSpacer(2xs);
38
- min-height: spacers.getSpacer(2xl);
36
+ gap: getSpacer(3xs);
37
+ padding: getSpacer(2xs);
38
+ min-height: getSpacer(2xl);
39
39
  font-size: 1rem;
40
40
  font-weight: 400;
41
41
  line-height: 1.25rem;
@@ -49,10 +49,10 @@
49
49
  &__text {
50
50
  display: flex;
51
51
  flex-flow: column;
52
- gap: spacers.getSpacer(3xs);
52
+ gap: getSpacer(3xs);
53
53
 
54
54
  @media (min-width: map.get($grid-breakpoints, md)) {
55
- gap: spacers.getSpacer(xs);
55
+ gap: getSpacer(xs);
56
56
  }
57
57
  }
58
58
 
@@ -1,11 +1,11 @@
1
1
  /* stylelint-disable no-descending-specificity */
2
2
  @use 'sass:map';
3
- @use '../../scss/spacers' as spacers;
4
- @use '../../scss/palette' as palette;
5
- @use '../../scss/font-settings' as font-settings;
6
- @use '../Button/styles.module' as button;
7
- @use '../../scss/breakpoints' as *;
3
+ @import '../../scss/spacers';
4
+ @import '../../scss/breakpoints';
5
+ @import '../../scss/palette';
6
+ @import '../../scss/font-settings';
8
7
  @import '../../scss/supernova/styles/colors';
8
+ @import '../Button/styles.module';
9
9
 
10
10
  .expander {
11
11
  position: initial;
@@ -16,7 +16,7 @@
16
16
  }
17
17
 
18
18
  @media print {
19
- border: 1px solid palette.$black;
19
+ border: 1px solid $black;
20
20
  }
21
21
 
22
22
  &__icon {
@@ -24,27 +24,27 @@
24
24
  align-items: center;
25
25
 
26
26
  &--left {
27
- margin-right: spacers.getSpacer(2xs);
27
+ margin-right: getSpacer(2xs);
28
28
  }
29
29
 
30
30
  &--right {
31
31
  margin-left: auto;
32
- padding-left: spacers.getSpacer(2xs);
32
+ padding-left: getSpacer(2xs);
33
33
  }
34
34
  }
35
35
 
36
36
  &__button {
37
37
  position: relative;
38
- padding-right: spacers.getSpacer(s);
38
+ padding-right: getSpacer(s);
39
39
  text-align: left;
40
40
 
41
41
  &--expanded {
42
- @include button.outline-borderless-hover;
42
+ @include outline-borderless-hover;
43
43
  }
44
44
  }
45
45
 
46
46
  &__button &__button__text {
47
- @include button.outline-borderless-text-hover;
47
+ @include outline-borderless-text-hover;
48
48
  }
49
49
 
50
50
  &__trigger {
@@ -55,31 +55,31 @@
55
55
  align-items: center;
56
56
  border: none;
57
57
  outline: none;
58
- font-size: font-settings.$font-size-sm;
59
- line-height: font-settings.$lineheight-size-sm;
58
+ font-size: $font-size-sm;
59
+ line-height: $lineheight-size-sm;
60
60
  font-weight: 600;
61
61
  text-align: left;
62
62
 
63
63
  @media (min-width: map.get($grid-breakpoints, md)) {
64
- font-size: font-settings.$font-size-md;
65
- line-height: font-settings.$lineheight-size-md;
64
+ font-size: $font-size-md;
65
+ line-height: $lineheight-size-md;
66
66
  }
67
67
 
68
68
  &--large {
69
69
  width: 100%;
70
- padding: spacers.getSpacer(xs) spacers.getSpacer(2xs) spacers.getSpacer(xs) spacers.getSpacer(s);
70
+ padding: getSpacer(xs) getSpacer(2xs) getSpacer(xs) getSpacer(s);
71
71
  cursor: pointer;
72
72
 
73
73
  @media (min-width: map.get($grid-breakpoints, md)) {
74
- padding: spacers.getSpacer(xs) spacers.getSpacer(s) spacers.getSpacer(xs) spacers.getSpacer(l);
74
+ padding: getSpacer(xs) getSpacer(s) getSpacer(xs) getSpacer(l);
75
75
  }
76
76
  }
77
77
 
78
78
  &--icon {
79
- padding-left: spacers.getSpacer(2xs);
79
+ padding-left: getSpacer(2xs);
80
80
 
81
81
  @media (min-width: map.get($grid-breakpoints, md)) {
82
- padding-left: spacers.getSpacer(s);
82
+ padding-left: getSpacer(s);
83
83
  }
84
84
  }
85
85
 
@@ -87,22 +87,22 @@
87
87
 
88
88
  @each $color in $colors {
89
89
  &--#{$color} {
90
- background-color: map.get(palette.$palette-map, #{$color}50);
90
+ background-color: map.get($palette-map, #{$color}50);
91
91
 
92
92
  &:hover {
93
- background-color: map.get(palette.$palette-map, #{$color}100);
93
+ background-color: map.get($palette-map, #{$color}100);
94
94
  }
95
95
 
96
96
  &:focus {
97
97
  box-shadow:
98
- 0 0 0 1.5px palette.$neutral600,
99
- inset 0 0 0 1.5px palette.$neutral600;
98
+ 0 0 0 1.5px $neutral600,
99
+ inset 0 0 0 1.5px $neutral600;
100
100
  }
101
101
  &#{$trigger}--expanded {
102
- background-color: map.get(palette.$palette-map, #{$color}100);
102
+ background-color: map.get($palette-map, #{$color}100);
103
103
 
104
104
  &:hover {
105
- background-color: map.get(palette.$palette-map, #{$color}200);
105
+ background-color: map.get($palette-map, #{$color}200);
106
106
  }
107
107
  }
108
108
  }
@@ -110,25 +110,25 @@
110
110
 
111
111
  // Hvit bakgrunn har egne regler for bakgrunnsfarge, hover og fokus
112
112
  &--white {
113
- background-color: palette.$white;
113
+ background-color: $white;
114
114
 
115
115
  &:hover {
116
- background-color: palette.$neutral100;
116
+ background-color: $neutral100;
117
117
  }
118
118
 
119
119
  &:focus {
120
120
  box-shadow:
121
- 0 0 0 1.5px palette.$neutral600,
122
- inset 0 0 0 1.5px palette.$neutral600;
121
+ 0 0 0 1.5px $neutral600,
122
+ inset 0 0 0 1.5px $neutral600;
123
123
  }
124
124
  &#{$trigger}--expanded {
125
- box-shadow: inset 0 0 0 6px palette.$neutral100;
125
+ box-shadow: inset 0 0 0 6px $neutral100;
126
126
 
127
127
  &:focus {
128
128
  box-shadow:
129
- 0 0 0 1.5px palette.$neutral600,
130
- inset 0 0 0 1.5px palette.$neutral600,
131
- inset 0 0 0 6px palette.$neutral100;
129
+ 0 0 0 1.5px $neutral600,
130
+ inset 0 0 0 1.5px $neutral600,
131
+ inset 0 0 0 6px $neutral100;
132
132
  }
133
133
  }
134
134
  }
@@ -136,7 +136,7 @@
136
136
 
137
137
  &__button-container {
138
138
  &--sticky {
139
- background-color: palette.$white;
139
+ background-color: $white;
140
140
  }
141
141
  }
142
142
 
@@ -163,15 +163,15 @@
163
163
  }
164
164
 
165
165
  &--small {
166
- margin-top: spacers.getSpacer(s);
166
+ margin-top: getSpacer(s);
167
167
  }
168
168
  &--small#{&}--sticky {
169
169
  margin-top: 1.25rem;
170
170
  }
171
171
 
172
172
  &--nested-line {
173
- padding-left: spacers.getSpacer(s);
174
- border-left: solid 3px palette.$neutral200;
173
+ padding-left: getSpacer(s);
174
+ border-left: solid 3px $neutral200;
175
175
 
176
176
  @media (min-width: map.get($grid-breakpoints, md)) {
177
177
  margin-left: calc(38px / 2 - 1px); // Halvparten av chevron-ikonets bredde minus halve bredden på border
@@ -182,10 +182,10 @@
182
182
  }
183
183
 
184
184
  &--large {
185
- padding: spacers.getSpacer(s) spacers.getSpacer(m) spacers.getSpacer(l) spacers.getSpacer(s);
185
+ padding: getSpacer(s) getSpacer(m) getSpacer(l) getSpacer(s);
186
186
 
187
187
  @media (min-width: map.get($grid-breakpoints, md)) {
188
- padding: spacers.getSpacer(m) spacers.getSpacer(l) spacers.getSpacer(xl);
188
+ padding: getSpacer(m) getSpacer(l) getSpacer(xl);
189
189
  }
190
190
  &#{$content}--icon {
191
191
  @media (min-width: map.get($grid-breakpoints, md)) {
@@ -195,31 +195,31 @@
195
195
  }
196
196
 
197
197
  &--neutral {
198
- background-color: palette.$neutral50;
198
+ background-color: $neutral50;
199
199
  }
200
200
 
201
201
  &--blueberry {
202
- background-color: palette.$blueberry50;
202
+ background-color: $blueberry50;
203
203
  }
204
204
 
205
205
  &--cherry {
206
- background-color: palette.$cherry50;
206
+ background-color: $cherry50;
207
207
  }
208
208
 
209
209
  &--kiwi {
210
- background-color: palette.$kiwi50;
210
+ background-color: $kiwi50;
211
211
  }
212
212
 
213
213
  &--banana {
214
- background-color: palette.$banana50;
214
+ background-color: $banana50;
215
215
  }
216
216
 
217
217
  &--plum {
218
- background-color: palette.$plum50;
218
+ background-color: $plum50;
219
219
  }
220
220
 
221
221
  &--white {
222
- background-color: palette.$white;
222
+ background-color: $white;
223
223
  }
224
224
  }
225
225
  }