@@ -57,19 +57,20 @@ $color--black: #000;
5757 --color--heading : #{$color--white } ;
5858 --color--text : #{$color--grey-20 } ;
5959 --color--link : #{$color--white } ;
60- --color--link-underline : #{color .adjust (#{$color--white } , $alpha : -0.5 )} ;
60+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
61+ --color--link-underline : #{color .adjust ($color--white , $alpha : -0.5 )} ;
6162 --color--link-interaction : #{$color--white } ;
6263 --color--button-link-interaction : #{$color--eclipse } ;
6364 --color--streamfield-background : #{$color--mid-grey } ;
6465 --color--decoration : #{$color--grey-50 } ;
65- --color--border : #{color .adjust (#{$color--grey-50 } , $alpha : -0.5 )} ;
66+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
67+ --color--border : #{color .adjust ($color--grey-50 , $alpha : -0.5 )} ;
6668 --color--border--highlight : #{$color--coral } ;
6769 --color--light-border : #{$color--mid-grey } ;
68- --color--overlay : #{color .adjust (#{$color--black } , $alpha : -0.6 )} ;
69- --color--background--overlay : #{color .adjust (
70- #{$color--eclipse } ,
71- $alpha : -1
72- )} ;
70+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
71+ --color--overlay : #{color .adjust ($color--black , $alpha : -0.6 )} ;
72+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
73+ --color--background--overlay : #{color .adjust ($color--eclipse , $alpha : -1 )} ;
7374 --color--background-swirls-one : #{$color--black } ;
7475 --color--background-swirls-two : #{$color--white } ;
7576 // The following base variables do not change with either theme or mode
@@ -95,10 +96,8 @@ $color--black: #000;
9596:root ,
9697.theme-coral.mode-dark {
9798 --color--theme-primary : #{$color--coral } ;
98- --color--theme-primary-muted : #{color .adjust (
99- #{$color--coral } ,
100- $alpha : -0.5
101- )} ;
99+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
100+ --color--theme-primary-muted : #{color .adjust ($color--coral , $alpha : -0.5 )} ;
102101 --color--theme-primary-dark : #{$color--coral-dark } ;
103102 --color--theme-primary-light : #{$color--coral-light } ;
104103 --color--theme-secondary : #{$color--sky } ;
@@ -112,8 +111,9 @@ $color--black: #000;
112111// Nebuline theme, dark mode
113112.theme-nebuline.mode-dark {
114113 --color--theme-primary : #{$color--nebuline } ;
114+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
115115 --color--theme-primary-muted : #{color .adjust (
116- #{ $color--nebuline } ,
116+ $color--nebuline ,
117117 $alpha : -0.5
118118 )} ;
119119 --color--theme-primary-dark : #{$color--nebuline-dark } ;
@@ -129,10 +129,8 @@ $color--black: #000;
129129// Lagoon theme, dark mode
130130.theme-lagoon.mode-dark {
131131 --color--theme-primary : #{$color--lagoon } ;
132- --color--theme-primary-muted : #{color .adjust (
133- #{$color--lagoon } ,
134- $alpha : -0.5
135- )} ;
132+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
133+ --color--theme-primary-muted : #{color .adjust ($color--lagoon , $alpha : -0.5 )} ;
136134 --color--theme-primary-dark : #{$color--lagoon-dark } ;
137135 --color--theme-primary-light : #{$color--lagoon-light } ;
138136 --color--theme-secondary : #{$color--coolmint } ;
@@ -146,10 +144,8 @@ $color--black: #000;
146144// Green theme, dark mode
147145.theme-green.mode-dark {
148146 --color--theme-primary : #{$color--green } ;
149- --color--theme-primary-muted : #{color .adjust (
150- #{$color--green } ,
151- $alpha : -0.5
152- )} ;
147+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
148+ --color--theme-primary-muted : #{color .adjust ($color--green , $alpha : -0.5 )} ;
153149 --color--theme-primary-dark : #{$color--green-dark } ;
154150 --color--theme-primary-light : #{$color--green-light } ;
155151 --color--theme-secondary : #{$color--banana } ;
@@ -169,7 +165,8 @@ $color--black: #000;
169165 --color--decoration : #{$color--eclipse } ;
170166 --color--light-border : #{$color--grey-5 } ;
171167 --color--link : #{$color--eclipse } ;
172- --color--link-underline : #{color .adjust (#{$color--eclipse } , $alpha : -0.5 )} ;
168+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
169+ --color--link-underline : #{color .adjust ($color--eclipse , $alpha : -0.5 )} ;
173170 --color--link-interaction : #{$color--eclipse } ;
174171 --color--button-link-interaction : #{$color--white } ;
175172 --color--streamfield-background : #{$color--grey-5 } ;
@@ -186,10 +183,8 @@ $color--black: #000;
186183.mode-light ,
187184.theme-coral.mode-light {
188185 --color--theme-primary : #{$color--coral } ;
189- --color--theme-primary-muted : #{color .adjust (
190- #{$color--coral } ,
191- $alpha : -0.5
192- )} ;
186+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
187+ --color--theme-primary-muted : #{color .adjust ($color--coral , $alpha : -0.5 )} ;
193188 --color--theme-primary-dark : #{$color--coral-dark } ;
194189 --color--theme-primary-light : #{$color--coral-light } ;
195190 --color--theme-primary-lighter : #{$color--coral-lighter } ;
@@ -203,8 +198,9 @@ $color--black: #000;
203198// Nebuline theme, light mode
204199.theme-nebuline.mode-light {
205200 --color--theme-primary : #{$color--nebuline } ;
201+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
206202 --color--theme-primary-muted : #{color .adjust (
207- #{ $color--nebuline } ,
203+ $color--nebuline ,
208204 $alpha : -0.5
209205 )} ;
210206 --color--theme-primary-dark : #{$color--nebuline-dark } ;
@@ -220,10 +216,8 @@ $color--black: #000;
220216// Lagoon theme, light mode
221217.theme-lagoon.mode-light {
222218 --color--theme-primary : #{$color--lagoon } ;
223- --color--theme-primary-muted : #{color .adjust (
224- #{$color--lagoon } ,
225- $alpha : -0.5
226- )} ;
219+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
220+ --color--theme-primary-muted : #{color .adjust ($color--lagoon , $alpha : -0.5 )} ;
227221 --color--theme-primary-dark : #{$color--lagoon-dark } ;
228222 --color--theme-primary-light : #{$color--lagoon-light } ;
229223 --color--theme-primary-lighter : #{$color--lagoon-lighter } ;
@@ -237,10 +231,8 @@ $color--black: #000;
237231// Green theme, light mode
238232.theme-green.mode-light {
239233 --color--theme-primary : #{$color--green } ;
240- --color--theme-primary-muted : #{color .adjust (
241- #{$color--green } ,
242- $alpha : -0.5
243- )} ;
234+ // stylelint-disable-next-line scss/dollar-variable-no-missing-interpolation
235+ --color--theme-primary-muted : #{color .adjust ($color--green , $alpha : -0.5 )} ;
244236 --color--theme-primary-dark : #{$color--green-dark } ;
245237 --color--theme-primary-light : #{$color--green-light } ;
246238 --color--theme-primary-lighter : #{$color--green-lighter } ;
0 commit comments