{{#markdown}} ```scss $include-html-table-classes: $include-html-classes !default; // These control the background color for the table and even rows $table-bg: #fff; $table-even-row-bg: #f9f9f9; // These control the table cell border style $table-border-style: solid; $table-border-size: 1px; $table-border-color: #ddd; // These control the table head styles $table-head-bg: #f5f5f5; $table-head-font-size: rem-calc(14); $table-head-font-color: #222; $table-head-font-weight: bold; $table-head-padding: rem-calc(8 10 10); // These control the row padding and font styles $table-row-padding: rem-calc(9 10); $table-row-font-size: rem-calc(14); $table-row-font-color: #222; $table-line-height: rem-calc(18); // These are for controlling the display and margin of tables $table-display: table-cell; $table-margin-bottom: rem-calc(20); ``` {{/markdown}}