@xelto.npm/xc2-lib 0.0.12 → 0.0.13
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/dist/cjs/index.js +40 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +40 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -10070,8 +10070,47 @@ process.env.NODE_ENV !== "production" ? Typography.propTypes /* remove-proptypes
|
|
|
10070
10070
|
variantMapping: propTypes.exports /* @typescript-to-proptypes-ignore */.object
|
|
10071
10071
|
} : void 0;
|
|
10072
10072
|
|
|
10073
|
+
const theme = createTheme({
|
|
10074
|
+
mainPallete: {
|
|
10075
|
+
primary: {
|
|
10076
|
+
blue: '#293072',
|
|
10077
|
+
grey: '#5D5D5C',
|
|
10078
|
+
red: '#E42127',
|
|
10079
|
+
white: '#FFFFFF',
|
|
10080
|
+
placeholderText: '#B0BAD8',
|
|
10081
|
+
tooltipBg: '#53598E',
|
|
10082
|
+
},
|
|
10083
|
+
secondary: {
|
|
10084
|
+
inputsValidation: '#FFF5F5',
|
|
10085
|
+
buttonBlack: '#000000',
|
|
10086
|
+
buttonBlue: '#3A44A7',
|
|
10087
|
+
buttonGreen: '#61CC61',
|
|
10088
|
+
},
|
|
10089
|
+
table: {
|
|
10090
|
+
header: '#E7EAF3',
|
|
10091
|
+
border: '#DBE0F2',
|
|
10092
|
+
tableCellDarker: '#F6F8FB',
|
|
10093
|
+
bodyTextColor: '#2A3D96',
|
|
10094
|
+
selected: 'rgba(176,186,216,0.5)',
|
|
10095
|
+
}
|
|
10096
|
+
},
|
|
10097
|
+
fontWeight: {
|
|
10098
|
+
thin: 100,
|
|
10099
|
+
extraLight: 200,
|
|
10100
|
+
light: 300,
|
|
10101
|
+
regular: 400,
|
|
10102
|
+
medium: 500,
|
|
10103
|
+
semiBold: 600,
|
|
10104
|
+
bold: 700,
|
|
10105
|
+
extraBold: 800,
|
|
10106
|
+
black: 900,
|
|
10107
|
+
},
|
|
10108
|
+
fontFamily: [
|
|
10109
|
+
'"Barlow", sans-serif',
|
|
10110
|
+
].join(','),
|
|
10111
|
+
});
|
|
10112
|
+
|
|
10073
10113
|
var StyledTypography = styled(Typography)(function (_a) {
|
|
10074
|
-
var theme = _a.theme;
|
|
10075
10114
|
return ({
|
|
10076
10115
|
fontSize: '26px',
|
|
10077
10116
|
lineHeight: '34px',
|