umwd-components 0.1.166 → 0.1.167

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.
@@ -95,7 +95,7 @@ function PersonaliaSection(_ref) {
95
95
  href: link.url,
96
96
  key: link.id,
97
97
  sx: {
98
- color: theme.palette.primary.light
98
+ color: theme.palette.text.secondary
99
99
  }
100
100
  }, link.text);
101
101
  }), partner.linkedIn && /*#__PURE__*/React.createElement(material.Button, {
@@ -104,7 +104,7 @@ function PersonaliaSection(_ref) {
104
104
  href: partner.linkedIn,
105
105
  target: "_blank",
106
106
  sx: {
107
- color: theme.palette.primary.light
107
+ color: theme.palette.text.secondary
108
108
  }
109
109
  }, "LinkedIn"), partner.email && /*#__PURE__*/React.createElement(material.Tooltip, {
110
110
  title: "".concat(partner.email)
@@ -113,7 +113,7 @@ function PersonaliaSection(_ref) {
113
113
  startIcon: /*#__PURE__*/React.createElement(iconsMaterial.Email, null),
114
114
  href: "mailto:".concat(partner.email),
115
115
  sx: {
116
- color: theme.palette.primary.light
116
+ color: theme.palette.text.secondary
117
117
  }
118
118
  }, "Email")))))));
119
119
  })));
@@ -93,7 +93,7 @@ function PersonaliaSection(_ref) {
93
93
  href: link.url,
94
94
  key: link.id,
95
95
  sx: {
96
- color: theme.palette.primary.light
96
+ color: theme.palette.text.secondary
97
97
  }
98
98
  }, link.text);
99
99
  }), partner.linkedIn && /*#__PURE__*/React__default.createElement(Button, {
@@ -102,7 +102,7 @@ function PersonaliaSection(_ref) {
102
102
  href: partner.linkedIn,
103
103
  target: "_blank",
104
104
  sx: {
105
- color: theme.palette.primary.light
105
+ color: theme.palette.text.secondary
106
106
  }
107
107
  }, "LinkedIn"), partner.email && /*#__PURE__*/React__default.createElement(Tooltip, {
108
108
  title: "".concat(partner.email)
@@ -111,7 +111,7 @@ function PersonaliaSection(_ref) {
111
111
  startIcon: /*#__PURE__*/React__default.createElement(Email, null),
112
112
  href: "mailto:".concat(partner.email),
113
113
  sx: {
114
- color: theme.palette.primary.light
114
+ color: theme.palette.text.secondary
115
115
  }
116
116
  }, "Email")))))));
117
117
  })));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umwd-components",
3
- "version": "0.1.166",
3
+ "version": "0.1.167",
4
4
  "description": "UMWD Component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -125,7 +125,7 @@ export function PersonaliaSection({
125
125
  <MuiLink
126
126
  href={link.url}
127
127
  key={link.id}
128
- sx={{ color: theme.palette.primary.light }}
128
+ sx={{ color: theme.palette.text.secondary }}
129
129
  >
130
130
  {link.text}
131
131
  </MuiLink>
@@ -137,7 +137,7 @@ export function PersonaliaSection({
137
137
  startIcon={<LinkedIn />}
138
138
  href={partner.linkedIn}
139
139
  target="_blank"
140
- sx={{ color: theme.palette.primary.light }}
140
+ sx={{ color: theme.palette.text.secondary }}
141
141
  >
142
142
  LinkedIn
143
143
  </Button>
@@ -148,7 +148,7 @@ export function PersonaliaSection({
148
148
  variant="outlined"
149
149
  startIcon={<Email />}
150
150
  href={`mailto:${partner.email}`}
151
- sx={{ color: theme.palette.primary.light }}
151
+ sx={{ color: theme.palette.text.secondary }}
152
152
  >
153
153
  Email
154
154
  </Button>