@arche-mc2/arche-controls
Version:
We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get
52 lines • 1.59 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var colorMap_1 = require("./colorMap");
var iconMap_1 = require("./iconMap");
var typography_1 = require("./typography");
var types_1 = require("../utils/types");
var defaultColor = "#979797";
var defaultStyles = new types_1.Dictionary([
{
key: "input",
value: {
$nest: {
"& .up-input": { color: "#000", borderColor: defaultColor },
"& .up-icon-wrapper.colored svg, & .up-icon-wrapper.colored svg path,& .up-icon-wrapper.colored svg polygon, & .up-icon-wrapper.colored svg polyline": {
fill: defaultColor
}
}
}
}
]);
var colorTheme = {
primary: '#2C2274',
secondary: '#EB5A77',
'secondary-l1': '#F5ACBB',
'secondary-l2': '#FDECEF',
'secondary-d1': '#CE5A77',
dark: '#181340',
'dark-1': '#9590B9',
'dark-2': '#CAC8DC',
'dark-3': '#E5E4EE',
light: '#FFFFFF',
'light-1': '#FCFCFD',
'light-2': '#F3F3F7',
alert: '#E40424',
warning: '#ECBF00',
info: '#55BDBE',
flashy: '#BB0080',
};
var defaultTheme = {
colorTheme: colorTheme,
colorMap: colorMap_1.default,
inputBorderLess: true,
gridGutter: 30,
intentTypeIcons: iconMap_1.default,
typography: typography_1.default,
styles: defaultStyles,
borderRadius: "10px",
notificationIconSize: "64px",
minButtonSize: 44
};
exports.default = defaultTheme;
//# sourceMappingURL=defaultTheme.js.map