@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
48 lines • 2.36 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TABLE_CELL_STYLES = void 0;
const colors_1 = require("../../foundations/colors");
const spacings_1 = require("../../foundations/spacings");
const typography_1 = require("../../foundations/typography");
const variants_1 = require("./variants");
exports.TABLE_CELL_STYLES = {
[variants_1.TableCellVariantType.HEADER_CELL_DEFAULT]: {
container: {
display: 'table-cell',
transition: 'box-shadow 200ms',
padding: `${spacings_1.SPACINGS.spacing_250} ${spacings_1.SPACINGS.spacing_300}`,
background_color: colors_1.COLORS.SECONDARY.color_secondary_bg_150,
font_family: 'Nunito Sans',
color: colors_1.COLORS.NEUTRAL.color_neutral_font_50,
font_weight: typography_1.FONT_WEIGHT.font_weight_600,
line_height: typography_1.PARAGRAPH.MEDIUM.DESKTOP.font_size,
font_size: typography_1.PARAGRAPH.MEDIUM.DESKTOP.font_size,
},
},
[variants_1.TableCellVariantType.HEADER_CELL_SECONDARY]: {
container: {
display: 'table-cell',
transition: 'box-shadow 200ms',
padding: `${spacings_1.SPACINGS.spacing_250} ${spacings_1.SPACINGS.spacing_300}`,
background_color: colors_1.COLORS.NEUTRAL.color_neutral_bg_250,
font_family: 'Nunito Sans',
color: colors_1.COLORS.NEUTRAL.color_neutral_font_50,
font_weight: typography_1.FONT_WEIGHT.font_weight_600,
line_height: typography_1.PARAGRAPH.MEDIUM.DESKTOP.font_size,
font_size: typography_1.PARAGRAPH.MEDIUM.DESKTOP.font_size,
},
},
[variants_1.TableCellVariantType.BODY_CELL_DEFAULT]: {
container: {
display: 'table-cell',
transition: 'box-shadow 200ms',
padding: `${spacings_1.SPACINGS.spacing_250} ${spacings_1.SPACINGS.spacing_300}`,
background_color: colors_1.COLORS.NEUTRAL.color_neutral_bg_250,
color: colors_1.COLORS.NEUTRAL.color_neutral_font_50,
font_weight: typography_1.FONT_WEIGHT.font_weight_300,
line_height: typography_1.PARAGRAPH.MEDIUM.DESKTOP.font_size,
font_size: typography_1.PARAGRAPH.MEDIUM.DESKTOP.font_size,
},
},
};
//# sourceMappingURL=styles.js.map