@latte-macchiat-io/latte-vanilla-components 0.0.257 → 0.0.258
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/package.json
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { style } from '@vanilla-extract/css';
|
1
|
+
import { globalStyle, style } from '@vanilla-extract/css';
|
2
2
|
|
3
3
|
import { themeContract } from '../..';
|
4
4
|
import { queries } from '../../styles/mediaqueries';
|
@@ -31,3 +31,7 @@ export const footerRecipe = style([
|
|
31
31
|
},
|
32
32
|
},
|
33
33
|
]);
|
34
|
+
|
35
|
+
globalStyle(`${footerRecipe} a `, {
|
36
|
+
color: themeContract.footer.linkColor,
|
37
|
+
});
|
@@ -39,6 +39,7 @@ const themeFooterBase = {
|
|
39
39
|
export const themeFooterLight = {
|
40
40
|
footer: {
|
41
41
|
...themeFooterBase.footer,
|
42
|
+
linkColor: '#FF7377',
|
42
43
|
backgroundColor: '#FF7377',
|
43
44
|
},
|
44
45
|
};
|
@@ -46,6 +47,7 @@ export const themeFooterLight = {
|
|
46
47
|
export const themeFooterDark = {
|
47
48
|
footer: {
|
48
49
|
...themeFooterBase.footer,
|
50
|
+
linkColor: '#FF7377',
|
49
51
|
backgroundColor: '#FF7377',
|
50
52
|
},
|
51
53
|
};
|
@@ -189,6 +189,7 @@ export const themeContract = createGlobalThemeContract({
|
|
189
189
|
},
|
190
190
|
footer: {
|
191
191
|
fontSize: 'latte-footer-fontSize',
|
192
|
+
linkColor: 'latte-footer-linkColor',
|
192
193
|
backgroundColor: 'latte-footer-backgroundColor',
|
193
194
|
height: {
|
194
195
|
mobile: 'latte-footer-height-mobile',
|